{
  "version": "20260904-104707",
  "generated_at": "2026-09-04T10:47:07Z",
  "_schema": "# EventFinder Data API — `https://ef.bulkowski.org/data/v1/`\n\nVersioned, machine-readable JSON view of EventFinder. The same content is\nalso published as a single tarball at `https://ef.bulkowski.org/data/v1/bundle.tar.gz` and as\nan embedded `_schema` block inside `https://ef.bulkowski.org/data/v1/bundle.json`.\n\n## How to consume\n\n**Start with the manifest.** `GET https://ef.bulkowski.org/data/v1/manifest.json` (a few\nKB) — it carries `endpoints` (data files), `discovery` (llms.txt,\nagent-card.json, this README), per-file sizes + sha256, the bundle's\ncontent-hash, and the version. One cheap fetch lets you navigate\neverything without knowing the URL structure in advance. The\n`X-Agent-Data` response header on every endpoint also points here.\n\n**For narrow user queries, prefer the search endpoint** at\n`GET https://ef.bulkowski.org/api/v1/events/search` — it filters by date range, event\ntype, region, neighborhood, venue, or free-text query and returns only\nmatching events. Default range is today + 7 days. Full parameter list,\nA2A skill descriptor, and example URLs are in\n`https://ef.bulkowski.org/.well-known/agent-card.json` `skills[id=\"search_events\"]` and\nin `https://ef.bulkowski.org/llms.txt` §Search.\n\nOtherwise, pick the smallest static file that answers your query:\n\n| You want | Hit |\n|---|---|\n| **Discovery + index of every endpoint** | `GET https://ef.bulkowski.org/data/v1/manifest.json` |\n| **Filtered query (date range, region, type, free text)** | `GET https://ef.bulkowski.org/api/v1/events/search?...` |\n| Tonight's events | `GET https://ef.bulkowski.org/data/v1/cities/{city}/events/today.json` |\n| Next week | `GET https://ef.bulkowski.org/data/v1/cities/{city}/events/next_7.json` |\n| One specific date | `GET https://ef.bulkowski.org/data/v1/cities/{city}/events/YYYY-MM-DD.json` (~5K tokens) |\n| List of available dates | `GET https://ef.bulkowski.org/data/v1/cities/{city}/events/index.json` |\n| Cities + timezones | `GET https://ef.bulkowski.org/data/v1/cities.json` |\n| Cheap freshness probe | `GET https://ef.bulkowski.org/data/v1/version.json` (~100 bytes) |\n| Whole city, all dates | `GET https://ef.bulkowski.org/data/v1/cities/{city}/bundle.json` |\n| All cities, one request — **batch / offline indexing only** | `GET https://ef.bulkowski.org/data/v1/bundle.json` (≈ 6–7 MB raw / ~1 MB gzipped; **overflows most LLM context windows** — see below) |\n\n**Context budget warning.** `bundle.json` ≈ 1.5–2M tokens for SF as of this\nbuild. That overflows Sonnet, Haiku, and most frontier model context\nwindows. For LLM agents handling narrow queries, prefer the per-date or\n`today.json` / `next_7.json` endpoints. The bundle is intended for batch\nconsumers (offline indexing, MCP servers, models with sufficient context).\n\n## Choosing an endpoint\n\nPick the smallest endpoint that answers the query. Sizes are approximate\nand grow over time.\n\n| Query shape | Endpoint | Approx size | Fits in LLM? |\n|---|---|---|---|\n| Single-day (\"events tonight\", \"what's on Saturday\") | `https://ef.bulkowski.org/data/v1/cities/{city}/events/today.json` (auto-resolves to today in the city's timezone) | ~5–50 KB | Yes, any model |\n| Single-day, specific date | `https://ef.bulkowski.org/data/v1/cities/{city}/events/YYYY-MM-DD.json` | ~5–50 KB | Yes, any model |\n| Next week | `https://ef.bulkowski.org/data/v1/cities/{city}/events/next_7.json` | ~50–200 KB | Yes, any model |\n| Full city, all dates | `https://ef.bulkowski.org/data/v1/cities/{city}/bundle.json` | ~500 KB – 2 MB | Yes, Sonnet 4 / 200K+ |\n| All cities | `https://ef.bulkowski.org/bundle.json` | ~7 MB / ~2M tokens | **No — batch indexing only.** Will OVERFLOW Sonnet, Haiku, and most frontier-model contexts. Do NOT load for narrow queries; it WILL truncate. |\n\nCity slugs are listed in `https://ef.bulkowski.org/data/v1/cities.json`.\n\n## Filtering events by neighborhood or region\n\nEvent records contain `venue_id` but **not** `neighborhood` or `region`\ndirectly. To filter events by sub-region within a metro, join to\n`venues.json`:\n\n1. `GET https://ef.bulkowski.org/data/v1/cities/{city}/venues.json` (once per session).\n2. Build a lookup keyed by `venue.id`:\n\n   ```python\n   venues_by_id = { v[\"id\"]: v for v in venues }\n   ```\n\n3. For each event in `events/{date}.json`, **strip the `\"venue_\"`\n   prefix** from `event.venue_id` to get the venue key, then look it up:\n\n   ```python\n   key = event[\"venue_id\"].removeprefix(\"venue_\")\n   venue = venues_by_id[key]            # may KeyError on stale data\n   neighborhood = venue[\"neighborhood\"]   # e.g. \"Oakland\", \"Mission\"\n   ```\n\n4. For **region-level** filtering (e.g. \"all East Bay events\"), there is\n   **no `region` field on venue records.** Instead, fetch\n   `https://ef.bulkowski.org/data/v1/cities/{city}/geo.json` — its `regions` map names\n   regions to lists of neighborhoods:\n\n   ```python\n   geo = ...  # from geo.json\n   nbhd_to_region = {\n       n: r for r, nbhds in geo[\"regions\"].items() for n in nbhds\n   }\n   region = nbhd_to_region.get(neighborhood)\n   ```\n\n   Note that a neighborhood can appear in multiple regions (the mapping\n   is many-to-many in the data; pick whichever matches your query).\n\n### Worked example — \"jazz events in Oakland on 2026-05-10\"\n\n1. `GET https://ef.bulkowski.org/data/v1/cities/{city}/events/2026-05-10.json`\n2. Filter to events where `\"jazz\"` is in `event_types`.\n3. `GET https://ef.bulkowski.org/data/v1/cities/{city}/venues.json` and build\n   `venues_by_id`.\n4. `GET https://ef.bulkowski.org/data/v1/cities/{city}/geo.json`; \"Oakland\" appears as\n   both a region key and a neighborhood — pick the level you mean. For\n   the region: `oakland_nbhds = set(geo[\"regions\"][\"Oakland\"])`.\n5. Keep events whose\n   `venues_by_id[event[\"venue_id\"].removeprefix(\"venue_\")][\"neighborhood\"]`\n   is in `oakland_nbhds`.\n\n### Verified venue fields\n\nThe fields on each `venues.json` entry as of this build:\n\n- `id` — stable identifier (matches `event.venue_id` minus the `\"venue_\"` prefix)\n- `name` — display name; may include `\"|\"`-separated aliases\n- `address` — street address (best-effort)\n- `neighborhood` — single neighborhood name (e.g. `\"Mission\"`, `\"Berkeley\"`)\n- `url` — venue website\n- `event_type_hints` — list of typical event types at this venue\n- `default_start_time` — `\"HH:MM\"` if known\n\nThere is intentionally **no `region` field**; region is computed via\n`geo.json` as shown above.\n\n## Cache validation\n\nThree primitives, ordered cheapest → most thorough:\n\n1. **`GET https://ef.bulkowski.org/data/v1/version.json`** returns\n   `{version, generated_at, sha256}`. The `sha256` here matches the\n   master `bundle.json` sha256 and matches its HTTP `ETag`.\n2. **HTTP `ETag` + `If-None-Match`** on `bundle.json` and per-file responses\n   returns `304 Not Modified` if your cached copy is current.\n3. **`https://ef.bulkowski.org/data/v1/manifest.json`** lists every file with its individual\n   sha256 for selective revalidation.\n\n## Timezone semantics\n\nAll datetime fields (`event_date`, `event_start`, `event_time`) are **naive\nISO strings in the city's local timezone**. They carry no `Z` suffix and no\noffset. The city's timezone lives in `city_config.json`\n(e.g. `\"America/Los_Angeles\"` for `san_francisco_metro`); read it before\ninterpreting any timestamp. This is intentional — events happen at a\nwall-clock time in a physical city, and round-tripping through UTC\nintroduces DST and offset bugs.\n\nIf you want \"today's events\" without doing the timezone math yourself, use\n`https://ef.bulkowski.org/data/v1/cities/{city}/events/today.json`. The server resolves the\ncity's local date at request time and returns the right file.\n\n## Event field reference\n\n| Field | Type | Description |\n|---|---|---|\n| `event_id` | string | Stable unique identifier |\n| `venue_id` | string | Links to a venue in `venues.json` |\n| `title` | string | Event title |\n| `event_date` | string | `YYYY-MM-DD` in city-local timezone |\n| `event_start` | string | `YYYY-MM-DDTHH:MM:SS` in city-local timezone (no offset) |\n| `event_time` | string | Mirror of `event_start` (legacy field; prefer `event_start`) |\n| `venue_name` | string | Display name |\n| `venue_address` | string | Street address (best-effort) |\n| `event_types` | list[str] | Type IDs from `event_types.json` |\n| `description` | string | Free text (best-effort) |\n| `price_info` | string | Free text |\n| `url` | string | Original listing URL |\n| `tags` | list[str] | Free-form tags |\n| `certainty` | string | `confirmed` / `likely` / `uncertain` |\n| `sources` | list | Provenance — which scraped source reported this event |\n\n## Sample event record\n\nPicked deterministically (first event of the latest date file) so this\nstays current with the data:\n\n```json\n{\n  \"event_id\": \"evt_0882e4c95cd6\",\n  \"venue_id\": \"venue_stern_grove\",\n  \"title\": \"Bomba Estéreo\",\n  \"event_time\": \"Sunday, June 21\",\n  \"venue_name\": \"Stern Grove\",\n  \"event_start\": \"2027-06-21\",\n  \"event_date\": \"2027-06-21\",\n  \"venue_address\": \"2750 19th Ave, San Francisco, CA 94132\",\n  \"description\": \"With La Misa Negra & KEXP DJ Albina Cabrera\",\n  \"event_types\": [\n    \"live_music\",\n    \"latin_world\",\n    \"dj_party\"\n  ],\n  \"price_info\": \"SOLD OUT | Lottery Closed\",\n  \"url\": \"https://www.sterngrove.org/bombaestereo\",\n  \"tags\": [],\n  \"sources\": [\n    {\n      \"source_id\": \"v_stern_grove\",\n      \"source_name\": \"Stern Grove\",\n      \"fetched_at\": \"2026-07-26T10:57:30.540754Z\",\n      \"strategy_used\": \"DIRECT\"\n    }\n  ],\n  \"match_key\": \"venue_stern_grove|2027-06-21\",\n  \"run_id\": \"\",\n  \"run_label\": \"\",\n  \"showtime_index\": 0,\n  \"certainty\": \"confirmed\",\n  \"venue_match\": \"\"\n}\n```\n\n## Discovery\n\nThe site advertises this API in several conventional ways:\n\n- `https://ef.bulkowski.org/.well-known/agent-card.json` — A2A protocol agent card\n- `https://ef.bulkowski.org/.well-known/ai-agent.json` — alias for back-compat\n- `https://ef.bulkowski.org/llms.txt` — LLM-targeted citation index\n- `https://ef.bulkowski.org/robots.txt` with `Sitemap:` and explicit `Allow: /data/`\n- `link rel=\"alternate\" type=\"application/json\" href=\"https://ef.bulkowski.org/data/v1/manifest.json\"` in HTML pages (plus alternates for `/bundle.json`, `/.well-known/agent-card.json`, `/llms.txt`)\n- `X-Agent-Data: https://ef.bulkowski.org/data/v1/manifest.json` response header on every response (small entry-point document, not the bundle)\n",
  "event_types": {
    "_comment": "Canonical event type ontology. LLMs should classify every event with at least one event type.",
    "event_types": [
      {
        "id": "live_music",
        "label": "Live Music",
        "live": true,
        "description": "Live music performances: concerts, gigs, blues, rock, jazz, indie, folk, electronic, a cappella, singer-songwriter, classical, orchestral, etc. Use in combination with music types (jazz, classical, indian_classical) when applicable. Do NOT use for DJ-only events — use dj_party instead."
      },
      {
        "id": "jazz",
        "label": "Jazz",
        "live": true,
        "description": "Jazz performances, jazz jams, jazz combos, big band, bebop, dixieland, straight ahead, fusion, and jazz-focused events."
      },
      {
        "id": "electronic",
        "label": "Electronic",
        "live": true,
        "description": "Live electronic music performances featuring an artist performing or presenting their own work (synths, drum machines, live coding, vocals over production). Do NOT use for DJ-only events where a DJ mixes other artists' tracks — use dj_party instead."
      },
      {
        "id": "classical",
        "label": "Classical",
        "live": true,
        "description": "Western classical music: orchestral, chamber music, recitals, choral, and opera concerts focused on the classical tradition."
      },
      {
        "id": "folk",
        "label": "Folk",
        "live": true,
        "description": "Folk live music: bluegrass, americana, old-time, traditional, celtic, singer-songwriter, indie folk, folk rock, balkan. Live performers only, not DJs playing folk tracks."
      },
      {
        "id": "rock",
        "label": "Rock",
        "live": true,
        "description": "Rock live music: alternative, metal, doom, punk, art rock, math rock, classic rock, progressive, ProgRock. Live bands/performers only, not DJs playing rock tracks."
      },
      {
        "id": "hiphop_rap",
        "label": "Hip-Hop / Rap",
        "live": true,
        "description": "Live hip-hop performances, rap, trap, boom bap, beat-centric vocal performances, and turntablism showcases. Live performers only, not DJs playing hip-hop tracks."
      },
      {
        "id": "rnb_soul_funk",
        "label": "R&B / Soul / Funk",
        "live": true,
        "description": "Live R&B, neo-soul, funk bands, gospel, afro-soul, and groove-based live vocal performances. Live performers only, not DJs playing R&B/soul/funk tracks."
      },
      {
        "id": "latin_world",
        "label": "Latin / Global Roots",
        "live": true,
        "description": "Live Latin bands, salsa, cumbia, mariachi, afrobeat, reggae, bossa nova, and global traditional ensembles. Live performers only, not DJs playing Latin/world tracks."
      },
      {
        "id": "experimental",
        "label": "Experimental",
        "live": true,
        "description": "Experimental live music: contemporary classical, new music, looping, buchla, noise, electroacoustic."
      },
      {
        "id": "indian_classical",
        "label": "Indian Classical",
        "live": true,
        "description": "Indian classical music and dance: Hindustani, Carnatic, raga performances, tabla, sitar, bharatanatyam, kathak, and related traditions."
      },
      {
        "id": "comedy",
        "label": "Comedy",
        "live": true,
        "description": "Stand-up comedy, improv, sketch, comedy showcases, and open mics focused on comedy."
      },
      {
        "id": "theater",
        "label": "Theater",
        "live": true,
        "description": "Stage plays, musicals, opera, solo theatrical performances, staged readings, and dramatic productions."
      },
      {
        "id": "dance",
        "label": "Dance",
        "live": true,
        "description": "Dance performances, ballet, contemporary dance, dance festivals, and choreographed shows."
      },
      {
        "id": "dj_party",
        "label": "DJ Party",
        "live": false,
        "description": "A social dance event where a DJ selects and mixes pre-recorded tracks (often themed by era, genre, or vibe). Includes DJ nights, DJ raves, themed dance parties, and club nights. A DJ playing pre-recorded tracks of a genre does NOT make it a live performance of that genre — do not add genre tags (rock, electronic, hiphop_rap, etc.) just because of the DJ's playlist. If the event also features a live artist or band, the appropriate genre tag and live_music may co-occur with dj_party."
      },
      {
        "id": "film",
        "label": "Film & Screening",
        "live": false,
        "description": "Movie screenings, film festivals, documentary viewings, and listening parties with visual components."
      },
      {
        "id": "livestream",
        "label": "Livestream",
        "live": false,
        "description": "Performances broadcast online / watched from home rather than attended in person: livestreams, 'at home' streams, virtual concerts, webcasts. Use this (not a genre like jazz/live_music) when the event is streamed/online — even if it is a music performance — because it isn't an attendable in-person event."
      },
      {
        "id": "art",
        "label": "Art & Exhibition",
        "live": false,
        "description": "Gallery openings, art exhibitions, installations, visual art shows, and art fairs."
      },
      {
        "id": "sports",
        "label": "Sports & Games",
        "live": false,
        "description": "Sporting events, tournaments, chess, trivia nights, and competitive games."
      },
      {
        "id": "workshop",
        "label": "Workshop & Class",
        "live": false,
        "description": "Hands-on workshops, classes, lectures, educational events, and skill-building sessions."
      },
      {
        "id": "festival",
        "label": "Festival & Multi-Act",
        "live": false,
        "description": "Multi-act festivals, fairs, block parties, parades, and large-scale events spanning multiple performances or activities."
      },
      {
        "id": "community",
        "label": "Community & Social",
        "live": false,
        "description": "Community gatherings, social events, meetups, religious/spiritual events, health and wellness events, fundraisers, and general social activities."
      },
      {
        "id": "literary",
        "label": "Literary & Spoken Word",
        "live": false,
        "description": "Readings, book events, poetry slams, storytelling shows, and spoken word performances."
      },
      {
        "id": "other",
        "label": "Other",
        "live": false,
        "description": "An event where no type applies. May not be used in combination with other tags. An error state to be avoided."
      }
    ]
  },
  "cities": {
    "san_francisco_metro": {
      "city_config": {
        "city_name": "San Francisco Metro",
        "timezone": "America/Los_Angeles",
        "default_language": "en",
        "short_alias": "sf",
        "search_aliases": [
          "SF",
          "San Francisco",
          "SF Metro",
          "Bay Area",
          "SF Bay Area",
          "SFO"
        ],
        "export_future_horizon_days": 180,
        "export_festival_horizon_days": 365
      },
      "venues": [
        {
          "id": "toms_place",
          "name": "Tom's Place",
          "address": "3133 Deakin St, Berkeley",
          "neighborhood": "Berkeley",
          "url": "http://4-33.com/toms-place/index.html",
          "event_type_hints": [
            "live_music",
            "experimental"
          ],
          "default_start_time": "20:00"
        },
        {
          "id": "audium",
          "name": "Audium",
          "address": "1616 Bush St, San Francisco, CA 94109",
          "neighborhood": "Japantown",
          "url": "https://www.audium.org/",
          "event_type_hints": [
            "live_music",
            "experimental"
          ],
          "default_start_time": ""
        },
        {
          "id": "envelop_sf",
          "name": "Envelop SF",
          "address": "2439 3rd St, San Francisco, CA 94107",
          "neighborhood": "Dogpatch",
          "url": "https://envelop.us/",
          "event_type_hints": [
            "film"
          ],
          "default_start_time": ""
        },
        {
          "id": "bird_and_beckett",
          "name": "Bird & Beckett",
          "address": "653 Chenery St, San Francisco, CA 94131",
          "neighborhood": "Glen Park",
          "url": "https://birdbeckett.com/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_royal_cuckoo",
          "name": "The Royal Cuckoo|Royal Cuckoo Organ Lounge",
          "address": "3202 Mission St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://www.instagram.com/theroyalcuckooorganlounge/",
          "event_type_hints": [
            "live_music",
            "rnb_soul_funk"
          ],
          "default_start_time": ""
        },
        {
          "id": "guild_theatre",
          "name": "Guild Theatre|Guild|The Guild",
          "address": "949 El Camino Real, Menlo Park, CA 94025",
          "neighborhood": "Menlo Park",
          "url": "https://www.guildtheatre.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "dalas_nest",
          "name": "Dala's Nest",
          "address": "Menlo Park, CA",
          "neighborhood": "Menlo Park",
          "url": "https://www.dalasnesthouseconcerts.com/",
          "event_type_hints": [
            "live_music",
            "folk"
          ],
          "default_start_time": ""
        },
        {
          "id": "wyldflowr_arts",
          "name": "Wyldflowr Arts",
          "address": "809 37th St, Oakland, CA 94609",
          "neighborhood": "Oakland",
          "url": "https://wyldflowrarts.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "medicine_for_nightmares",
          "name": "Medicine for Nightmares",
          "address": "3036 24th St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://medicinefornightmares.com/",
          "event_type_hints": [
            "literary",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "shapeshifters",
          "name": "Shapeshifters|Shapeshifters Theater",
          "address": "1007 W Grand Ave, Oakland, CA 94607",
          "neighborhood": "Oakland",
          "url": "https://shapeshifterscinema.com/",
          "event_type_hints": [
            "film",
            "experimental"
          ],
          "default_start_time": ""
        },
        {
          "id": "sfjazz_miner",
          "name": "SFJAZZ Auditorium|Miner Auditorium|SFJAZZ",
          "address": "201 Franklin St, San Francisco, CA 94102",
          "neighborhood": "Hayes Valley",
          "url": "https://www.sfjazz.org/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "sfjazz_lab",
          "name": "SFJAZZ Lab|Joe Henderson Lab|Henderson Lab",
          "address": "201 Franklin St, San Francisco, CA 94102",
          "neighborhood": "Hayes Valley",
          "url": "https://www.sfjazz.org/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "# sfjazz_at_home",
          "name": "SFJAZZ At Home|SFJAZZ Livestream|SFJAZZ Home",
          "address": "201 Franklin St, San Francisco, CA 94102",
          "neighborhood": "Hayes Valley",
          "url": "https://www.sfjazz.org/",
          "event_type_hints": [
            "livestream",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_freight__salvage",
          "name": "The Freight & Salvage|Freight And Salvage|Freight",
          "address": "2020 Addison Street, Berkeley, CA 94704",
          "neighborhood": "Berkeley",
          "url": "https://thefreight.org/",
          "event_type_hints": [
            "live_music",
            "folk",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "gray_area",
          "name": "Gray Area",
          "address": "2665 Mission St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://grayarea.org/",
          "event_type_hints": [
            "live_music",
            "experimental"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_lab",
          "name": "The Lab",
          "address": "2948 16th St, San Francisco, CA 94103",
          "neighborhood": "Mission",
          "url": "https://www.thelab.org/",
          "event_type_hints": [
            "live_music",
            "experimental"
          ],
          "default_start_time": ""
        },
        {
          "id": "temescal_arts_center",
          "name": "Temescal Arts Center",
          "address": "511 48th St, Oakland, CA 94609",
          "neighborhood": "Temescal",
          "url": "https://www.temescalartscenter.org/",
          "event_type_hints": [
            "live_music",
            "experimental",
            "workshop"
          ],
          "default_start_time": ""
        },
        {
          "id": "musicians_union_hall",
          "name": "Musicians Union Hall",
          "address": "116 9th St, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://afm6.org/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "dresher_ensemble_studio",
          "name": "Dresher Ensemble Studio|West Oakland Sound Series",
          "address": "2201 Poplar St, Oakland, CA 94607",
          "neighborhood": "Oakland",
          "url": "https://www.dresherensemble.org/",
          "event_type_hints": [
            "live_music",
            "experimental"
          ],
          "default_start_time": ""
        },
        {
          "id": "# building_34",
          "name": "Building 34",
          "address": "1095 Nimitz Ave, Vallejo, CA",
          "neighborhood": "Vallejo",
          "url": "https://artvallejo.org/locations/building-34-mare-island-south-of-1080-nimitz-mare-island/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "hertz_hall",
          "name": "Hertz Hall",
          "address": "UC Berkeley Campus, Berkeley, CA 94720",
          "neighborhood": "Berkeley",
          "url": "https://music.berkeley.edu/concerts-events/",
          "event_type_hints": [
            "live_music",
            "classical"
          ],
          "default_start_time": ""
        },
        {
          "id": "livermore_shiva_vishnu_temple",
          "name": "Livermore Temple",
          "address": "1232 Arrowhead Ave, Livermore, CA 94551",
          "neighborhood": "Livermore",
          "url": "https://www.livermoretemple.org/",
          "event_type_hints": [
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "make_out_room",
          "name": "Make Out Room|The Make Out Room|Make-Out Room",
          "address": "3225 22nd St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "http://www.makeoutroom.com/",
          "event_type_hints": [
            "dj_party",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "madrone_art_bar",
          "name": "Madrone Art Bar",
          "address": "500 Divisadero Street, San Francisco, CA 94117",
          "neighborhood": "Divisadero",
          "url": "https://madroneartbar.com/",
          "event_type_hints": [
            "dj_party"
          ],
          "default_start_time": ""
        },
        {
          "id": "littlefield_concert_hall",
          "name": "Littlefield Hall",
          "address": "5000 MacArthur Blvd, Oakland, CA 94613",
          "neighborhood": "Oakland",
          "url": "https://performingarts.mills.edu/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "ccrma",
          "name": "CCRMA|CCRMA The Knoll",
          "address": "660 Lomita Dr, Stanford, CA 94305",
          "neighborhood": "Stanford",
          "url": "https://ccrma.stanford.edu/concerts",
          "event_type_hints": [
            "live_music",
            "experimental"
          ],
          "default_start_time": ""
        },
        {
          "id": "bing_concert_hall",
          "name": "Bing Hall",
          "address": "327 Lasuen St, Stanford, CA 94305",
          "neighborhood": "Stanford",
          "url": "https://events.stanford.edu/bing_concert_hall",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "frost_amphitheater",
          "name": "Frost Amphitheater",
          "address": "351 Lasuen St, Stanford, CA 94305",
          "neighborhood": "Stanford",
          "url": "https://live.stanford.edu/venues/frost-amphitheater",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "center_for_new_music",
          "name": "Center for New Music",
          "address": "55 Taylor St, San Francisco, CA 94102",
          "neighborhood": "Tenderloin",
          "url": "https://centerfornewmusic.com/",
          "event_type_hints": [
            "experimental",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "joe_goode_annex",
          "name": "Joe Goode Annex",
          "address": "401 Alabama Street, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://joegoode.org/",
          "event_type_hints": [
            "workshop",
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "piedmont_piano_company",
          "name": "Piedmont Piano Co",
          "address": "1728 San Pablo Ave, Oakland, CA 94612",
          "neighborhood": "Oakland",
          "url": "https://piedmontpiano.com/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_sound_room",
          "name": "The Sound Room",
          "address": "2147 Broadway, Oakland, CA 94612",
          "neighborhood": "Oakland",
          "url": "https://www.soundroom.org/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": "19:30"
        },
        {
          "id": "the_back_room",
          "name": "Back Room|The Back Room",
          "address": "1984 Bonita Ave,Berkeley,CA 94704",
          "neighborhood": "Berkeley",
          "url": "https://backroommusic.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "california_jazz_conservatory",
          "name": "CA Jazz Conservatory|JazzSchool|Jazz School|The Jazzschool",
          "address": "2087 Addison St, Berkeley, CA 94704",
          "neighborhood": "Berkeley",
          "url": "https://cjc.edu/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": "19:30"
        },
        {
          "id": "great_american_music_hall",
          "name": "Great American|Great American Music Hall|GAMH",
          "address": "859 O'Farrell St, San Francisco, CA 94109",
          "neighborhood": "Tenderloin",
          "url": "https://gamh.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_chapel",
          "name": "The Chapel",
          "address": "777 Valencia St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://www.thechapelsf.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_independent",
          "name": "The Independent",
          "address": "628 Divisadero St, San Francisco, CA 94117",
          "neighborhood": "Divisadero",
          "url": "https://theindependentsf.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "berkeley_rep",
          "name": "Berkeley Rep",
          "address": "2025 Addison St, Berkeley, CA 94704",
          "neighborhood": "Berkeley",
          "url": "https://www.berkeleyrep.org/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "act_theater",
          "name": "ACT Theater|A.C.T.|Strand Theater|American Conservatory Theater ",
          "address": "415 Geary St, San Francisco, CA 94102",
          "neighborhood": "Union Square",
          "url": "",
          "event_type_hints": [],
          "default_start_time": "theater"
        },
        {
          "id": "act_rembe",
          "name": "ACT REMBE|Toni Rembe Theater|Rembi American Conservatory Theater ",
          "address": "415 Geary St, San Francisco, CA 94102",
          "neighborhood": "Union Square",
          "url": "",
          "event_type_hints": [],
          "default_start_time": "theater"
        },
        {
          "id": "magic_theatre",
          "name": "Magic Theatre",
          "address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
          "neighborhood": "Fort Mason",
          "url": "https://magictheatre.org/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "noe_valley_ministry",
          "name": "Noe Valley Ministry",
          "address": "1021 Sanchez St, San Francisco, CA 94114",
          "neighborhood": "Noe Valley",
          "url": "https://www.noevalleymusicseries.com/",
          "event_type_hints": [
            "live_music",
            "classical"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_uc_theatre",
          "name": "UC Theatre",
          "address": "2036 University Ave, Berkeley, CA 94704",
          "neighborhood": "Berkeley",
          "url": "https://theuctheatre.org/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "oakland_secret",
          "name": "Oakland Secret",
          "address": "577 5th St, Oakland, CA 94607",
          "neighborhood": "Oakland",
          "url": "https://www.oaklandsecret.com/",
          "event_type_hints": [
            "live_music",
            "dj_party",
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_bistro",
          "name": "The Bistro",
          "address": "1001 B St, Hayward, CA 94541",
          "neighborhood": "Hayward",
          "url": "https://www.the-bistro.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_cats",
          "name": "The Cats",
          "address": "17533 Santa Cruz Hwy, Los Gatos, CA 95033",
          "neighborhood": "Los Gatos",
          "url": "https://www.thecatslosgatos.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_pear_theatre",
          "name": "The Pear Theatre",
          "address": "1110 La Avenida St, Mountain View, CA 94043",
          "neighborhood": "Mountain View",
          "url": "https://www.thepear.org/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "smoking_pig_bbq_sj",
          "name": "Smoking Pig|Smoking Pig BBQ San Jose",
          "address": "3340 N 1st St, San Jose, CA 95134",
          "neighborhood": "San Jose",
          "url": "https://smokingpigbbq.net/",
          "event_type_hints": [
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "mountain_winery",
          "name": "Mountain Winery",
          "address": "14831 Pierce Rd, Saratoga, CA 95070",
          "neighborhood": "Saratoga",
          "url": "https://www.mountainwinery.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "paramount_theatre",
          "name": "Paramount Theatre",
          "address": "2025 Broadway, Oakland, CA 94612",
          "neighborhood": "Oakland",
          "url": "https://www.paramountoakland.org/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_marsh_sf",
          "name": "The Marsh SF|The Marsh|Marsh San Francisco|The Marsh San Francisco|The Marsh San Francisco Mainstage|The Marsh San Francisco Cabaret",
          "address": "1062 Valencia St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://themarsh.org/our-venues/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": "yes"
        },
        {
          "id": "the_marsh_berk",
          "name": "The Marsh Berk|The Marsh Berkeley|The Marsh Theater Berkeley|The Marsh Berkeley Mainstage|The Marsh Berkeley Cabaret|Berkeley Mainstage",
          "address": "2120 Allston Way, Berkeley, CA 94704",
          "neighborhood": "Berkeley",
          "url": "https://themarsh.org/our-venues/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": "yes"
        },
        {
          "id": "black_cat",
          "name": "Black Cat",
          "address": "400 Eddy St, San Francisco, CA 94109",
          "neighborhood": "Tenderloin",
          "url": "https://blackcatsf.com/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "yoshis",
          "name": "Yoshi's",
          "address": "510 Embarcadero West, Oakland, CA 94607",
          "neighborhood": "Oakland",
          "url": "https://www.yoshis.com/",
          "event_type_hints": [
            "live_music",
            "jazz",
            "rnb_soul_funk"
          ],
          "default_start_time": "19:30"
        },
        {
          "id": "mr_tipples",
          "name": "Mr. Tipples",
          "address": "39 Fell St, San Francisco, CA 94102",
          "neighborhood": "Civic Center",
          "url": "https://mrtipplessf.com/",
          "event_type_hints": [
            "jazz",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "dawn_club",
          "name": "Dawn Club",
          "address": "572 Market St, San Francisco, CA 94104",
          "neighborhood": "Financial District",
          "url": "https://www.dawnclub.com/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "keys_jazz_bistro",
          "name": "Keys Jazz Bistro",
          "address": "2243 Powell St, San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://keysjazzbistro.com/upcoming-shows",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "biscuits__blues",
          "name": "Biscuits & Blues|Biscuits and Blues",
          "address": "401 Mason St, San Francisco, CA 94102",
          "neighborhood": "Union Square",
          "url": "https://biscuitsandblues.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "meyhouse",
          "name": "Meyhouse Palo Alto|Meyhouse Speakeasy|Meyhouse",
          "address": "640 Emerson St, Palo Alto, CA 94301",
          "neighborhood": "Palo Alto",
          "url": "https://www.meyhousejazz.com/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "stookeys_blue_room",
          "name": "Stookey's Blue Room",
          "address": "1523 Sutter St, San Francisco, CA 94109",
          "neighborhood": "Nob Hill",
          "url": "https://stookeysclubmoderne.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "sf_conservatory",
          "name": "SF Conservatory of Music|SFCM|San Francisco Conservatory of Music",
          "address": "50 Oak St, San Francisco, CA 94102",
          "neighborhood": "Civic Center",
          "url": "https://sfcm.edu/performance-calendar",
          "event_type_hints": [
            "classical"
          ],
          "default_start_time": ""
        },
        {
          "id": "old_first_concerts",
          "name": "Old First Concerts",
          "address": "1751 Sacramento St, San Francisco, CA 94109",
          "neighborhood": "Polk Gulch",
          "url": "https://www.oldfirstconcerts.org/",
          "event_type_hints": [
            "classical"
          ],
          "default_start_time": ""
        },
        {
          "id": "# mechanics_institute",
          "name": "Mechanics' Institute",
          "address": "57 Post St, San Francisco, CA 94104",
          "neighborhood": "Financial District",
          "url": "https://www.milibrary.org/events",
          "event_type_hints": [
            "sports"
          ],
          "default_start_time": ""
        },
        {
          "id": "berkeley_piano_club",
          "name": "Berkeley Piano|Berkeley Piano Club",
          "address": "2724 Haste St, Berkeley, CA 94704",
          "neighborhood": "Berkeley",
          "url": "https://berkeleypianoclub.org/",
          "event_type_hints": [
            "classical",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "hillside_club",
          "name": "Hillside Club",
          "address": "2286 Cedar St, Berkeley, CA 94709",
          "neighborhood": "Berkeley",
          "url": "https://hillsideclub.org/",
          "event_type_hints": [
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "alhambra_public_house",
          "name": "Alhambra PH|Alhambra Public House",
          "address": "831 Main Street, Redwood City, CA 94063",
          "neighborhood": "Redwood City",
          "url": "http://alhambra-irish-house.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "freewheel_brewing",
          "name": "Freewheel Brewing",
          "address": "3736 Florence Street, Redwood City, CA 94063",
          "neighborhood": "Redwood City",
          "url": "https://www.freewheelbrewing.com/redwood-city-1",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "cru_wine_bar",
          "name": "CRU Wine Bar",
          "address": "900 Middlefield Rd, Redwood City, CA 94063",
          "neighborhood": "Redwood City",
          "url": "https://cru-wine-bar-shop.wheree.com/",
          "event_type_hints": [
            "jazz",
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "odc_theater",
          "name": "ODC Theater",
          "address": "3153 17th St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://odc.dance/",
          "event_type_hints": [
            "dance"
          ],
          "default_start_time": ""
        },
        {
          "id": "z_space",
          "name": "Z Space",
          "address": "450 Florida St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://www.zspace.org/",
          "event_type_hints": [
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "bottom_of_the_hill",
          "name": "Bottom of the Hill",
          "address": "1233 17th St, San Francisco, CA 94107",
          "neighborhood": "Potrero Hill",
          "url": "http://www.bottomofthehill.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "rickshaw_stop",
          "name": "Rickshaw Stop",
          "address": "155 Fell St, San Francisco, CA 94102",
          "neighborhood": "Hayes Valley",
          "url": "https://rickshawstop.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "ivy_room",
          "name": "Ivy Room",
          "address": "860 San Pablo Ave, Albany, CA 94706",
          "neighborhood": "Albany",
          "url": "https://www.ivyroom.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "hotel_utah_saloon",
          "name": "Hotel Utah|Hotel Utah Saloon|The Hotel Utah Saloon",
          "address": "500 4th St, San Francisco, CA 94107",
          "neighborhood": "SOMA",
          "url": "https://hotelutah.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_starry_plough",
          "name": "The Starry Plough",
          "address": "3101 Shattuck Ave, Berkeley, CA 94705",
          "neighborhood": "Berkeley",
          "url": "https://thestarryplough.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "city_lights_theater",
          "name": "City Lights Theater",
          "address": "529 S. Second Street, San Jose, CA 95112",
          "neighborhood": "San Jose",
          "url": "https://cltc.org/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "san_jose_stage",
          "name": "San Jose Stage",
          "address": "490 S 1st St, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://www.thestage.org/",
          "event_type_hints": [
            "theater",
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "wisteria_ways",
          "name": "Wisteria Ways",
          "address": "383 61st St, Oakland, CA 94618",
          "neighborhood": "Oakland",
          "url": "http://www.wisteriaways.org/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "924_gilman",
          "name": "924 Gilman",
          "address": "924 Gilman St, Berkeley, CA 94710",
          "neighborhood": "Berkeley",
          "url": "https://www.924gilman.org/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "san_jose_civic",
          "name": "San Jose Civic|San Jose Civic Center",
          "address": "135 W San Carlos St, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://sanjosetheaters.org/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "center_for_the_performing_arts",
          "name": "San Jose CPA|Center for the Performing Arts",
          "address": "255 S Almaden Blvd, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://sanjosetheaters.org/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "montgomery_theater",
          "name": "Montgomery Theater",
          "address": "271 S Market St, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://sanjosetheaters.org/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "historic_bal_theatre",
          "name": "Historic BAL Theatre",
          "address": "14808 E 14th St, San Leandro, CA 94578",
          "neighborhood": "San Leandro",
          "url": "https://www.baltheatre.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "# aurora_theatre",
          "name": "Aurora Theatre",
          "address": "2081 Addison St, Berkeley, CA 94704",
          "neighborhood": "Berkeley",
          "url": "https://www.auroratheatre.org/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "poor_house_bistro",
          "name": "Poor House Bistro",
          "address": "91 S Autumn St, San Jose, CA 95110",
          "neighborhood": "San Jose",
          "url": "https://poorhousebistro.com/events/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "shoreline_amphitheatre",
          "name": "Shoreline Amphitheatre|Shoreline Amphitheater|Shoreline",
          "address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
          "neighborhood": "Mountain View",
          "url": "https://www.shorelineamphitheatre.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "regency_ballroom",
          "name": "Regency Ballroom",
          "address": "1300 Van Ness Ave, San Francisco, CA 94109",
          "neighborhood": "Polk Gulch",
          "url": "https://www.theregencyballroom.com/",
          "event_type_hints": [
            "live_music",
            "rock",
            "rnb_soul_funk"
          ],
          "default_start_time": ""
        },
        {
          "id": "davies_symphony_hall",
          "name": "Davies Symphony Hall|San Francisco Symphony",
          "address": "201 Van Ness Ave, San Francisco, CA 94102",
          "neighborhood": "Civic Center",
          "url": "https://www.sfsymphony.org/",
          "event_type_hints": [
            "live_music",
            "classical"
          ],
          "default_start_time": ""
        },
        {
          "id": "war_memorial_opera_house",
          "name": "War Memorial Opera House|Opera House",
          "address": "301 Van Ness Ave, San Francisco, CA 94102",
          "neighborhood": "Civic Center",
          "url": "https://www.sfopera.com/",
          "event_type_hints": [
            "classical",
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "california_theatre",
          "name": "California Theatre",
          "address": "345 S 1st St, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://sanjosetheaters.org/",
          "event_type_hints": [
            "theater",
            "classical"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_lucky_horseshoe",
          "name": "The Lucky Horseshoe",
          "address": "453 Cortland Ave, San Francisco, CA 94110",
          "neighborhood": "Bernal Heights",
          "url": "https://www.theluckyhorseshoebar.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "little_hill_lounge",
          "name": "Little Hill Lounge",
          "address": "10753 San Pablo Ave, El Cerrito, CA 94530",
          "neighborhood": "El Cerrito",
          "url": "https://littlehillelcerrito.com/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "peacock_lounge",
          "name": "Peacock Lounge",
          "address": "552 Haight St, San Francisco, CA 94117",
          "neighborhood": "Haight",
          "url": "https://sfpeacock.org/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "cafe_borrone",
          "name": "Cafe Borrone",
          "address": "1010 El Camino Real, Menlo Park, CA 94025",
          "neighborhood": "Menlo Park",
          "url": "https://www.cafeborrone.com/events",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "vino_locale",
          "name": "Vino Locale",
          "address": "431 Kipling St, Palo Alto, CA 94301",
          "neighborhood": "Palo Alto",
          "url": "https://www.vinolocale.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "cornerstone",
          "name": "Cornerstone",
          "address": "2367 Shattuck Ave, Berkeley, CA 94704",
          "neighborhood": "Berkeley",
          "url": "https://www.tixr.com/groups/cornerstoneberkeley",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "club_fox",
          "name": "Club Fox",
          "address": "2209 Broadway, Redwood City, CA 94063",
          "neighborhood": "Redwood City",
          "url": "https://clubfoxrwc.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "fox_theater_rwc",
          "name": "Fox Theater Redwood City",
          "address": "2209 Broadway, Redwood City, CA 94063",
          "neighborhood": "Redwood City",
          "url": "https://www.foxrwc.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "fox_theatre_oak",
          "name": "Fox Theatre OAK|The Fox|Fox Theater",
          "address": "1807 Telegraph Avenue, Oakland, CA 94612",
          "neighborhood": "Oakland",
          "url": "https://thefoxoakland.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "new_conservatory_nctc",
          "name": "New Conservatory (NCTC)",
          "address": "25 Van Ness Ave, San Francisco, CA 94102",
          "neighborhood": "Civic Center",
          "url": "https://nctcsf.org/",
          "event_type_hints": [
            "theater",
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "brava_theater",
          "name": "Brava Theater",
          "address": "2781 24th St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://www.brava.org/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "mojo_lounge",
          "name": "Mojo Lounge",
          "address": "3714 Peralta Blvd, Fremont, CA 94536",
          "neighborhood": "Fremont",
          "url": "https://www.instagram.com/themojolounge.fremont/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "thee_stork_club",
          "name": "Thee Stork Club",
          "address": "2330 Telegraph Ave, Oakland, CA 94612",
          "neighborhood": "Oakland",
          "url": "https://theestorkclub.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "elis_mile_high",
          "name": "Eli's Mile High",
          "address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
          "neighborhood": "Oakland",
          "url": "https://www.elismilehighclub.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "stay_gold_deli",
          "name": "Stay Gold Deli",
          "address": "2635 San Pablo Ave, Oakland, CA 94612",
          "neighborhood": "Oakland",
          "url": "https://www.instagram.com/staygoldoakland/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_ritz",
          "name": "The Ritz",
          "address": "400 S 1st St, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://theritzsanjose.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_warfield",
          "name": "The Warfield",
          "address": "982 Market St, San Francisco, CA 94102",
          "neighborhood": "Mid-Market",
          "url": "https://www.thewarfieldtheatre.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "greek_theatre",
          "name": "Greek Theatre|Greek|The Greek",
          "address": "2001 Gayley Rd, Berkeley, CA 94720",
          "neighborhood": "Berkeley",
          "url": "https://thegreekberkeley.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "bill_graham_civic",
          "name": "Bill Graham Civic|Bill Graham Civic Auditorium",
          "address": "99 Grove St, San Francisco, CA 94102",
          "neighborhood": "Civic Center",
          "url": "https://billgrahamcivic.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "quarter_note",
          "name": "Quarter Note",
          "address": "1214 Apollo Way, Sunnyvale, CA 94085",
          "neighborhood": "Sunnyvale",
          "url": "https://quarternote.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "public_works",
          "name": "Public Works",
          "address": "161 Erie St, San Francisco, CA 94103",
          "neighborhood": "Mission",
          "url": "https://publicsf.com/",
          "event_type_hints": [
            "live_music",
            "electronic"
          ],
          "default_start_time": ""
        },
        {
          "id": "1015_folsom",
          "name": "1015 Folsom",
          "address": "1015 Folsom St, San Francisco, CA",
          "neighborhood": "SOMA",
          "url": "https://1015.com/",
          "event_type_hints": [
            "dj_party",
            "electronic"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_midway",
          "name": "The Midway",
          "address": "900 Marin St, San Francisco, CA 94124",
          "neighborhood": "Dogpatch",
          "url": "https://themidwaysf.com/",
          "event_type_hints": [
            "live_music",
            "electronic"
          ],
          "default_start_time": ""
        },
        {
          "id": "boom_boom_room",
          "name": "Boom Boom Room",
          "address": "1601 Fillmore St, San Francisco, CA 94115",
          "neighborhood": "Fillmore",
          "url": "https://boomboomroom.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": "21:00"
        },
        {
          "id": "chase_center",
          "name": "Chase Center|Warriors Stadium",
          "address": "1 Warriors Way, San Francisco, CA 94158",
          "neighborhood": "Mission Bay",
          "url": "https://chasecenter.com/",
          "event_type_hints": [
            "sports"
          ],
          "default_start_time": ""
        },
        {
          "id": "oracle_park",
          "name": "Oracle Park|Giants Ballpark",
          "address": "24 Willie Mays Plaza, San Francisco, CA 94107",
          "neighborhood": "SOMA",
          "url": "https://www.mlb.com/giants",
          "event_type_hints": [
            "sports"
          ],
          "default_start_time": ""
        },
        {
          "id": "cheaper_than_therapy",
          "name": "Cheaper Than Therapy",
          "address": "533 Sutter St, San Francisco, CA 94102",
          "neighborhood": "Union Square",
          "url": "https://www.cttcomedy.com/",
          "event_type_hints": [
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_setup",
          "name": "The Setup",
          "address": "222 Hyde St, San Francisco, CA 94102",
          "neighborhood": "Tenderloin",
          "url": "https://www.setupcomedy.com/",
          "event_type_hints": [
            "comedy",
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "punch_line",
          "name": "Punch Line",
          "address": "444 Battery St, San Francisco, CA 94111",
          "neighborhood": "Financial District",
          "url": "https://www.punchlinecomedyclub.com/",
          "event_type_hints": [
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "cobbs_comedy_club",
          "name": "Cobb's Comedy Club",
          "address": "915 Columbus Ave, San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://www.cobbscomedy.com/",
          "event_type_hints": [
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "rooster_t_feathers",
          "name": "Rooster T. Feathers",
          "address": "157 W El Camino Real, Sunnyvale, CA 94087",
          "neighborhood": "Sunnyvale",
          "url": "https://roostertfeathers.com/",
          "event_type_hints": [
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "san_jose_improv",
          "name": "San Jose Improv",
          "address": "62 S 2nd St, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://sanjose.improv.com/",
          "event_type_hints": [
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "tommy_ts",
          "name": "Tommy T's",
          "address": "5104 Hopyard Rd, Pleasanton, CA 94588",
          "neighborhood": "Pleasanton",
          "url": "https://www.tommyts.com/",
          "event_type_hints": [
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "farallon_club",
          "name": "Farallon Club",
          "address": "21859 Mission Blvd, Hayward, CA 94541",
          "neighborhood": "Hayward",
          "url": "https://farallonpresenta.com/",
          "event_type_hints": [
            "latin_world"
          ],
          "default_start_time": ""
        },
        {
          "id": "# dark_horse_lounge",
          "name": "Dark Horse Lounge",
          "address": "24018 Hesperian Blvd, Hayward, CA 94545",
          "neighborhood": "Hayward",
          "url": "https://www.darkhorselounge.net/",
          "event_type_hints": [
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "caravan_lounge",
          "name": "Caravan Lounge",
          "address": "98 S Almaden Ave, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://caravanloungesanjose.com/",
          "event_type_hints": [
            "workshop"
          ],
          "default_start_time": ""
        },
        {
          "id": "masonic_hall",
          "name": "Masonic Hall|The Masonic",
          "address": "1111 California St, San Francisco, CA 94108",
          "neighborhood": "Nob Hill",
          "url": "https://sfmasonic.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "august_hall",
          "name": "August Hall",
          "address": "420 Mason St, San Francisco, CA 94102",
          "neighborhood": "Union Square",
          "url": "https://www.augusthallsf.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "good_karma",
          "name": "Good Karma",
          "address": "37 S 1st St, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://www.goodkarmasj.com/",
          "event_type_hints": [
            "live_music",
            "jazz",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_box_shop",
          "name": "The Box Shop",
          "address": "951 Hudson Ave, San Francisco, CA 94124",
          "neighborhood": "Bayview",
          "url": "https://boxshopsf.org/",
          "event_type_hints": [
            "community",
            "art"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_fillmore",
          "name": "The Fillmore|Filmore",
          "address": "1805 Geary Blvd, San Francisco, CA 94115",
          "neighborhood": "Fillmore",
          "url": "https://www.thefillmore.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": "20:00"
        },
        {
          "id": "the_elbo_room",
          "name": "The Elbo Room",
          "address": "311 Broadway, Oakland, CA 94607",
          "neighborhood": "Oakland",
          "url": "https://www.elboroomjacklondon.com/",
          "event_type_hints": [
            "live_music",
            "rock",
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "dna_lounge",
          "name": "DNA Lounge",
          "address": "375 Eleventh Street, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://www.dnalounge.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "bimbos_365",
          "name": "Bimbos 365",
          "address": "1025 Columbus Ave, San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://bimbos365club.com/",
          "event_type_hints": [
            "live_music",
            "rock",
            "folk"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_saloon",
          "name": "The Saloon",
          "address": "1232 Grant Ave, San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://thesaloonsf.com/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "halcyon",
          "name": "Halcyon",
          "address": "314 11th St, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://halcyon-sf.com/main/",
          "event_type_hints": [
            "live_music",
            "electronic",
            "dj_party"
          ],
          "default_start_time": ""
        },
        {
          "id": "audio",
          "name": "Audio|Audio SF",
          "address": "316 11th St, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://audiosf.com/",
          "event_type_hints": [
            "live_music",
            "electronic",
            "dj_party"
          ],
          "default_start_time": ""
        },
        {
          "id": "ashkenaz",
          "name": "Ashkenaz",
          "address": "1317 San Pablo Ave, Berkeley, CA 94702",
          "neighborhood": "Berkeley",
          "url": "https://www.ashkenaz.com/full-calendar",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "cry_baby",
          "name": "Cry Baby|Crybaby",
          "address": "1928 Telegraph Ave, Oakland, CA 94612",
          "neighborhood": "Oakland",
          "url": "https://crybaby.live/events/",
          "event_type_hints": [
            "dj_party"
          ],
          "default_start_time": ""
        },
        {
          "id": "cafe_du_nord",
          "name": "Cafe Du Nord",
          "address": "2174 Market St, San Francisco, CA 94114",
          "neighborhood": "Castro",
          "url": "https://cafedunord.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "swedish_american",
          "name": "Swedish American Hall|Swedish",
          "address": "2174 Market St, San Francisco, CA 94114",
          "neighborhood": "Castro",
          "url": "https://cafedunord.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "# thee_parkside",
          "name": "Thee Parkside",
          "address": "1600 17th St, San Francisco, CA 94107",
          "neighborhood": "Potrero Hill",
          "url": "https://www.theeparkside.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_knockout",
          "name": "The Knockout",
          "address": "3223 Mission St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://theknockoutsf.com/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "the_lost_church",
          "name": "The Lost Church",
          "address": "988 Columbus Ave, San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://thelostchurch.org/",
          "event_type_hints": [
            "live_music",
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "sap_center",
          "name": "SAP Center|Shark Tank",
          "address": "525 W Santa Clara St, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://www.sapcenter.com/events",
          "event_type_hints": [
            "sports"
          ],
          "default_start_time": ""
        },
        {
          "id": "levis_stadium",
          "name": "Levis Stadium|Levi's Stadium|49ers Stadium",
          "address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
          "neighborhood": "Santa Clara",
          "url": "https://levisstadium.com/events/category/tickets/",
          "event_type_hints": [
            "sports",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_fireside",
          "name": "The Fireside",
          "address": "1453 Webster St, Alameda, CA 94501",
          "neighborhood": "Alameda",
          "url": "https://www.thefiresidelounge.com/live-music",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_mighty",
          "name": "The Great Northern|The Mighty|Great Northern|Mighty",
          "address": "119 Utah St, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://www.thegreatnorthernsf.com/",
          "event_type_hints": [
            "dj_party",
            "electronic"
          ],
          "default_start_time": ""
        },
        {
          "id": "rhythmix",
          "name": "Rhythmix",
          "address": "2513 Blanding Ave, Alameda, CA 94501",
          "neighborhood": "Alameda",
          "url": "https://www.rhythmix.org/events/",
          "event_type_hints": [
            "workshop",
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "white_horse",
          "name": "White Horse Inn",
          "address": "6551 Telegraph Ave, Oakland, CA 94609",
          "neighborhood": "Oakland",
          "url": "https://www.instagram.com/whitehorsebar/",
          "event_type_hints": [
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "rite_spot_cafe",
          "name": "Rite Spot Cafe",
          "address": "2099 Folsom St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://www.ritespotcafe.net/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "winters",
          "name": "Winters",
          "address": "1522 Francisco Blvd, Pacifica, CA 94044",
          "neighborhood": "Pacifica",
          "url": "https://winterstavern.com/live-music-calendar/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "sailing_goat",
          "name": "Sailing Goat",
          "address": "1900 Stenmark Dr, Richmond, CA 94801",
          "neighborhood": "Richmond",
          "url": "https://www.sailinggoatrestaurant.com/events",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "hotel_mac",
          "name": "Hotel Mac",
          "address": "10 Cottage Ave, Richmond, CA 94801",
          "neighborhood": "Richmond",
          "url": "https://www.festivalopera.org/at-the-mac",
          "event_type_hints": [
            "live_music",
            "classical",
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "sfmoma",
          "name": "SFMoma|SF Museum of Modern Art|San Francisco Museum of Modern Art",
          "address": "151 Third St, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://www.sfmoma.org/events/",
          "event_type_hints": [
            "art"
          ],
          "default_start_time": ""
        },
        {
          "id": "omca",
          "name": "OMCA",
          "address": "1000 Oak St, Oakland, CA 94607",
          "neighborhood": "Oakland",
          "url": "https://museumca.org/events/",
          "event_type_hints": [
            "community",
            "workshop"
          ],
          "default_start_time": ""
        },
        {
          "id": "cal_academy_of_science",
          "name": "Cal Academy of Science",
          "address": "55 Music Concourse Dr, San Francisco, CA 94118",
          "neighborhood": "Golden Gate Park",
          "url": "https://www.calacademy.org/nightlife",
          "event_type_hints": [
            "community",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "pacific_film_archive",
          "name": "Pacific Film Archive",
          "address": "2155 Center St, Berkeley, CA 94720",
          "neighborhood": "Berkeley",
          "url": "https://bampfa.org/visit/calendar",
          "event_type_hints": [
            "film"
          ],
          "default_start_time": ""
        },
        {
          "id": "roxy",
          "name": "Roxy|Roxy Theater|The Roxy",
          "address": "3117 16th St, San Francisco, CA 94103",
          "neighborhood": "Mission",
          "url": "https://roxie.com/now-playing/",
          "event_type_hints": [
            "film"
          ],
          "default_start_time": ""
        },
        {
          "id": "4_star_theater",
          "name": "4 Star Theater",
          "address": "2200 Clement St, San Francisco, CA 94121",
          "neighborhood": "Outer Richmond",
          "url": "https://www.4-star-movies.com/",
          "event_type_hints": [
            "film",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "castro_theater",
          "name": "Castro Theater|Castro",
          "address": "429 Castro St, San Francisco, CA 94114",
          "neighborhood": "Castro",
          "url": "https://thecastro.com/listing/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "exploratorium",
          "name": "Exploratorium",
          "address": "Pier 15, San Francisco, CA 94111",
          "neighborhood": "Embarcadero",
          "url": "https://www.exploratorium.edu/visit/calendar",
          "event_type_hints": [
            "community",
            "workshop"
          ],
          "default_start_time": ""
        },
        {
          "id": "de_young",
          "name": "De Young",
          "address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
          "neighborhood": "Golden Gate Park",
          "url": "https://www.famsf.org/calendar",
          "event_type_hints": [
            "community",
            "workshop"
          ],
          "default_start_time": ""
        },
        {
          "id": "yerba_buena_center",
          "name": "Yerba Buena Center|Blue Shield of California Theater at YBCA|YBCA|Yerba Buena Gardens",
          "address": "701 Mission Street, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://ybca.org/calendar/",
          "event_type_hints": [
            "dance"
          ],
          "default_start_time": ""
        },
        {
          "id": "verdi_club",
          "name": "Verdi Club",
          "address": "2424 Mariposa St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://www.verdiclub.net/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "la_pena",
          "name": "La Pena",
          "address": "3105 Shattuck Ave, Berkeley, CA 94705",
          "neighborhood": "Berkeley",
          "url": "https://lapena.org/calendar/category/lapena-events/list/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "el_rio",
          "name": "El Rio",
          "address": "3158 Mission St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://www.elriosf.com/calendar",
          "event_type_hints": [
            "community",
            "dj_party"
          ],
          "default_start_time": ""
        },
        {
          "id": "f8",
          "name": "F8|F8 1192 Folsom",
          "address": "1192 Folsom St, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://www.feightsf.com/",
          "event_type_hints": [
            "electronic",
            "dj_party"
          ],
          "default_start_time": ""
        },
        {
          "id": "oasis",
          "name": "Oasis",
          "address": "298 11th St, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://www.sfoasis.com/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "first_church_berkeley",
          "name": "First Cong Ch Berkeley|First Congregational Church Berkeley",
          "address": "2345 Channing Way, Berkeley, CA 94704",
          "neighborhood": "Berkeley",
          "url": "https://www.firstchurchberkeley.org/resonance/",
          "event_type_hints": [
            "live_music",
            "classical"
          ],
          "default_start_time": ""
        },
        {
          "id": "grace_cathedral_organ",
          "name": "Grace Cathedral Organ",
          "address": "1100 California St, San Francisco, CA 94108",
          "neighborhood": "Nob Hill",
          "url": "https://gracecathedral.org/series/organ-recital-series/",
          "event_type_hints": [
            "live_music",
            "classical"
          ],
          "default_start_time": ""
        },
        {
          "id": "st_josephs_arts_society",
          "name": "St Josephs Arts Society",
          "address": "1401 Howard St, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://saintjosephsartssociety.com/saint-josephs-arts-society",
          "event_type_hints": [
            "community",
            "art",
            "literary"
          ],
          "default_start_time": ""
        },
        {
          "id": "great_star_theater",
          "name": "Great Star Theater",
          "address": "636 Jackson Street, San Francisco, CA 94133",
          "neighborhood": "Chinatown",
          "url": "https://www.greatstartheater.org/whats-playing",
          "event_type_hints": [
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "amoeba_music_sf",
          "name": "Amoeba Music SF|Amoeba San Francisco",
          "address": "1855 Haight St, San Francisco, CA 94117",
          "neighborhood": "Haight",
          "url": "https://www.amoeba.com/live-shows/upcoming",
          "event_type_hints": [
            "community",
            "film"
          ],
          "default_start_time": ""
        },
        {
          "id": "local_edition",
          "name": "Local Edition",
          "address": "691 Market St, San Francisco, CA 94105",
          "neighborhood": "Financial District",
          "url": "https://www.localeditionsf.com/#events",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_monarch",
          "name": "The Monarch",
          "address": "101 6th St, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://www.monarchsf.com/",
          "event_type_hints": [
            "dj_party",
            "electronic"
          ],
          "default_start_time": ""
        },
        {
          "id": "brick_and_mortar",
          "name": "Brick and Mortar",
          "address": "1710 Mission St, San Francisco, CA 94103",
          "neighborhood": "Mission",
          "url": "https://www.brickandmortarmusic.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "bazaar_cafe",
          "name": "Bazaar Cafe",
          "address": "5927 California St, San Francisco, CA 94121",
          "neighborhood": "Outer Richmond",
          "url": "https://bazaarcafe.com/calendar/",
          "event_type_hints": [
            "live_music",
            "community",
            "workshop"
          ],
          "default_start_time": ""
        },
        {
          "id": "geoffreys_inner_circle",
          "name": "Geoffreys Inner Circle",
          "address": "410 14th St, Oakland, CA 94612",
          "neighborhood": "Oakland",
          "url": "https://geoffreyslive.com/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "underground_sf",
          "name": "Underground SF",
          "address": "424 Haight St, San Francisco, CA 94117",
          "neighborhood": "Lower Haight",
          "url": "https://undergroundsf.com/events/",
          "event_type_hints": [
            "dj_party",
            "electronic"
          ],
          "default_start_time": ""
        },
        {
          "id": "roccapulco",
          "name": "Roccapulco",
          "address": "3140 Mission St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "http://www.roccapulco.com/events-calendar.html",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "hi_lo_club",
          "name": "Hi-Lo Club|Hi Lo Club|HiLo Club",
          "address": "1423 Polk St, San Francisco, CA 94109",
          "neighborhood": "Polk Gulch",
          "url": "https://www.hilosf.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "bix",
          "name": "Bix",
          "address": "56 Gold St, San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://bixrestaurant.com/music/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "ocean_ale_house",
          "name": "Ocean Ale House",
          "address": "1314 Ocean Ave, San Francisco, CA 94112",
          "neighborhood": "Ingleside",
          "url": "https://oceanalehouse.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "rwc_music_on_the_square",
          "name": "Music On The Square|Redwood City Music on the Square",
          "address": "2200 Broadway, Redwood City, CA 94063",
          "neighborhood": "Redwood City",
          "url": "https://www.redwoodcity.org/residents/redwood-city-events/music/music-on-the-square",
          "event_type_hints": [
            "live_music",
            "community",
            "art"
          ],
          "default_start_time": ""
        },
        {
          "id": "sjz_break_room",
          "name": "SJZ Break Room",
          "address": "38 S 1st St, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://sanjosejazz.org/breakroom",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "valley_center",
          "name": "Valley Center for Performing Arts|Valley Center for the Performing Arts|ValleyCenter for Performing Arts",
          "address": "3500 Mountain Blvd, Oakland, CA 94602",
          "neighborhood": "Oakland",
          "url": "",
          "event_type_hints": [
            "classical"
          ],
          "default_start_time": ""
        },
        {
          "id": "mvcpa",
          "name": "MV Center for the Performing Arts|Mountain View Center for the Performing Arts",
          "address": "500 Castro St, Mountain View, CA 94041",
          "neighborhood": "Mountain View",
          "url": "https://www.mvcpa.com/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "cafe_zoe_pizza_guy",
          "name": "Cafe Zoe|Cafe Zoë|Cafe Zoe & Neighborhood Pizza Guy",
          "address": "1929 Menalto Ave, Menlo Park, CA 94025",
          "neighborhood": "Menlo Park",
          "url": "https://www.instagram.com/neighborhoodpizzaguy/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "herbst_theater",
          "name": "Herbst Theatre|Herbst|Veterans Building|War Memorial - Veterans Building",
          "address": "401 Van Ness Ave, San Francisco, CA 94102",
          "neighborhood": "Civic Center",
          "url": "",
          "event_type_hints": [
            "classical",
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "presidio_theater",
          "name": "Presidio Theatre",
          "address": "99 Moraga Ave, San Francisco, CA 94129",
          "neighborhood": "Presidio",
          "url": "https://www.presidiotheatre.org/shows",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": "19:30"
        },
        {
          "id": "zellerbach",
          "name": "Cal Performances|Zellerbach Hall",
          "address": "101 Zellerbach Hall, Berkeley, CA 94720",
          "neighborhood": "Berkeley",
          "url": "https://calperformances.org/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "piedmont_center",
          "name": "Piedmont CFTA|Piedmont Center for the Arts",
          "address": "801 Magnolia Ave, Piedmont, CA 94611",
          "neighborhood": "Piedmont",
          "url": "https://www.piedmontcenterforthearts.org/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "canada_theater",
          "name": "Cañada College Theater|Canada Theater",
          "address": "4200 Farm Hill Blvd, Redwood City, CA 94061",
          "neighborhood": "Redwood City",
          "url": "https://redwoodsymphony.org/",
          "event_type_hints": [
            "live_music",
            "classical"
          ],
          "default_start_time": ""
        },
        {
          "id": "ggp_music_concourse",
          "name": "Golden Gate Bandshell|GGP Sprekles Music Concourse|Music Concourse|Sprekles|Band Shell",
          "address": "San Francisco, CA 94118",
          "neighborhood": "Golden Gate Park",
          "url": "https://sfrecpark.org/1570/Golden-Gate-Bandshell-Concerts",
          "event_type_hints": [
            "live_music",
            "dj_party"
          ],
          "default_start_time": ""
        },
        {
          "id": "orpheum_theater",
          "name": "Orpheum Theatre",
          "address": "1192 Market St, San Francisco, CA 94102",
          "neighborhood": "Mid-Market",
          "url": "https://broadwaysf.com/Online/default.asp",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "curran_theater",
          "name": "Curran Theatre|Curran",
          "address": "445 Geary St, San Francisco, CA 94102",
          "neighborhood": "Union Square",
          "url": "https://us.atgtickets.com/venues/curran-theater/whats-on/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "golden_gate_theater",
          "name": "Golden Gate Theatre",
          "address": "1 Taylor St, San Francisco, CA 94102",
          "neighborhood": "Tenderloin",
          "url": "https://us.atgtickets.com/venues/golden-gate-theatre/whats-on/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "down_home_music",
          "name": "Down Home Music",
          "address": "10341 San Pablo Ave, El Cerrito, CA 94530",
          "neighborhood": "El Cerrito",
          "url": "https://www.downhomemusic.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "kilowatt",
          "name": "Kilowatt",
          "address": "3160 16th St, San Francisco, CA 94103",
          "neighborhood": "Mission",
          "url": "https://kilowattbar.com/events",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "jax_vinyards",
          "name": "JAX Vineyards",
          "address": "326 Brannan St, San Francisco, CA 94107",
          "neighborhood": "SOMA",
          "url": "https://jaxvineyards.com/events/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "bach_dds",
          "name": "Bach Dancing|Bach Dancing & Dynamite Society",
          "address": "311 Mirada Road, Half Moon Bay, CA 94019",
          "neighborhood": "Half Moon Bay",
          "url": "https://www.bachddsoc.org/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": "16:30"
        },
        {
          "id": "cubberley",
          "name": "Cubberly Theater|Cubberley Theatre|Cubberley Theater",
          "address": "4000 Middlefield Rd, Palo Alto, CA 94303",
          "neighborhood": "Palo Alto",
          "url": "https://www.paloalto.gov/Departments/Community-Services/Facility-Rentals/Cubberley-Theatre",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "first_lutheran_pa",
          "name": "First Lutheran PA|First Lutheran Church Palo Alto",
          "address": "600 Homer Ave, Palo Alto, CA 94301",
          "neighborhood": "Palo Alto",
          "url": "https://www.flcpa.org/",
          "event_type_hints": [
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "ashby_stage",
          "name": "Ashby Stage|Shotgun|Shotgun Players",
          "address": "1901 Ashby Ave, Berkeley, CA 94703",
          "neighborhood": "Berkeley",
          "url": "https://shotgunplayers.org/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": "19:00|Sun=17:00"
        },
        {
          "id": "shotgun_studios",
          "name": "Shotgun Studios",
          "address": "1201 University Ave, Berkeley, CA 94702",
          "neighborhood": "Berkeley",
          "url": "https://shotgunplayers.org/purpose-history/the-shotgun-studios/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "david_brower_center",
          "name": "David Brower Center",
          "address": "2150 Allston Way, Berkeley, CA 94704",
          "neighborhood": "Berkeley",
          "url": "https://www.browercenter.org/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "belle_cora",
          "name": "Belle Cora",
          "address": "565 Green St, San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://thebellecora.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "blush",
          "name": "Blush! Wine Bar|Blush Wine Bar|Blush",
          "address": "476 Castro St, San Francisco, CA 94114",
          "neighborhood": "Castro",
          "url": "https://blushwinebar.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "scopo_divino",
          "name": "Scopo Divino",
          "address": "2800 California St, San Francisco, CA 94115",
          "neighborhood": "Pacific Heights",
          "url": "https://www.scopodivino.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "hammer_theater",
          "name": "Hammer Theatre",
          "address": "101 Paseo De San Antonio , San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://hammertheatre.com/events-list/",
          "event_type_hints": [
            "live_music",
            "ballet",
            "classical"
          ],
          "default_start_time": ""
        },
        {
          "id": "opera_atrium_theater",
          "name": "Opera Atrium|Taube Atrium|ADLER SCHWABACHER RECITAL",
          "address": "401 Van Ness Ave, San Francisco, CA 94102",
          "neighborhood": "Civic Center",
          "url": "",
          "event_type_hints": [
            "live_music",
            "classical"
          ],
          "default_start_time": ""
        },
        {
          "id": "cat_club",
          "name": "Cat Club",
          "address": "1190 Folsom St, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://www.sfcatclub.com/calendar",
          "event_type_hints": [
            "dj_party"
          ],
          "default_start_time": ""
        },
        {
          "id": "lucie_stern_pa",
          "name": "Lucie Stern CC|Lucie Stern Theatre|Lucie Stern",
          "address": "1305 Middlefield Road, Palo Alto, CA 94301",
          "neighborhood": "Palo Alto",
          "url": "",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "lytton_plaza",
          "name": "Lytton Plaza|Lytton",
          "address": "200 University Ave, Palo Alto, CA 94301",
          "neighborhood": "Palo Alto",
          "url": "https://www.paloalto.gov/Departments/Community-Services/Parks-Open-Space-Golf-Division/Neighborhood-Parks/Lytton-Plaza",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "mitchell_park_center",
          "name": "Mitchell Park|Mitchell Park Center",
          "address": "3700 Middlefield Rd, Palo Alto, CA 94303",
          "neighborhood": "Palo Alto",
          "url": "",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "club_fugazi",
          "name": "Club Fugazi",
          "address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://www.clubfugazisf.com/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "counterpulse",
          "name": "CounterPulse",
          "address": "80 Turk St, San Francisco, CA 94102",
          "neighborhood": "Tenderloin",
          "url": "https://counterpulse.org/",
          "event_type_hints": [
            "dance",
            "experimental"
          ],
          "default_start_time": ""
        },
        {
          "id": "dance_mission",
          "name": "Dance Mission Theater",
          "address": "3316 24th St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://www.dancemissiontheater.org/",
          "event_type_hints": [
            "dance",
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "sf_playhouse",
          "name": "San Francisco Playhouse",
          "address": "450 Post St, San Francisco, CA 94102",
          "neighborhood": "Union Square",
          "url": "https://www.sfplayhouse.org/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "neck_of_the_woods",
          "name": "Neck of the Woods",
          "address": "406 Clement St, San Francisco, CA 94118",
          "neighborhood": "Inner Richmond",
          "url": "https://neckofthewoodssf.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_riptide",
          "name": "The Riptide",
          "address": "3639 Taraval St, San Francisco, CA 94116",
          "neighborhood": "Outer Sunset",
          "url": "https://riptidesf.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "shelton_theater",
          "name": "Shelton Theater",
          "address": "533 Sutter St, San Francisco, CA 94102",
          "neighborhood": "Union Square",
          "url": "https://sheltontheater.org/",
          "event_type_hints": [
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "cowell_theater",
          "name": "Cowell Theater",
          "address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
          "neighborhood": "Fort Mason",
          "url": "https://fortmason.org/our-venues/cowell-theater/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "bayfront_theater",
          "name": "BATS Bayfront Theater",
          "address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
          "neighborhood": "Fort Mason",
          "url": "https://www.improv.org/",
          "event_type_hints": [
            "theater",
            "comedy"
          ],
          "default_start_time": ""
        },
        {
          "id": "sydney_goldstein",
          "name": "Sydney Goldstein Theater",
          "address": "275 Hayes St, San Francisco, CA 94102",
          "neighborhood": "Hayes Valley",
          "url": "https://sfciviccenter.org/places/the-sydney-goldstein-theater/",
          "event_type_hints": [
            "literary",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "palace_of_fine_arts",
          "name": "Palace of Fine Arts",
          "address": "3601 Lyon St, San Francisco, CA 94123",
          "neighborhood": "Marina",
          "url": "https://palaceoffinearts.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "cow_palace",
          "name": "Cow Palace",
          "address": "2600 Geneva Ave, Daly City, CA 94014",
          "neighborhood": "Daly City",
          "url": "https://www.cowpalace.com/",
          "event_type_hints": [
            "live_music",
            "sports"
          ],
          "default_start_time": ""
        },
        {
          "id": "mabuhay_gardens",
          "name": "The Mab|Mabuhay|Mabuhay Gardens",
          "address": "443 Broadway, San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://themab.org/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_monkey_house",
          "name": "The Monkey House",
          "address": "1638 University Avenue, Berkeley, CA",
          "neighborhood": "Berkeley",
          "url": "https://www.themonkeyhouse.org/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "spruce_stree_concerts",
          "name": "Spruce Street Concerts",
          "address": "Berkeley, CA",
          "neighborhood": "Berkeley",
          "url": "https://www.bayimproviser.com/venue/220/spruce-street-concerts",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "hosfelt_gallery",
          "name": "Hosfelt Gallery",
          "address": "260 Utah Street, San Francisco, CA",
          "neighborhood": "Mission",
          "url": "https://hosfeltgallery.com/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "rootstock_arts",
          "name": "Rootstock Arts",
          "address": "5741 Telegraph Ave, Oakland, CA",
          "neighborhood": "Temescal",
          "url": "https://rootstockarts.com/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "maybeck_studio",
          "name": "Maybeck Studio",
          "address": "1537 Euclid Ave, Berkeley, CA",
          "neighborhood": "Berkeley",
          "url": "https://www.maybeckstudio.org/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "palo_alto_art_center",
          "name": "Palo Alto Art Center",
          "address": "1313 Newell Road, Palo Alto, CA 94303",
          "neighborhood": "Palo Alto",
          "url": "https://www.paloalto.gov/Departments/Community-Services/Arts-Sciences/Palo-Alto-Art-Center",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "artists_television_access",
          "name": "ATA|Artists Television Access|Artists' Television Access|Television Access",
          "address": "992 Valencia St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://www.atasite.org/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "blue_heron_boathouse",
          "name": "Blue Heron Boathouse",
          "address": "50 Blue Heron Lake Drive, San Francisco, CA 94118",
          "neighborhood": "Golden Gate Park",
          "url": "https://blueheronboathouse.com/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "soundbox",
          "name": "SoundBox",
          "address": "201 Van Ness Ave, San Francisco, CA 94102",
          "neighborhood": "Civic Center",
          "url": "https://www.sfsymphony.org/Discover-the-Music/SoundBox",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "irish_cultural_center",
          "name": "Irish Cultural Center|United Irish Cultural Center",
          "address": "2700 45th Ave, San Francisco, CA 94116",
          "neighborhood": "Outer Sunset",
          "url": "https://irishcentersf.org/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "canessa_gallery",
          "name": "Canessa Gallery|Canessa",
          "address": "708 Montgomery St, San Francisco, CA 94111",
          "neighborhood": "Union Square",
          "url": "http://www.canessa.org/",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "meets_the_eye",
          "name": "Meets the Eye Studios",
          "address": "939 Terminal Way, San Carlos, CA 94070",
          "neighborhood": "San Carlos",
          "url": "https://meetstheeyestudios.com/",
          "event_type_hints": [
            "live_music",
            "experimental"
          ],
          "default_start_time": ""
        },
        {
          "id": "sf_eagle",
          "name": "SF Eagle|The Eagle|Eagle SF|Eagle",
          "address": "398 12th St, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://sf-eagle.com/",
          "event_type_hints": [
            "live_music",
            "punk",
            "rock"
          ],
          "default_start_time": ""
        },
        {
          "id": "stern_grove",
          "name": "Stern Grove|Stern Grove Festival|Sigmund Stern Recreation Grove",
          "address": "2750 19th Ave, San Francisco, CA 94132",
          "neighborhood": "Outer Sunset",
          "url": "https://www.sterngrove.org/",
          "event_type_hints": [
            "live_music",
            "festival"
          ],
          "default_start_time": ""
        },
        {
          "id": "dinkelspiel_auditorium",
          "name": "Dinkelspiel Auditorium",
          "address": "471 Lagunita Dr, Stanford, CA 94305",
          "neighborhood": "Stanford",
          "url": "",
          "event_type_hints": [
            "classical",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "stanford_memchu",
          "name": "Stanford Memorial Church",
          "address": "450 Jane Stanford Way, Stanford, CA 94305",
          "neighborhood": "Stanford",
          "url": "",
          "event_type_hints": [
            "classical",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "berkeley_city_club",
          "name": "Berkeley City Club",
          "address": "2315 Durant Ave, Berkeley, CA 94704",
          "neighborhood": "Berkeley",
          "url": "",
          "event_type_hints": [
            "live_music",
            "experimental"
          ],
          "default_start_time": ""
        },
        {
          "id": "madarae",
          "name": "Madarae",
          "address": "46 Minna St, San Francisco, CA 94105",
          "neighborhood": "SOMA",
          "url": "https://www.madarae.com/",
          "event_type_hints": [
            "live_music",
            "dj_party",
            "electronic"
          ],
          "default_start_time": ""
        },
        {
          "id": "glide_memorial",
          "name": "Glide Memorial Church|Glide Memorial|GLIDE|Glide Church",
          "address": "330 Ellis St, San Francisco, CA 94102",
          "neighborhood": "Tenderloin",
          "url": "https://www.glide.org/",
          "event_type_hints": [
            "community",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_blue_light",
          "name": "Blue Light",
          "address": "1979 Union St, San Francisco, CA 94123",
          "neighborhood": "Marina",
          "url": "https://bluelightsf.com/",
          "event_type_hints": [
            "live_music",
            "dj_party"
          ],
          "default_start_time": ""
        },
        {
          "id": "plough_and_stars",
          "name": "The Plough and the Stars|Plough and the Stars|Plough & the Stars",
          "address": "116 Clement St, San Francisco, CA 94118",
          "neighborhood": "Inner Richmond",
          "url": "https://theploughandstars.com/",
          "event_type_hints": [
            "live_music",
            "folk"
          ],
          "default_start_time": ""
        },
        {
          "id": "new_farm",
          "name": "The New Farm",
          "address": "10 Cargo Way, San Francisco, CA 94124",
          "neighborhood": "Dogpatch",
          "url": "https://www.thenewfarmsf.org/",
          "event_type_hints": [
            "live_music",
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "gerrys_grill",
          "name": "Gerry's Grill",
          "address": "31005 Courthouse Dr, Union City, CA 94587",
          "neighborhood": "Union City",
          "url": "https://www.gerrysgrill.com/us/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "meyhouse_san_ramon",
          "name": "Meyhouse San Ramon",
          "address": "6000 Bollinger Canyon Rd, San Ramon, CA 94583",
          "neighborhood": "San Ramon",
          "url": "https://www.meyhousejazz.com/about-1",
          "event_type_hints": [
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "chabot_college_pfa",
          "name": "Chabot College|Chabot College Performing Arts Center",
          "address": "25555 Hesperian Blvd, Hayward, CA 94545",
          "neighborhood": "Hayward",
          "url": "",
          "event_type_hints": [],
          "default_start_time": ""
        },
        {
          "id": "sweeties_art_bar",
          "name": "Sweetie's ARt Bar|Sweetie's",
          "address": "475 Francisco St,San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://www.sweetiesartbar.com",
          "event_type_hints": [
            "live_music",
            "art"
          ],
          "default_start_time": ""
        },
        {
          "id": "pier_23",
          "name": "Pier 23",
          "address": "23 The Embarcadero,San Francisco, CA 94111",
          "neighborhood": "Financial District",
          "url": "https://www.pier23cafe.com/",
          "event_type_hints": [
            "live_music",
            "dj_party",
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "otherwise_brewing",
          "name": "Otherwise Brewing|Otherwise",
          "address": "1402 Grant Ave,San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://www.otherwisebrewing.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "etcetera_wine_bar",
          "name": "Etcetera Wine Bar|Etcetera",
          "address": "795 Valencia St,San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://etceterawinebar.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "decodance_bar",
          "name": "DecoDance Bar|Deco Dance",
          "address": "1160 Polk St, San Francisco, CA 94109",
          "neighborhood": "Polk Gulch",
          "url": "https://www.decodancesf.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "henry_j_kaiser",
          "name": "Henry J Kaiser Center|Henry Kaiser Center|HJK",
          "address": "10 10th St, Oakland, CA 94607",
          "neighborhood": "Oakland",
          "url": "https://www.thehenryj.org/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "oakland_arena",
          "name": "Oakland Arena|Oakland Coliseum|the Arena|the Coliseum|Oakland Coliseum Arena",
          "address": "7000 Coliseum Way, Oakland, CA 94621",
          "neighborhood": "Oakland",
          "url": "https://www.theoaklandarena.com/",
          "event_type_hints": [
            "live_music",
            "sports"
          ],
          "default_start_time": ""
        },
        {
          "id": "spats_berkeley",
          "name": "Spats",
          "address": "1974 Shattuck Avenue, Berkeley, CA 94704",
          "neighborhood": "Berkeley",
          "url": "https://www.instagram.com/spatsbar/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "mosswood_park",
          "name": "Mosswood Park",
          "address": "3612 Webster St, Oakland, CA 94609",
          "neighborhood": "Oakland",
          "url": "https://en.wikipedia.org/wiki/Mosswood_Park",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "revolution_cafe_oak",
          "name": "Revolution Cafe",
          "address": "1610 7th Street, Oakland, CA 94607",
          "neighborhood": "West Oakland",
          "url": "https://www.instagram.com/revolutioncafeoakland/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "point_san_pablo_harbor",
          "name": "Point San Pablo Harbor|Point San Pablo|Knot Club|The Knot Club",
          "address": "1900 Stenmark Dr, Richmond, CA 94801",
          "neighborhood": "Richmond",
          "url": "https://www.pspharbor.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "danny_murrys",
          "name": "Danny Murry's",
          "address": "1680 Washington Ave, San Leandro, CA 94577",
          "neighborhood": "San Leandro",
          "url": "https://www.instagram.com/dannymurrysirishpub/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "pier_80",
          "name": "Pier 80",
          "address": "401 Cesar Chavez St, San Francisco, CA 94124",
          "neighborhood": "Bayview",
          "url": "https://dothebay.com/venues/pier-80",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "union_square",
          "name": "Union Square",
          "address": "333 Post St, San Francisco, CA 94108",
          "neighborhood": "Union Square",
          "url": "",
          "event_type_hints": [
            "community",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "civic_center_plaza",
          "name": "Civic Center Plaza|Civic Center",
          "address": "355 McAllister St, San Francisco, CA 94102",
          "neighborhood": "Civic Center",
          "url": "https://www.tjpa.org/salesforce-transit-center/salesforce-park",
          "event_type_hints": [
            "community",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "market_street",
          "name": "Market Street",
          "address": "Market Street, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "",
          "event_type_hints": [
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "salesforce_park",
          "name": "Salesforce Park",
          "address": "425 Mission St, San Francisco, CA 94105",
          "neighborhood": "Financial District",
          "url": "https://www.tjpa.org/salesforce-transit-center/salesforce-park",
          "event_type_hints": [
            "community",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "sunnyvale_theatre",
          "name": "Sunnyvale Theatre|Sunnyvale Theater",
          "address": "550 E Remington Dr, Sunnyvale, CA 94087",
          "neighborhood": "Sunnyvale",
          "url": "https://www.sunnyvale.ca.gov/recreation-and-community/community-centers/theatre-and-performing-arts",
          "event_type_hints": [
            "live_music",
            "theater"
          ],
          "default_start_time": ""
        },
        {
          "id": "monte_carlo_mtv",
          "name": "Monte Carlo Niteclub & Restaurant|Monte Carlo Restaurant",
          "address": "228 Castro St, Mountain View, CA 94041",
          "neighborhood": "Mountain View",
          "url": "https://montecarloniteclub.com/",
          "event_type_hints": [
            "live_music",
            "dj_party"
          ],
          "default_start_time": ""
        },
        {
          "id": "cesar_chavez_plaza",
          "name": "San Jose Chavez Plaza|Plaza de Cesar Chavez|Plaza de César Chávez|Cesar Chavez Park",
          "address": "194 S Market St, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://www.sanjoseca.gov/Home/Components/FacilityDirectory/FacilityDirectory/2343/2028",
          "event_type_hints": [
            "community",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "discovery_meadow_sj",
          "name": "Discovery Meadow",
          "address": "180 Woz Way, San Jose, CA 95110",
          "neighborhood": "San Jose",
          "url": "",
          "event_type_hints": [
            "community",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "venture_christian",
          "name": "Venture Christian Church",
          "address": "16845 Hicks Rd, Los Gatos, CA 95032",
          "neighborhood": "Los Gatos",
          "url": "https://venture.cc/",
          "event_type_hints": [
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "holiday_inn_milpitas",
          "name": "Holiday Inn & Suites Silicon Valley|Holiday Inn Silicon Valley - Milpitas",
          "address": "1100 Cadillac Ct, Milpitas, CA 95035",
          "neighborhood": "Milpitas",
          "url": "https://www.ihg.com/holidayinn/hotels/us/en/milpitas/sjcmi/hoteldetail?cm_mmc=GoogleMaps-_-HI-_-US-_-SJCMI",
          "event_type_hints": [
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "aura_kitchen_sj",
          "name": "Aura Kitchen + Bar",
          "address": "389 S 1st St, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://www.facebook.com/AuraSanJose/",
          "event_type_hints": [
            "live_music",
            "dj_party"
          ],
          "default_start_time": ""
        },
        {
          "id": "sunnyvale_presbyterian",
          "name": "Sunnyvale Presbyterian Church",
          "address": "728 W Fremont Ave, Sunnyvale, CA 94087",
          "neighborhood": "Sunnyvale",
          "url": "https://sunnyvalepres.com/",
          "event_type_hints": [
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "historic_hoover_theatre",
          "name": "Historic Hoover Theatre|Hoover Theatre",
          "address": "1635 Park Ave, San Jose, CA 95126",
          "neighborhood": "San Jose",
          "url": "https://hoovertheatre.org/",
          "event_type_hints": [
            "theater",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "homestead_bowl",
          "name": "Homestead Bowl & The X Bar|X Bar|X Bar Cupertino",
          "address": "20990 Homestead Rd, Cupertino, CA 95014",
          "neighborhood": "Cupertino",
          "url": "https://www.homesteadbowl.com/",
          "event_type_hints": [
            "live_music",
            "dj_party"
          ],
          "default_start_time": ""
        },
        {
          "id": "swiss_park",
          "name": "Swiss Park",
          "address": "5911 Mowry Ave, Newark, CA 94560",
          "neighborhood": "Newark",
          "url": "https://swissparknewark.com/",
          "event_type_hints": [
            "community",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "history_park_sj",
          "name": "History Park|History Park @ Kelly Park",
          "address": "1650 Senter Rd, San Jose, CA 95112",
          "neighborhood": "San Jose",
          "url": "https://historysanjose.org/",
          "event_type_hints": [
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "santa_clara_fairgrounds",
          "name": "Santa Clara County Fairgrounds",
          "address": "344 Tully Rd, San Jose, CA 95111",
          "neighborhood": "San Jose",
          "url": "https://www.thefairgrounds.org/",
          "event_type_hints": [
            "community",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "macla_sj",
          "name": "MACLA|Movimiento de Arte y Cultura Latino Americana|MACLA/Movimiento de Arte y Cultura Latino Americana",
          "address": "510 S 1st St, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://maclaarte.org/",
          "event_type_hints": [
            "community",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "creatv_sj",
          "name": "CreaTV San Jose|CreaTV",
          "address": "38 S 2nd St, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://www.creatvsj.org/",
          "event_type_hints": [
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "blondies_bar",
          "name": "Blondie's Bar|Blondie's bar and no grill|Blondies",
          "address": "540 Valencia St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://blondiesbarsf.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "siesta_valley_bowl",
          "name": "Siesta Valley Bowl",
          "address": "100 Gateway Blvd, Orinda, CA 94563",
          "neighborhood": "Orinda",
          "url": "https://www.siestavalleybowl.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "paris_75",
          "name": "Paris 75",
          "address": "515 Broadway, San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://lppsf.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "comstock_saloon",
          "name": "Comstock Saloon",
          "address": "155 Columbus Ave, San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://www.comstocksaloon.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "tupelo",
          "name": "Tupelo",
          "address": "1337 Grant Ave, San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://tupelosf.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "lions_den",
          "name": "Lion's Den",
          "address": "57 Wentworth Pl, San Francisco, CA 94108",
          "neighborhood": "Chinatown",
          "url": "https://www.lionsdenbarandlounge.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "specs",
          "name": "Specs' Twelve Adler Museum Cafe|Specs",
          "address": "12 William Saroyan Pl, San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://www.specsbarsf.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "choquets",
          "name": "Choquet's",
          "address": "2500 Washington St, San Francisco, CA 94115",
          "neighborhood": "",
          "url": "https://www.chouquets.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "red_window",
          "name": "Red Window",
          "address": "500 Columbus Ave, San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://theredwindow.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "capelos_bbq",
          "name": "Capelo's BBQ|Capelo's Barbecue|Capelos BBQ|Capelo's",
          "address": "2655 Middlefield Rd, Redwood City, CA 94063",
          "neighborhood": "Redwood City",
          "url": "https://www.capelosbarbecue.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "luttickens_after5",
          "name": "Lutticken's After 5|Lutticken's|Luttickens",
          "address": "3535 Alameda de las Pulgas, Menlo Park, CA 94025",
          "neighborhood": "Menlo Park",
          "url": "https://www.luttickensafter5.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "maxs_of_burlingame",
          "name": "Max's of Burlingame",
          "address": "1250 Old Bayshore Blvd, Burlingame, CA 94010",
          "neighborhood": "Burlingame",
          "url": "https://maxsofburlingame.com/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "sheba_jazz_lounge",
          "name": "Sheba Jazz Lounge|Sheba|Sheba Piano Lounge",
          "address": "1419 Fillmore St, San Francisco, CA 94115",
          "neighborhood": "Fillmore",
          "url": "http://shebapianolounge.com/",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_stud",
          "name": "The Stud",
          "address": "1123 Folsom St, San Francisco, CA 94103",
          "neighborhood": "SOMA",
          "url": "https://www.studsf.com",
          "event_type_hints": [
            "dj_party",
            "live_music",
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "community_music_center",
          "name": "Community Music Center|CMC",
          "address": "544 Capp St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://sfcmc.org",
          "event_type_hints": [
            "classical",
            "community",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "lesher_center",
          "name": "Lesher Center for the Arts",
          "address": "1601 Civic Dr, Walnut Creek, CA 94596",
          "neighborhood": "Walnut Creek",
          "url": "https://www.lesherartscenter.org",
          "event_type_hints": [
            "theater",
            "classical",
            "dance"
          ],
          "default_start_time": ""
        },
        {
          "id": "oshman_family_jcc",
          "name": "Oshman Family JCC|OFJCC|Palo Alto JCC",
          "address": "3921 Fabian Way, Palo Alto, CA 94303",
          "neighborhood": "Palo Alto",
          "url": "https://paloaltojcc.org",
          "event_type_hints": [
            "classical",
            "community",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "club_deluxe",
          "name": "The DeLuxe|Club Deluxe|The Deluxe",
          "address": "1511 Haight St, San Francisco, CA 94117",
          "neighborhood": "Haight",
          "url": "https://thedeluxesf.com",
          "event_type_hints": [
            "jazz",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "redwood_room",
          "name": "Redwood Room|Redwood Room at the Clift",
          "address": "495 Geary St, San Francisco, CA 94102",
          "neighborhood": "Union Square",
          "url": "https://www.redwoodroomsf.com",
          "event_type_hints": [
            "jazz",
            "live_music",
            "dj_party"
          ],
          "default_start_time": ""
        },
        {
          "id": "amelie",
          "name": "Amélie|Amelie Wine Bar|Amelie",
          "address": "1754 Polk St, San Francisco, CA 94109",
          "neighborhood": "Polk Gulch",
          "url": "https://ameliesf.com",
          "event_type_hints": [
            "live_music",
            "dj_party"
          ],
          "default_start_time": ""
        },
        {
          "id": "capos",
          "name": "Capo's|Capo's by Tony Gemignani",
          "address": "641 Vallejo St, San Francisco, CA 94133",
          "neighborhood": "North Beach",
          "url": "https://sfcapos.com",
          "event_type_hints": [
            "jazz",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "el_chato",
          "name": "El Chato",
          "address": "2301 Bryant St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://www.elchatosf.com",
          "event_type_hints": [
            "dj_party",
            "live_music",
            "latin_world"
          ],
          "default_start_time": ""
        },
        {
          "id": "620_jones",
          "name": "620 Jones",
          "address": "620 Jones St, San Francisco, CA 94102",
          "neighborhood": "Union Square",
          "url": "https://620-jones.com",
          "event_type_hints": [
            "dj_party",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "white_rabbit",
          "name": "White Rabbit|White Rabbit Bar",
          "address": "3138 Fillmore St, San Francisco, CA 94123",
          "neighborhood": "Cow Hollow",
          "url": "https://www.whiterabbitsf.com",
          "event_type_hints": [
            "dj_party",
            "live_music",
            "electronic"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_mint",
          "name": "The Mint|The Mint Karaoke Lounge",
          "address": "1942 Market St, San Francisco, CA 94102",
          "neighborhood": "Duboce Triangle",
          "url": "",
          "event_type_hints": [
            "live_music",
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "space_550",
          "name": "SPACE 550|Space 550",
          "address": "550 Barneveld Ave, San Francisco, CA 94124",
          "neighborhood": "Bayview",
          "url": "http://www.space550sf.com",
          "event_type_hints": [
            "dj_party",
            "dance",
            "latin_world"
          ],
          "default_start_time": ""
        },
        {
          "id": "phoenix_hotel",
          "name": "The Phoenix Hotel|Phoenix Hotel",
          "address": "601 Eddy St, San Francisco, CA 94109",
          "neighborhood": "Tenderloin",
          "url": "https://www.phoenixhotelsf.com",
          "event_type_hints": [
            "live_music",
            "dj_party",
            "festival"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_grove",
          "name": "The Grove|The Grove SF|The Grove Yerba Buena",
          "address": "690 Mission St, San Francisco, CA 94105",
          "neighborhood": "SOMA",
          "url": "https://www.thegrovesf.com",
          "event_type_hints": [
            "live_music",
            "jazz"
          ],
          "default_start_time": ""
        },
        {
          "id": "berkeley_finnish_hall",
          "name": "Berkeley Finnish Hall|Finnish Hall|Finnish Brotherhood Hall|Berkeley Finnish Brotherhood Hall",
          "address": "1970 Chestnut St, Berkeley, CA 94702",
          "neighborhood": "Berkeley",
          "url": "",
          "event_type_hints": [
            "live_music",
            "experimental"
          ],
          "default_start_time": ""
        },
        {
          "id": "sf_public_library",
          "name": "San Francisco Public Library|SF Public Library|San Francisco Main Library|SFPL Main Library",
          "address": "100 Larkin St, San Francisco, CA 94102",
          "neighborhood": "Civic Center",
          "url": "https://sfpl.org/",
          "event_type_hints": [
            "experimental",
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "outside_lands",
          "name": "Outside Lands|Outside Lands Music Festival",
          "address": "Golden Gate Park, San Francisco, CA 94122",
          "neighborhood": "Golden Gate Park",
          "url": "https://www.sfoutsidelands.com/",
          "event_type_hints": [
            "live_music",
            "festival"
          ],
          "default_start_time": ""
        },
        {
          "id": "hardly_strictly_bluegrass",
          "name": "Hardly Strictly Bluegrass|Hardly Strictly Bluegrass Festival|HSB",
          "address": "Golden Gate Park, San Francisco, CA 94118",
          "neighborhood": "Golden Gate Park",
          "url": "https://www.hardlystrictlybluegrass.com/",
          "event_type_hints": [
            "live_music",
            "folk",
            "festival"
          ],
          "default_start_time": ""
        },
        {
          "id": "music_at_menlo",
          "name": "music@menlo|Music at Menlo|Music@Menlo",
          "address": "50 Valparaiso Ave, Atherton, CA 94027",
          "neighborhood": "Menlo Park",
          "url": "https://www.musicatmenlo.org/",
          "event_type_hints": [
            "classical",
            "festival"
          ],
          "default_start_time": ""
        },
        {
          "id": "fillmore_jazz_festival",
          "name": "Fillmore Jazz Festival|Fillmore Jazz",
          "address": "Fillmore St, San Francisco, CA 94115",
          "neighborhood": "Fillmore",
          "url": "https://www.fillmorejazzfest.com/",
          "event_type_hints": [
            "jazz",
            "live_music",
            "festival"
          ],
          "default_start_time": ""
        },
        {
          "id": "malcolm_x_jazzarts",
          "name": "Malcolm X JazzArts Festival|Malcolm X JazzArts",
          "address": "San Antonio Park, Oakland, CA 94606",
          "neighborhood": "Oakland",
          "url": "https://www.eastsideartsalliance.org/",
          "event_type_hints": [
            "jazz",
            "live_music",
            "festival"
          ],
          "default_start_time": ""
        },
        {
          "id": "carnaval_sf",
          "name": "Carnaval San Francisco|Carnaval SF|Carnaval",
          "address": "Harrison St, San Francisco, CA 94110",
          "neighborhood": "Mission",
          "url": "https://carnavalsanfrancisco.org/",
          "event_type_hints": [
            "latin_world",
            "live_music",
            "festival"
          ],
          "default_start_time": ""
        },
        {
          "id": "oakland_pride",
          "name": "Oakland Pride Festival|Oakland Pride",
          "address": "Downtown Oakland, CA 94612",
          "neighborhood": "Oakland",
          "url": "https://www.oaklandprideofficial.org/blank-2",
          "event_type_hints": [
            "live_music",
            "festival"
          ],
          "default_start_time": ""
        },
        {
          "id": "mountain_view_art_wine",
          "name": "Mountain View Art & Wine Festival|Mountain View Art and Wine",
          "address": "Castro St, Mountain View, CA 94041",
          "neighborhood": "Mountain View",
          "url": "https://www.mvartwine.com/",
          "event_type_hints": [
            "live_music",
            "festival"
          ],
          "default_start_time": ""
        },
        {
          "id": "subzero_festival",
          "name": "SubZERO Festival|SubZERO",
          "address": "SoFA District, San Jose, CA 95113",
          "neighborhood": "San Jose",
          "url": "https://subzerofestival.com/",
          "event_type_hints": [
            "live_music",
            "festival"
          ],
          "default_start_time": ""
        },
        {
          "id": "san_mateo_county_fair",
          "name": "San Mateo County Fair|San Mateo Fair",
          "address": "1346 Saratoga Dr, San Mateo, CA 94403",
          "neighborhood": "San Mateo",
          "url": "https://www.sanmateocountyfair.com/",
          "event_type_hints": [
            "live_music",
            "festival"
          ],
          "default_start_time": ""
        },
        {
          "id": "toyota_pavilion",
          "name": "Toyota Pavilion at Concord|Toyota Pavilion|Concord Pavilion",
          "address": "2000 Kirker Pass Rd, Concord, CA 94521",
          "neighborhood": "Concord",
          "url": "https://www.toyotapavilionatconcord.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "rock_the_dock",
          "name": "Rock the Dock|Rock the Dock RWC",
          "address": "459 Seaport Court, Redwood City, CA 94063",
          "neighborhood": "Redwood City",
          "url": "https://rockthedockrwc.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "rwc_music_in_the_park",
          "name": "Redwood City Music in the Park|Music in the Park|Stafford Park",
          "address": "King St & Hopkins Ave, Redwood City, CA 94062",
          "neighborhood": "Redwood City",
          "url": "https://www.redwoodcity.org/residents/redwood-city-events/music/music-in-the-park",
          "event_type_hints": [
            "live_music",
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "rwc_sounds_of_the_shores",
          "name": "Sounds of the Shores|Redwood City Sounds of the Shores|Marlin Park",
          "address": "Neptune Dr & Cringle Dr, Redwood City, CA 94065",
          "neighborhood": "Redwood City",
          "url": "https://www.redwoodcity.org/residents/redwood-city-events/music/sounds-of-the-shores",
          "event_type_hints": [
            "live_music",
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "rwc_pub_in_the_park",
          "name": "Redwood City Pub in the Park|Pub in the Park",
          "address": "1455 Madison Ave, Redwood City, CA 94061",
          "neighborhood": "Redwood City",
          "url": "https://www.redwoodcity.org/residents/redwood-city-events/pub-in-the-park-4124",
          "event_type_hints": [
            "live_music",
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "rwc_classical_series",
          "name": "Redwood City Classical Series|Classical on the Square|Classical Series",
          "address": "2200 Broadway, Redwood City, CA 94063",
          "neighborhood": "Redwood City",
          "url": "https://www.redwoodcity.org/residents/redwood-city-events/music/classical-series",
          "event_type_hints": [
            "classical",
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "rwc_shakespeare_in_the_park",
          "name": "Redwood City Shakespeare in the Park|Shakespeare in the Park|Redwood City Shakespeare",
          "address": "1455 Madison Ave, Redwood City, CA 94061",
          "neighborhood": "Redwood City",
          "url": "https://www.redwoodcity.org/residents/redwood-city-events/stage/shakespeare-in-the-park",
          "event_type_hints": [
            "theater",
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "catalyst_sc",
          "name": "The Catalyst|Catalyst|The Catalyst Club|Catalyst Atrium|The Catalyst Atrium",
          "address": "1011 Pacific Ave, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://catalystclub.com/",
          "event_type_hints": [
            "live_music",
            "rock",
            "hiphop_rap"
          ],
          "default_start_time": "20:00"
        },
        {
          "id": "moes_alley",
          "name": "Moe's Alley",
          "address": "1535 Commercial Way, Santa Cruz, CA 95065",
          "neighborhood": "Santa Cruz",
          "url": "https://moesalley.com/",
          "event_type_hints": [
            "live_music",
            "rock",
            "latin_world"
          ],
          "default_start_time": "20:30"
        },
        {
          "id": "kuumbwa_jazz",
          "name": "Kuumbwa Jazz Center|Kuumbwa Jazz|Kuumbwa Center|Kuumbwa",
          "address": "320-2 Cedar St, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://www.kuumbwajazz.org/",
          "event_type_hints": [
            "jazz",
            "live_music"
          ],
          "default_start_time": "19:00"
        },
        {
          "id": "rio_theatre_sc",
          "name": "Rio Theatre|Rio Theater|The Rio Theatre|The Rio Theater",
          "address": "1205 Soquel Ave, Santa Cruz, CA 95062",
          "neighborhood": "Santa Cruz",
          "url": "https://www.riotheatre.com/",
          "event_type_hints": [
            "live_music",
            "film",
            "theater"
          ],
          "default_start_time": "20:00"
        },
        {
          "id": "crepe_place",
          "name": "The Crepe Place|Crepe Place",
          "address": "1134 Soquel Ave, Santa Cruz, CA 95062",
          "neighborhood": "Santa Cruz",
          "url": "https://thecrepeplace.com/",
          "event_type_hints": [
            "live_music",
            "rock",
            "folk"
          ],
          "default_start_time": "20:00"
        },
        {
          "id": "felton_music_hall",
          "name": "Felton Music Hall",
          "address": "6275 Highway 9, Felton, CA 95018",
          "neighborhood": "Felton",
          "url": "https://feltonmusichall.com/",
          "event_type_hints": [
            "live_music",
            "rock",
            "folk"
          ],
          "default_start_time": "20:00"
        },
        {
          "id": "crows_nest_sc",
          "name": "The Crow's Nest|Crow's Nest|Crows Nest",
          "address": "2218 East Cliff Dr, Santa Cruz, CA 95062",
          "neighborhood": "Santa Cruz",
          "url": "https://crowsnest-santacruz.com/",
          "event_type_hints": [
            "live_music",
            "comedy"
          ],
          "default_start_time": "20:30"
        },
        {
          "id": "abbott_square",
          "name": "Abbott Square Market|Abbott Square",
          "address": "725 Front St, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://www.abbottsquaremarket.com/",
          "event_type_hints": [
            "live_music",
            "community",
            "comedy"
          ],
          "default_start_time": "18:00"
        },
        {
          "id": "colligan_theater",
          "name": "Colligan Theater|The Colligan Theater|Jewel Theatre|Jewel Theatre Company",
          "address": "1010 River St, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://www.colligantheater.org/",
          "event_type_hints": [
            "theater",
            "dance"
          ],
          "default_start_time": "19:30"
        },
        {
          "id": "sc_civic_auditorium",
          "name": "Santa Cruz Civic Auditorium|Santa Cruz Civic",
          "address": "307 Church St, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://www.santacruzca.gov/Government/City-Departments/Parks-Recreation/Civic-Auditorium",
          "event_type_hints": [
            "live_music",
            "classical",
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "santa_cruz_mah",
          "name": "Santa Cruz MAH|Santa Cruz Museum of Art & History|MAH",
          "address": "705 Front St, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://www.santacruzmah.org/",
          "event_type_hints": [
            "art",
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "bookshop_santa_cruz",
          "name": "Bookshop Santa Cruz",
          "address": "1520 Pacific Ave, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://www.bookshopsantacruz.com/",
          "event_type_hints": [
            "literary"
          ],
          "default_start_time": "19:00"
        },
        {
          "id": "indexical",
          "name": "Indexical",
          "address": "1050 River St #119, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://www.indexical.org/",
          "event_type_hints": [
            "experimental",
            "live_music"
          ],
          "default_start_time": "20:00"
        },
        {
          "id": "dnas_comedy_lab",
          "name": "DNA's Comedy Lab|DNAs Comedy Lab",
          "address": "155 S River St, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://dnascomedylab.com/",
          "event_type_hints": [
            "comedy"
          ],
          "default_start_time": "19:30"
        },
        {
          "id": "quarry_amphitheater",
          "name": "Quarry Amphitheater|The Quarry Amphitheater|Quarry Amp",
          "address": "Quarry Amphitheater, UC Santa Cruz, Santa Cruz, CA 95064",
          "neighborhood": "Santa Cruz",
          "url": "https://www.quarryamphitheater.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": "19:00"
        },
        {
          "id": "woodhouse_brewing",
          "name": "Woodhouse Blending & Brewing|Woodhouse Brewing|Woodhouse Blending and Brewing",
          "address": "119 Madrone St, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://www.woodhousebrews.com/",
          "event_type_hints": [
            "live_music",
            "folk"
          ],
          "default_start_time": "19:00"
        },
        {
          "id": "ugly_mug",
          "name": "The Ugly Mug|Ugly Mug",
          "address": "4640 Soquel Dr, Soquel, CA 95073",
          "neighborhood": "Soquel",
          "url": "https://www.cafeugly.com/",
          "event_type_hints": [
            "live_music",
            "folk"
          ],
          "default_start_time": "19:30"
        },
        {
          "id": "sevys_aptos",
          "name": "Sevy's Bar & Kitchen|Sevy's|Severino's Bar & Grill|Severinos Bar & Grill",
          "address": "7500 Old Dominion Ct, Aptos, CA 95003",
          "neighborhood": "Aptos",
          "url": "https://www.sevysbarandkitchen.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": "19:00"
        },
        {
          "id": "discretion_brewing",
          "name": "Discretion Brewing",
          "address": "2703 41st Ave Ste A, Soquel, CA 95073",
          "neighborhood": "Soquel",
          "url": "https://www.discretionbrewing.com/",
          "event_type_hints": [
            "live_music",
            "community"
          ],
          "default_start_time": "17:30"
        },
        {
          "id": "bargetto_winery",
          "name": "Bargetto Winery|Bargetto",
          "address": "3535 N Main St, Soquel, CA 95073",
          "neighborhood": "Soquel",
          "url": "https://bargetto.com/",
          "event_type_hints": [
            "live_music",
            "community"
          ],
          "default_start_time": "18:00"
        },
        {
          "id": "radius_gallery",
          "name": "Radius Gallery",
          "address": "1050 River St Unit 127, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://www.radius.gallery/",
          "event_type_hints": [
            "art",
            "literary"
          ],
          "default_start_time": ""
        },
        {
          "id": "sc_museum_nat_history",
          "name": "Santa Cruz Museum of Natural History|SC Museum of Natural History",
          "address": "1305 E Cliff Dr, Santa Cruz, CA 95062",
          "neighborhood": "Santa Cruz",
          "url": "https://santacruzmuseum.org/",
          "event_type_hints": [
            "community",
            "workshop"
          ],
          "default_start_time": ""
        },
        {
          "id": "roaring_camp",
          "name": "Roaring Camp Railroads|Roaring Camp",
          "address": "5401 Graham Hill Rd, Felton, CA 95018",
          "neighborhood": "Felton",
          "url": "https://roaringcamp.com/",
          "event_type_hints": [
            "community",
            "festival"
          ],
          "default_start_time": ""
        },
        {
          "id": "lille_aeske",
          "name": "lille æske|lille aeske|Lille Aeske",
          "address": "13160 Highway 9, Boulder Creek, CA 95006",
          "neighborhood": "Boulder Creek",
          "url": "https://www.lilleaeske.com/",
          "event_type_hints": [
            "live_music",
            "folk",
            "experimental"
          ],
          "default_start_time": "19:30"
        },
        {
          "id": "santa_cruz_art_league",
          "name": "Santa Cruz Art League|SCAL",
          "address": "526 Broadway, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://scal.org/",
          "event_type_hints": [
            "art"
          ],
          "default_start_time": ""
        },
        {
          "id": "seymour_center",
          "name": "Seymour Marine Discovery Center|Seymour Center",
          "address": "100 McAllister Way, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://seymourcenter.ucsc.edu/",
          "event_type_hints": [
            "community",
            "workshop"
          ],
          "default_start_time": ""
        },
        {
          "id": "beauregard_vineyards",
          "name": "Beauregard Vineyards",
          "address": "10 Pine Flat Rd, Santa Cruz, CA 95060",
          "neighborhood": "Bonny Doon",
          "url": "https://www.beauregardvineyards.com/",
          "event_type_hints": [
            "community",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "sc_shakespeare_grove",
          "name": "Audrey Stanley Grove|Santa Cruz Shakespeare|The Grove at DeLaveaga|Audrey Stanley Grove at DeLaveaga Park",
          "address": "501 Upper Park Rd, Santa Cruz, CA 95065",
          "neighborhood": "Santa Cruz",
          "url": "https://santacruzshakespeare.org/",
          "event_type_hints": [
            "theater"
          ],
          "default_start_time": "19:30"
        },
        {
          "id": "crocker_theater",
          "name": "Cabrillo Crocker Theater|Crocker Theater|Cabrillo Stage",
          "address": "6500 Soquel Dr, Aptos, CA 95003",
          "neighborhood": "Aptos",
          "url": "https://www.cabrillostage.com/",
          "event_type_hints": [
            "theater",
            "live_music"
          ],
          "default_start_time": "19:30"
        },
        {
          "id": "park_hall_ben_lomond",
          "name": "Park Hall|Mountain Community Theater",
          "address": "9400 Mill St, Ben Lomond, CA 95005",
          "neighborhood": "Ben Lomond",
          "url": "https://mctshows.org/",
          "event_type_hints": [
            "theater",
            "community"
          ],
          "default_start_time": "20:00"
        },
        {
          "id": "sc_beach_boardwalk",
          "name": "Santa Cruz Beach Boardwalk|Cocoanut Grove|The Cocoanut Grove|Boardwalk Cocoanut Grove",
          "address": "400 Beach St, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://beachboardwalk.com/",
          "event_type_hints": [
            "live_music",
            "community",
            "festival"
          ],
          "default_start_time": ""
        },
        {
          "id": "kp_arena_sc",
          "name": "Kaiser Permanente Arena|Santa Cruz Warriors|KP Arena",
          "address": "140 Front St, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://santacruz.gleague.nba.com/",
          "event_type_hints": [
            "sports",
            "live_music"
          ],
          "default_start_time": "19:00"
        },
        {
          "id": "scpl_downtown",
          "name": "Santa Cruz Public Library|Santa Cruz Public Libraries|SCPL",
          "address": "224 Church St, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://www.santacruzpl.org/",
          "event_type_hints": [
            "community",
            "literary",
            "workshop"
          ],
          "default_start_time": ""
        },
        {
          "id": "humble_sea",
          "name": "Humble Sea Brewing|Humble Sea",
          "address": "820 Swift St, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://humblesea.com/",
          "event_type_hints": [
            "community",
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "the_418_project",
          "name": "The 418 Project|418 Project",
          "address": "155 S River St, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://the418project.org/",
          "event_type_hints": [
            "dance",
            "community"
          ],
          "default_start_time": "19:00"
        },
        {
          "id": "blue_lagoon_sc",
          "name": "Blue Lagoon|The Blue Lagoon",
          "address": "923 Pacific Ave, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "http://thebluelagoon.com/",
          "event_type_hints": [
            "dj_party",
            "live_music",
            "rock"
          ],
          "default_start_time": "21:00"
        },
        {
          "id": "sc_vets_hall",
          "name": "Santa Cruz Vets Hall|Vets Hall|Santa Cruz Veterans Memorial Building",
          "address": "846 Front St, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://www.veteranshall.org/",
          "event_type_hints": [
            "live_music",
            "community"
          ],
          "default_start_time": "20:00"
        },
        {
          "id": "henflings",
          "name": "Henfling's Tavern|Henflings|Henflings Tavern",
          "address": "9450 Highway 9, Ben Lomond, CA 95005",
          "neighborhood": "Ben Lomond",
          "url": "https://www.henflingsslv.com/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": "20:30"
        },
        {
          "id": "zeldas_capitola",
          "name": "Zelda's on the Beach|Zelda's|Zeldas on the Beach",
          "address": "203 Esplanade, Capitola, CA 95010",
          "neighborhood": "Capitola",
          "url": "https://www.zeldasonthebeach.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": "20:00"
        },
        {
          "id": "pono_hawaiian",
          "name": "Pono Hawaiian Grill|Pono",
          "address": "120 Union St, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://ponohawaiiangrill.com/",
          "event_type_hints": [
            "live_music",
            "latin_world"
          ],
          "default_start_time": "19:00"
        },
        {
          "id": "mello_center",
          "name": "Henry J. Mello Center|Mello Center|Mello Center for the Performing Arts|Henry J. Mello Center for the Performing Arts",
          "address": "250 E Beach St, Watsonville, CA 95076",
          "neighborhood": "Watsonville",
          "url": "https://www.mellocenter.org/",
          "event_type_hints": [
            "theater",
            "classical",
            "live_music"
          ],
          "default_start_time": "19:30"
        },
        {
          "id": "britannia_arms_capitola",
          "name": "Britannia Arms Capitola|Britannia Arms of Capitola",
          "address": "110 Monterey Ave, Capitola, CA 95010",
          "neighborhood": "Capitola",
          "url": "https://www.britanniaarmscapitola.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": "20:00"
        },
        {
          "id": "sc_mountain_brewing",
          "name": "Santa Cruz Mountain Brewing|SCMB",
          "address": "402 Ingalls St #27, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://www.facebook.com/scmbrew/",
          "event_type_hints": [
            "live_music",
            "community"
          ],
          "default_start_time": "18:00"
        },
        {
          "id": "jury_room",
          "name": "The Jury Room|Jury Room",
          "address": "712 Ocean St, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://www.instagram.com/juryroomsantacruz/",
          "event_type_hints": [
            "live_music",
            "rock"
          ],
          "default_start_time": "21:00"
        },
        {
          "id": "streetlight_records_sc",
          "name": "Streetlight Records Santa Cruz|Streetlight Records",
          "address": "939 Pacific Ave, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://streetlightrecords.com/",
          "event_type_hints": [
            "live_music"
          ],
          "default_start_time": ""
        },
        {
          "id": "subrosa_sc",
          "name": "SubRosa|Subrosa|SubRosa Community Space|Subrosa Community Space",
          "address": "703 Pacific Ave, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://www.subrosaproject.org/",
          "event_type_hints": [
            "live_music",
            "community"
          ],
          "default_start_time": "20:00"
        },
        {
          "id": "tannery_arts_center",
          "name": "Tannery Arts Center|The Tannery",
          "address": "1050 River St, Santa Cruz, CA 95060",
          "neighborhood": "Santa Cruz",
          "url": "https://tanneryartscenter.org/",
          "event_type_hints": [
            "art",
            "community"
          ],
          "default_start_time": ""
        },
        {
          "id": "sc_county_fairgrounds",
          "name": "Santa Cruz County Fairgrounds|Santa Cruz Fairgrounds",
          "address": "2601 E Lake Ave, Watsonville, CA 95076",
          "neighborhood": "Watsonville",
          "url": "https://santacruzcountyfair.com/",
          "event_type_hints": [
            "community",
            "festival"
          ],
          "default_start_time": ""
        }
      ],
      "geo": {
        "regions": {
          "San Francisco": [
            "Bayview",
            "Bernal Heights",
            "Castro",
            "Chinatown",
            "Civic Center",
            "Divisadero",
            "Dogpatch",
            "Embarcadero",
            "Fillmore",
            "Financial District",
            "Fort Mason",
            "Glen Park",
            "Golden Gate Park",
            "Haight",
            "Hayes Valley",
            "Ingleside",
            "Inner Richmond",
            "Japantown",
            "Lower Haight",
            "Marina",
            "Mid-Market",
            "Mission",
            "Mission Bay",
            "Nob Hill",
            "Noe Valley",
            "North Beach",
            "Outer Richmond",
            "Outer Sunset",
            "Pacific Heights",
            "Polk Gulch",
            "Potrero Hill",
            "Presidio",
            "SOMA",
            "Tenderloin",
            "Union Square",
            "Cow Hollow",
            "Duboce Triangle"
          ],
          "East Bay": [
            "Alameda",
            "Albany",
            "Berkeley",
            "Concord",
            "El Cerrito",
            "Fremont",
            "Hayward",
            "Livermore",
            "Newark",
            "Oakland",
            "Piedmont",
            "Pleasanton",
            "Richmond",
            "San Leandro",
            "San Ramon",
            "Temescal",
            "Union City",
            "Vallejo",
            "West Oakland",
            "Orinda",
            "Walnut Creek"
          ],
          "Oakland": [
            "Oakland",
            "Piedmont",
            "Temescal",
            "West Oakland"
          ],
          "South Bay": [
            "Cupertino",
            "Los Gatos",
            "Milpitas",
            "Mountain View",
            "San Jose",
            "Santa Clara",
            "Saratoga",
            "Sunnyvale"
          ],
          "Peninsula": [
            "Daly City",
            "Half Moon Bay",
            "Menlo Park",
            "Pacifica",
            "Palo Alto",
            "Redwood City",
            "San Carlos",
            "San Mateo",
            "Stanford"
          ],
          "Santa Cruz": [
            "Santa Cruz",
            "Live Oak",
            "Capitola",
            "Soquel",
            "Aptos",
            "Scotts Valley",
            "Felton",
            "Ben Lomond",
            "Boulder Creek",
            "Bonny Doon",
            "Watsonville"
          ]
        },
        "neighborhoods": {
          "Alameda": {
            "description": "Island city in the East Bay"
          },
          "Albany": {
            "description": "Small city between Berkeley and El Cerrito"
          },
          "Bayview": {
            "description": "Southeast SF neighborhood"
          },
          "Berkeley": {
            "description": "University city in the East Bay"
          },
          "Concord": {
            "description": "Contra Costa city in the East Bay"
          },
          "Bernal Heights": {
            "description": "Hilltop SF neighborhood south of the Mission",
            "display": "Bernal"
          },
          "Castro": {
            "description": "Historic SF neighborhood near Market St"
          },
          "Chinatown": {
            "description": "Historic SF neighborhood north of Downtown"
          },
          "Civic Center": {
            "description": "SF government and arts district around City Hall"
          },
          "Cupertino": {
            "description": "South Bay city, home to Apple Park"
          },
          "Daly City": {
            "description": "San Mateo County city immediately south of SF"
          },
          "Divisadero": {
            "description": "SF corridor between NoPa and Western Addition"
          },
          "Dogpatch": {
            "description": "SF waterfront neighborhood south of Mission Bay"
          },
          "El Cerrito": {
            "description": "Small East Bay city north of Berkeley"
          },
          "Embarcadero": {
            "description": "SF waterfront along the bay"
          },
          "Fillmore": {
            "description": "SF neighborhood with historic jazz heritage"
          },
          "Financial District": {
            "description": "SF downtown business district",
            "display": "FiDi"
          },
          "Fort Mason": {
            "description": "SF waterfront arts center near the Marina"
          },
          "Fremont": {
            "description": "South East Bay city"
          },
          "Glen Park": {
            "description": "Quiet SF neighborhood south of Noe Valley"
          },
          "Golden Gate Park": {
            "description": "SF's large urban park spanning the Richmond and Sunset",
            "display": "GGP"
          },
          "Haight": {
            "description": "SF neighborhood known for 1960s counterculture"
          },
          "Half Moon Bay": {
            "description": "Coastal town on the Pacific side of the Peninsula",
            "display": "HMB"
          },
          "Hayes Valley": {
            "description": "Trendy SF neighborhood near Civic Center"
          },
          "Hayward": {
            "description": "East Bay city between Oakland and Fremont"
          },
          "Ingleside": {
            "description": "Residential SF neighborhood along Ocean Ave"
          },
          "Inner Richmond": {
            "description": "SF neighborhood along Clement St east of GGP",
            "display": "Inner Rich"
          },
          "Japantown": {
            "description": "SF cultural district around Japan Center",
            "display": "J-town"
          },
          "Livermore": {
            "description": "East Bay city in the Tri-Valley"
          },
          "Los Gatos": {
            "description": "South Bay town in the Santa Cruz foothills"
          },
          "Lower Haight": {
            "description": "SF neighborhood between Haight and Hayes Valley"
          },
          "Marina": {
            "description": "Upscale SF neighborhood along the northern waterfront"
          },
          "Menlo Park": {
            "description": "Peninsula city near Stanford"
          },
          "Mid-Market": {
            "description": "SF stretch of Market St between Downtown and Castro"
          },
          "Milpitas": {
            "description": "South Bay city north of San Jose"
          },
          "Mission": {
            "description": "Vibrant SF neighborhood along Mission St"
          },
          "Mission Bay": {
            "description": "SF waterfront neighborhood near Chase Center"
          },
          "Mountain View": {
            "description": "South Bay city, home to Shoreline Amphitheatre",
            "display": "Mtn View"
          },
          "Newark": {
            "description": "South East Bay city near Fremont"
          },
          "Nob Hill": {
            "description": "Hilltop SF neighborhood known for hotels and cable cars"
          },
          "Noe Valley": {
            "description": "Family-friendly SF neighborhood south of the Castro"
          },
          "North Beach": {
            "description": "SF Italian neighborhood near Chinatown"
          },
          "Oakland": {
            "description": "Major East Bay city"
          },
          "Orinda": {
            "description": "East Bay town east of Berkeley through the Caldecott Tunnel"
          },
          "Outer Richmond": {
            "description": "SF neighborhood between GGP and the ocean",
            "display": "Outer Rich"
          },
          "Outer Sunset": {
            "description": "SF neighborhood between the Sunset and the ocean"
          },
          "Pacifica": {
            "description": "Coastal city south of SF"
          },
          "Pacific Heights": {
            "description": "Upscale SF neighborhood with bay views",
            "display": "Pac Heights"
          },
          "Palo Alto": {
            "description": "Peninsula city near Stanford University"
          },
          "Piedmont": {
            "description": "Small city surrounded by Oakland"
          },
          "Pleasanton": {
            "description": "East Bay city in the Tri-Valley"
          },
          "Polk Gulch": {
            "description": "SF corridor along Polk St",
            "display": "Polk"
          },
          "Potrero Hill": {
            "description": "SF hilltop neighborhood south of SOMA",
            "display": "Potrero"
          },
          "Presidio": {
            "description": "Former military base turned national park in SF"
          },
          "Redwood City": {
            "description": "Peninsula city between San Mateo and Palo Alto",
            "display": "RWC"
          },
          "Richmond": {
            "description": "East Bay city on the bay shore"
          },
          "San Carlos": {
            "description": "Peninsula city between Redwood City and San Mateo"
          },
          "San Mateo": {
            "description": "Peninsula city; home of the San Mateo County Event Center"
          },
          "San Jose": {
            "description": "Largest South Bay city"
          },
          "San Leandro": {
            "description": "East Bay city between Oakland and Hayward"
          },
          "San Ramon": {
            "description": "East Bay city in the Tri-Valley"
          },
          "Santa Clara": {
            "description": "South Bay city, home to Levi's Stadium"
          },
          "Saratoga": {
            "description": "South Bay town in the foothills"
          },
          "SOMA": {
            "description": "SF neighborhood South of Market St"
          },
          "Stanford": {
            "description": "Stanford University campus area"
          },
          "Sunnyvale": {
            "description": "South Bay city between Mtn View and Santa Clara"
          },
          "Temescal": {
            "description": "Oakland neighborhood along Telegraph Ave"
          },
          "Tenderloin": {
            "description": "Central SF neighborhood near Union Square",
            "display": "TL"
          },
          "Union City": {
            "description": "East Bay city between Hayward and Fremont"
          },
          "Union Square": {
            "description": "SF shopping and theater district",
            "display": "Union Sq"
          },
          "Vallejo": {
            "description": "North Bay city on the Carquinez Strait"
          },
          "West Oakland": {
            "description": "Industrial Oakland neighborhood west of Downtown"
          },
          "Walnut Creek": {
            "description": "Contra Costa city; home of the Lesher Center for the Arts"
          },
          "Cow Hollow": {
            "description": "SF neighborhood between the Marina and Pacific Heights"
          },
          "Duboce Triangle": {
            "description": "SF neighborhood near Market & Church, by the Castro"
          },
          "Santa Cruz": {
            "description": "Coastal city and county seat on northern Monterey Bay"
          },
          "Live Oak": {
            "description": "Unincorporated area east of Santa Cruz, incl. Pleasure Point"
          },
          "Capitola": {
            "description": "Small beach city southeast of Santa Cruz"
          },
          "Soquel": {
            "description": "Unincorporated village inland of Capitola"
          },
          "Aptos": {
            "description": "Unincorporated coastal community, home of Cabrillo College"
          },
          "Scotts Valley": {
            "description": "City in the Santa Cruz Mountains north of Santa Cruz"
          },
          "Felton": {
            "description": "San Lorenzo Valley town in the redwoods"
          },
          "Ben Lomond": {
            "description": "San Lorenzo Valley town north of Felton"
          },
          "Boulder Creek": {
            "description": "San Lorenzo Valley town at the top of Highway 9"
          },
          "Bonny Doon": {
            "description": "Rural mountain area northwest of Santa Cruz"
          },
          "Watsonville": {
            "description": "Agricultural city in south Santa Cruz County"
          }
        }
      },
      "events": {
        "2026-09-03": {
          "date": "2026-09-03",
          "updated_at": "2026-09-04T10:15:24.382347Z",
          "events": [
            {
              "event_id": "evt_ac26843afe19",
              "venue_id": "venue_poor_house_bistro",
              "title": "Jefe Meduri Famiglia Band",
              "event_time": "2026-09-03T18:00:00",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-09-03T18:00:00",
              "event_date": "2026-09-03",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-09-04T10:11:13.938872Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-09-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d1c8f066602b",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-09-03",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-03",
              "event_date": "2026-09-03",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "A venture capitalist meets a visionary founder, and ambition, ethics, and profit collide in a race to change the world.",
              "event_types": [
                "theater"
              ],
              "price_info": "On Stage Now",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-09-04T10:15:07.852694Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-03",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-09-04": {
          "date": "2026-09-04",
          "updated_at": "2026-09-04T10:41:17.586609Z",
          "events": [
            {
              "event_id": "evt_3668d2610e29",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Asian Man Records 30th Anniversary",
              "event_time": "Friday September 4 2026 7:00PM doors -- music at 7:45 PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Friday September 4 2026\n 7:00PM doors -- music at 7:45PM\n  •••  ALL AGES\n$30\n$36.31 in advance [30 face value + 6.31 service fee]\nor $120 for a 4-day pass\n$135.31 in advance [120 face value + 15.31 service fee]\nAsian Man Records 30 Anniversary Celebration\nTBA \n xxx\nTBA \n xxx\nTBA \n xxx\nTBA \n xxx",
              "event_types": [
                "live_music",
                "rock",
                "festival"
              ],
              "price_info": "$30",
              "url": "http://www.bottomofthehill.com/20260904.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-18T07:39:39.622506Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_64a007cd5c94",
              "venue_id": "venue_the_ritz",
              "title": "Devildriver",
              "event_time": "2026-09-04T18:00:18-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-09-04T18:00:18",
              "event_date": "2026-09-04",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "DEVILDRIVER\nUPON A BURNING BODY\nOV SULFUR\n\n \n\nFRIDAY SEPTEMBER 4, 2026\nDoors: 6PM // All Ages // $40 Advance – $45  Day-of-Show\nGET TICKETS HERE\nAdvance Ticket Sales End\nOne Hour Before Doors\nFACEBOOK EVENT PAGE",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$40 Advance – $45  Day-of-Show",
              "url": "https://www.ticketweb.com/event/devildriver-upon-a-burning-body-the-ritz-tickets/14854993",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-04-28T12:56:42.405550Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_ritz|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d7b659fa1606",
              "venue_id": "venue_regency_ballroom",
              "title": "Nitzer Ebb",
              "event_time": "Sep 4 7pm/8pm",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Industrial and EBM pioneers Nitzer Ebb bring their rhythmic, synth-driven sound to JAX Vineyards. Their performance promises a high-intensity show rooted in the foundations of electronic body music.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "Price varies",
              "url": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQHd8sn-lnqv8SU37McrnURcR0yRc2elUWDC2cXuI7PBUH6zFmGccR6O47ZZYEgi5WjkFgDAFoyl725bRPUAUi7AqIRVhSZqHHDRL9J5I8uomEYXUgRZKKbnn_IFMK26t1ggMWPyTZYwoJldjA==",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-05-04T11:08:02.193821Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0f038c44e1eb",
              "venue_id": "venue_shotgun_studios",
              "title": "Shotgun Spotlight (September)",
              "event_time": "2026-09-04T10:30:00",
              "venue_name": "Shotgun Studios",
              "event_start": "2026-09-04T10:30:00",
              "event_date": "2026-09-04",
              "venue_address": "1201 University Ave, Berkeley, CA 94702",
              "description": "Seminar and gathering series hosted by Patrick Dooley at the studios, dedicated to exploration of live theater and fellowship. The page confirms the series is playing through December 4, 2026, but only some individual upcoming studio dates are clearly listed.",
              "event_types": [
                "community",
                "theater"
              ],
              "price_info": "Pay-what-you-can",
              "url": "https://shotgunplayers.org/online/article/shotgun-spotlight",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shotgun_studios",
                  "source_name": "Shotgun Studios",
                  "fetched_at": "2026-05-08T10:31:58.984559Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_shotgun_players",
                  "source_name": "Shotgun Players",
                  "fetched_at": "2026-05-11T10:06:54.321733Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_shotgun_studios|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_580680c6e12f",
              "venue_id": "venue_1015_folsom",
              "title": "JASON ROSS",
              "event_time": "2026-09-04T22:00:00",
              "venue_name": "1015 Folsom",
              "event_start": "2026-09-04T22:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "Friday September 4th, 2026 DJ Dials & 1015 Folsom present: Jason Ross St. Mary Quackson Bay Skies Klub Room: Neon Owl Everfish (Open Aux Winner) Kytra Atlux Jake Fab Lin Lounge: Afterglow Yeidy (Afterglow Winner) Moheato Keauty B Luke 10pm • 21+ Only Table Reservations: BottleService@1015.com",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS | Bottle Service",
              "url": "https://wl.eventim.us/event/jason-ross/690477?afflky=1015Folsom",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-05-29T06:52:34.919794Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-29T09:21:29.154856Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_resident_advisor_sf_ra",
                  "source_name": "Resident Advisor SF (RA)",
                  "fetched_at": "2026-08-28T22:15:14.237667Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_1015_folsom|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_56b80944600b",
              "venue_id": "venue_montgomery_theater",
              "title": "You Should Be Dancing",
              "event_time": "Sep 4, 2026 @ 8:00pm",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-09-04T20:00:00",
              "event_date": "2026-09-04",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "You Should Be Dancing is the most explosive Bee Gees experience in North America. Recognized for their flair and onstage charisma, You Should Be Dancing effortlessly recreates the iconic Bee Gees sound while elevating the onstage visual experience.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Varies (Check website for details)",
              "url": "https://events.timely.fun/jc0x91t0/event/78237749",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-07-14T18:35:38.812814Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_55a96fe800f0",
              "venue_id": "venue_the_independent",
              "title": "Tonic Walter",
              "event_time": "sep 4 9pm",
              "venue_name": "The Independent",
              "event_start": "2026-09-04T21:00:00",
              "event_date": "2026-09-04",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List US TOUR 2026 Tonic Walter Fri, Sep 4 Doors: 8:30 pm | Show: 9:00 pm 18 and up Please note - there is a delivery delay set for 2 weeks prior to show. Buy Tickets Share + Google Calendar Related Events FOUR SQUARE VOL. 2 – A HIP-HOP VIDEO GAME LIVE THEATRE EXPERIENCE Aug 14 Buy Tickets Krooked Kings Aug 15 Buy Tickets Artists Tonic Walter Back to Event List Upcoming Events FOUR SQUARE VOL. 2 – A HIP-HOP VIDEO GAME LIVE THEATRE EXPERIENCE Fri Aug 14 Krooked Kings Sat Aug 15 Angine de Poitrine Wed Aug 19 G Flip Thu Aug 20 Niina Soleil Fri Aug 21 Pearl & The Oysters Sat Aug 22 Son Rompe Pera Thu Aug 27 Wax + DJ Hoppa Fri Aug 28 Brenn! Sat Aug 29 Tonic Walter Fri Sep 4 The Emo Night Tour Sat Sep 5 PawPaw Rod Tue Sep 8",
              "event_types": [
                "live_music"
              ],
              "price_info": "$31.55",
              "url": "https://www.theindependentsf.com/tm-event/tonic-walter/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-08-06T10:17:29.684700Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-08-28T18:01:37.988102Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_resident_advisor_sf_ra",
                  "source_name": "Resident Advisor SF (RA)",
                  "fetched_at": "2026-08-28T22:15:14.237667Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_independent|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_d27854ebc474",
              "venue_id": "venue_ivy_room",
              "title": "Brigata Vendetta, OBCT & Raw Force",
              "event_time": "Friday Sep 4 7:00 PM",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "chaotic tendencies presents - genre- punk, oi!",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/190029",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-07-31T12:32:32.572739Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_34ecb06193bd",
              "venue_id": "venue_halcyon",
              "title": "Adapter, Jordan Michael, 2hottie",
              "event_time": "09/4/2026 10:00pm",
              "venue_name": "Halcyon",
              "event_start": "2026-09-04T22:00:00",
              "event_date": "2026-09-04",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "ADAPTER the dynamic Italian artist makes his SF debut showcasing his groove-oriented productions blending classic house and techno with punchy basslines! JORDAN MICHAEL + 2HOTTIE support the rapidly rising star!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$12",
              "url": "https://link.dice.fm/Gab196175e10?pid=d6c08999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-07-31T15:20:21.495651Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-06T11:58:22.520624Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ca52bb49173a",
              "venue_id": "venue_ashby_stage",
              "title": "JENNIFER KING",
              "event_time": "FRIDAY, SEPTEMBER 4",
              "venue_name": "Ashby Stage",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "10:30 AM – 12 PM\nSHOTGUN STUDIOS @ 1201 UNIVERSITY AVE. INTERVIEW & DISCUSSION WITH JENNIFER KING, AN INTERNATIONAL THEATER DIRECTOR WHOSE WORK SPANS SHAKESPEAREAN REIMAGININGS, CONTEMPORARY DRAMA, AND THE DEVELOPMENT OF NEW WORK. SHE WAS RECENTLY APPOINTED ARTISTIC DIRECTOR OF AURORA THEATRE COMPANY.",
              "event_types": [
                "workshop",
                "theater"
              ],
              "price_info": "",
              "url": "https://shotgunplayers.org/show/miriam/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_shotgun_players",
                  "source_name": "Shotgun Players",
                  "fetched_at": "2026-08-07T18:37:31.657786Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-08-11T10:27:29.184721Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashby_stage|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_e6305b387aec",
              "venue_id": "venue_the_chapel",
              "title": "Sister Nancyt & The Steady Rock Band",
              "event_time": "sep 4 9pm",
              "venue_name": "The Chapel",
              "event_start": "2026-09-04T21:00:00",
              "event_date": "2026-09-04",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "Jamaican dancehall pioneer Sister Nancy performs live with The Steady Rock Band and opening support from DJ Sep (Dub Mission).",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$58.14",
              "url": "https://wl.seetickets.us/event/sister-nancy-and-the-steady-rock-band/701232?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-08-15T10:17:40.416260Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_a0ec2278e93e",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Friday Happy Hour | September 4",
              "event_time": "2026-09-04T16:30:00",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-09-04T16:30:00",
              "event_date": "2026-09-04",
              "venue_address": "San Francisco, CA 94118",
              "description": "Free outdoor concert featuring Andre Cruz & The Black Diamond Rhythm Band and Frisco Gang DJs.",
              "event_types": [
                "dj_party",
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Free",
              "url": "https://illuminate.org/venues/golden-gate-bandshell/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_illuminate_bandshell",
                  "source_name": "Illuminate Bandshell",
                  "fetched_at": "2026-08-12T11:19:48.156102Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_illuminate",
                  "source_name": "Illuminate",
                  "fetched_at": "2026-08-22T21:28:37.918625Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-08-30T10:14:46.192640Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_cbf06b4d77cf",
              "venue_id": "venue_924_gilman",
              "title": "Punk Yoga",
              "event_time": "sep 4 1:15pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-09-04T13:15:00",
              "event_date": "2026-09-04",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "all ages",
              "event_types": [
                "live_music",
                "rock",
                "workshop"
              ],
              "price_info": "$5",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_924_gilman|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_2f800b709b83",
              "venue_id": "venue_stay_gold_deli",
              "title": "Throat Rip, Se Vende, Arvspex, Mugslug",
              "event_time": "sep 4 8:30pm",
              "venue_name": "Stay Gold Deli",
              "event_start": "2026-09-04T20:30:00",
              "event_date": "2026-09-04",
              "venue_address": "2635 San Pablo Ave, Oakland, CA 94612",
              "description": "Live punk and hardcore performance featuring Throat Rip, Se Vende, Arüspex, and Mugslug at Stay Gold Deli. All ages.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10",
              "url": "http://www.foopee.com/punk/the-list/by-club/Stay_Gold_Deli.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_stay_gold_deli",
                  "source_name": "Stay Gold Deli",
                  "fetched_at": "2026-08-31T16:43:30.435878Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_stay_gold_deli|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_5f0c91dc8833",
              "venue_id": "venue_spats_berkeley",
              "title": "Velvet Grave, Rosewood, Side Eye",
              "event_time": "sep 4 8pm",
              "venue_name": "Spats",
              "event_start": "2026-09-04T20:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1974 Shattuck Avenue, Berkeley, CA 94704",
              "description": "all ages",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_spats_berkeley|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_f79081348776",
              "venue_id": "venue_rickshaw_stop",
              "title": "Alan Vuong, Elias",
              "event_time": "sep 4 8pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-09-04T20:00:00",
              "event_date": "2026-09-04",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Supporting Talent: elias, Last Known Species",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "All Ages, $20.00-$25.00",
              "url": "https://wl.seetickets.us/event/alan-vuong/694428?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-08-21T10:43:41.503272Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_744e5e792c86",
              "venue_id": "venue_the_midway",
              "title": "Black Tiger Sex Machine & Kai Wachi",
              "event_time": "2026/09/04 Fri: Sep 4 (6pm-11pm)",
              "venue_name": "The Midway",
              "event_start": "2026-09-04T18:00:00",
              "event_date": "2026-09-04",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "INDOORS & OUTDOORS",
              "event_types": [
                "dj_party"
              ],
              "price_info": "TICKETS",
              "url": "https://www.tixr.com/groups/midwaysf/events/black-tiger-sex-machine-kai-wachi-block-party-193518",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-08-16T10:21:31.764492Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_532a62590d5c",
              "venue_id": "venue_the_midway",
              "title": "Costa, iiifirst & Hiraeth",
              "event_time": "2026/09/04 Fri: Sep 4 (10pm-2am)",
              "venue_name": "The Midway",
              "event_start": "2026-09-04T22:00:00",
              "event_date": "2026-09-04",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "dubstep, drum and bass, EDM",
              "event_types": [
                "electronic",
                "live_music",
                "festival"
              ],
              "price_info": "TICKETS",
              "url": "https://www.tixr.com/groups/midwaysf/events/costa-195355",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-08-16T10:21:31.764492Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5a129d5bfe87",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Hipsteria",
              "event_time": "September 4 @ 6:00 pm - 9:00 pm",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-04T18:00:00",
              "event_date": "2026-09-04",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Hipsteria is one of San Francisco’s favorite jazz, soul and party bands! Members of Hipsteria have included some of music’s legendary musicians! Featuring “Tender Tim” on drums and some vocals Hipsteria plays every Friday at Etcetera Wine bar.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/hipsteria-2/2026-09-04/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-08-17T15:04:14.240114Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-08-27T10:29:06.480626Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5b01d686c62b",
              "venue_id": "venue_el_rio",
              "title": "A Family Affair: Queer 90s-00s Party",
              "event_time": "2026-09-04T21:00:00",
              "venue_name": "El Rio",
              "event_start": "2026-09-04T21:00:00",
              "event_date": "2026-09-04",
              "venue_address": "3158 Mission St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$5",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_el_rio",
                  "source_name": "El Rio",
                  "fetched_at": "2026-08-20T11:56:50.314808Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_el_rio|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0dbfedd1fa3d",
              "venue_id": "venue_f8",
              "title": "HYPERDRIVE with KAYA!",
              "event_time": "2026-09-04T21:00:00",
              "venue_name": "F8",
              "event_start": "2026-09-04T21:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "Rise Collective and F8 present Houston-based bass house producer KAYA!, alongside Home by Dawn, Kattastrophix, Riggs.wav, Kyree Creeks, 1kcuts, Ayu Angel, Fyzn, and Aqueous across two stages.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10-25 | 21+",
              "url": "https://ra.co/events/1994965359092",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-08-20T11:57:49.841413Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_f8|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_22f862ea5b35",
              "venue_id": "venue_sap_center",
              "title": "Monster Jam",
              "event_time": "2026-09-04 2026-09-05T13:00:00",
              "venue_name": "SAP Center",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://www.sapcenter.com/events/monster-jam",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-08-20T12:59:28.269789Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sap_center|2026-09-04",
              "run_id": "run_f93879bfa6c1",
              "run_label": "Monster Jam, Sep 4 – Sep 6",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_60e19d5295ae",
              "venue_id": "venue_the_riptide",
              "title": "The Tide is High",
              "event_time": "September 4 9:30 PM - September 5 1:30 AM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-04T21:30:00",
              "event_date": "2026-09-04",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "DJ Chaos (AKA Herman) and Dion bring boxes of 7 inch records of Ska, Rocksteady, Reggae and Dub. You'll hear tunes from famous labels such as Studio 1, Treasure Isle, Trojan, Channel 1, Wackies and many more.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4b4b99171fb1",
              "venue_id": "venue_gray_area",
              "title": "San Francisco Cinematheque",
              "event_time": "09/04/2026",
              "venue_name": "Gray Area",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "2665 Mission St, San Francisco, CA 94110",
              "description": "Founded by filmmaker Bruce Baillie in 1961, San Francisco Cinematheque is the Bay Area’s premier venue for avant-garde/experimental , underground and personally expressive film , video and performance work . In its dedication to exhibiting works of aesthetically radical cinema from all historical eras and geo-political locales, Cinematheque cultivates the international field of artist-made cinema, inspiring aesthetic dialog, and critical discourse and encouraging appreciation across the broader cultural landscape. Inaugurated in 2010, CROSSROADS is San Francisco Cinematheque’s annual film festival, dedicated to the exhibition of contemporary avant-garde film, video and performance work. CROSSROADS is curated annually by Cinematheque’s Artistic Director Steve Polta.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://grayarea.org/event/sf-cinematheque-crossroads-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_gray_area",
                  "source_name": "Gray Area",
                  "fetched_at": "2026-08-22T11:08:17.231968Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_gray_area|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_afc14b77f596",
              "venue_id": "venue_rio_theatre_sc",
              "title": "Ocean Film Festival World Tour",
              "event_time": "2026-09-04",
              "venue_name": "Rio Theatre",
              "event_start": "2026-09-04T20:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1205 Soquel Ave, Santa Cruz, CA 95062",
              "description": "Supporting Save our ShoresDive into the Depths of the 13th Annual Ocean Film Festival World TourThe Ocean Film Festival World Tour, now in its 13th year, is set to make a splash across the globe in 2026, returning with a powerful and visually stunning line-up of films that celebrate the ocean from every angle — above the surface, beneath the waves, and deep into the stories that connect us all to the sea.This year’s tour promises an unforgettable night out for ocean lovers, featuring six remarkable films from around the globe.  From high-stakes adventure and record-breaking journeys to intimate portraits of marine life and environmental restoration, the 2026 program is packed with breathtaking cinematography, inspiring characters, and a deep respect for the ocean and the communities shaped by it.One of the standout films in the 2026 program is The Raftsmen, an epic story of courage and endurance. Twelve unlikely adventurers from seven different countries come together to attempt a feat few would dare imagine — crossing the world’s largest ocean on three handmade wooden rafts, guided only by the sun and stars. Battling storms, starvation, and the psychological toll of life at sea, their six-month journey remains the longest raft expedition ever completed. Now, fifty years later, the original 16mm footage has been beautifully restored into 4K, allowing modern audiences to witness the sheer scale of this once-in-a-lifetime ocean odyssey.Jemima Robinson, Founder and CEO of the Ocean Film Festival World Tour, says the 2026 season continues the festival’s mission to share ocean stories that move, inspire and connect audiences.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n  \n\n\n\n\n  \n\n\n\n  \n  \n    \n  \n\n\n    \n\n\n\n  \n\n\n\n\n  THE RAFTSMEN (tour edit) Australia : 48 minutesTwelve misfits from seven countries unite on an explorer’s crazy dream. Their aim is to cross the world’s largest ocean on three handmade wooden rafts with only the stars and sun to guide them. Battling storms, sharks and psychological demons, their epic six months at sea remains the world’s longest ever raft journey. Now, fifty years on, their original 16mm footage has been beautifully remastered into 4K and the surviving raftsmen finally share their incredible story.THE KELP COLLECTOR Australia : 5 minutesAfter decades dedicated to a career in science, Sandy Webb has found a new passion in retirement: meticulously collecting and cataloguing the diverse algae species that inhabit the waters of Port Phillip Bay near her Williamstown home. With the precision of a scientist and the eye of an artist, she transforms her marine discoveries into exquisite pressed seaweed specimens. This intimate portrait reveals how Sandy's dedication to documenting local marine life connects her more deeply to the coastal environment she calls home.STONE BITER: SAVING THE ARCTIC SEA FORESTS Norway: 20 minutesWhen an Italian photographer moves to Northern Norway, he carries a dream: to explore the icy Arctic waters and film the iconic wolffish amongst lush kelp forests. But beneath the surface, he finds a stark reality - an ocean floor stripped bare, where the once-thriving sea forests have nearly vanished.As Ismaele learns to navigate the cold, unfamiliar sea, he unravels the mystery of the missing kelp. Along the way, he meets scientists, volunteers, and local experts who refuse to give up on the ocean they love. Together, they’re building a new kind of movement rooted in resilience, restoration, and hope.ANTARCTICA: DOMAIN ONE Argentina: 27 minutesNarrated by surfing legend Kelly Slater, this stunning documentary follows two Argentinian brothers on an extraordinary expedition to the end of the Earth. United by their passion for riding waves and protecting our oceans, the Gauchos del Mar embark on a sailing, trekking, and surfing adventure through Antarctica's breathtaking landscapes.This is more than a film about adventure. It's a powerful rallying cry for the conservation of our planet's last great frontier – and a reminder that what happens in Antarctica affects us all. Will you answer the call?A DRAGON’S DANCE Australia: 5 minutesBeneath the waves of Australia's Great Southern Reef, a creature of myth and wonder performs an ancient ritual. This mesmerising short film follows the enchanting lifecycle of the leafy sea dragon, one of the ocean's most extraordinary and elusive inhabitants. Cloaked in nature's most intricate disguise, these delicate dragons drift through their kelp kingdom with a grace that defies their struggle to survive.Prepare to be spellbound by nature's most elegant dancer.TAINÁBrazil: 15 minutesThe life story of Tainá Hinckel, a prominent Brazilian professional surfer, unfolds through dives into her memories, woven together with intimate talks, old photographs, and letters written to herself. From her small town childhood to the challenges of being a woman in surfing, Tainá faces her greatest dream and challenge: competing for her first Olympic Game in one of the most dangerous waves in the world's surfing, at Teahupoo in Tahiti.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n  \n\n\n\n\n  \n\n\n\n  \n  \n    \n  \n\n\n    \n\n\n\n  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n\n    \n  \n    \n\n      \n\n      \n        \n          \n        \n        \n\n        \n          \n            \n          \n            \n                \n                \n                \n                \n                \n                \n                \n                \n\n            \n          \n        \n          \n        \n\n        \n      \n        \n      \n\n    \n  \n\n\n  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n\n    \n  \n    \n\n      \n\n      \n        \n          \n        \n        \n\n        \n          \n            \n          \n            \n                \n                \n                \n                \n                \n                \n                \n                \n\n            \n          \n        \n          \n        \n\n        \n      \n        \n      \n\n    \n  \n\n\n  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n\n    \n  \n    \n\n      \n\n      \n        \n          \n        \n        \n\n        \n          \n            \n          \n            \n                \n                \n                \n                \n                \n                \n                \n                \n\n            \n          \n        \n          \n        \n\n        \n      \n        \n      \n\n    \n  \n\n\n  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n\n    \n  \n    \n\n      \n\n      \n        \n          \n        \n        \n\n        \n          \n            \n          \n            \n                \n                \n                \n                \n                \n                \n                \n                \n\n            \n          \n        \n          \n        \n\n        \n      \n        \n      \n\n    \n  \n\n\n  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n\n    \n  \n    \n\n      \n\n      \n        \n          \n        \n        \n\n        \n          \n            \n          \n            \n                \n                \n                \n                \n                \n                \n                \n                \n\n            \n          \n        \n          \n        \n\n        \n      \n        \n      \n\n    \n  \n\n\n  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n\n    \n  \n    \n\n      \n\n      \n        \n          \n        \n        \n\n        \n          \n            \n          \n            \n                \n                \n                \n                \n                \n                \n                \n                \n\n            \n          \n        \n          \n        \n\n        \n      \n        \n      \n\n    \n  \n\n\n  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n\n    \n  \n    \n\n      \n\n      \n        \n          \n        \n        \n\n        \n          \n            \n          \n            \n                \n                \n                \n                \n                \n                \n                \n                \n\n            \n          \n        \n          \n        \n\n        \n      \n        \n      \n\n    \n  \n\n\n  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n\n    \n  \n    \n\n      \n\n      \n        \n          \n        \n        \n\n        \n          \n            \n          \n            \n                \n                \n                \n                \n                \n                \n                \n                \n\n            \n          \n        \n          \n        \n\n        \n      \n        \n      \n\n    \n  \n\n\n  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n\n    \n  \n    \n\n      \n\n      \n        \n          \n        \n        \n\n        \n          \n            \n          \n            \n                \n                \n                \n                \n                \n                \n                \n                \n\n            \n          \n        \n          \n        \n\n        \n      \n        \n      \n\n    \n  \n\n\n  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n\n    \n  \n    \n\n      \n\n      \n        \n          \n        \n        \n\n        \n          \n            \n          \n            \n                \n                \n                \n                \n                \n                \n                \n                \n\n            \n          \n        \n          \n        \n\n        \n      \n        \n      \n\n    \n  \n\n\n  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n\n    \n  \n    \n\n      \n\n      \n        \n          \n        \n        \n\n        \n          \n            \n          \n            \n                \n                \n                \n                \n                \n                \n                \n                \n\n            \n          \n        \n          \n        \n\n        \n      \n        \n      \n\n    \n  \n\n\n  \n\n\n\n\n\n  Show time: 7:00 PM, doors 6:00 PMTickets: $22Advance tickets: www.eventbrite.comEvent website: www.oceanfilmfestivalworldtour.com",
              "event_types": [
                "film"
              ],
              "price_info": "$22",
              "url": "https://www.riotheatre.com/events-2/2026/9/4/oceanfilm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rio_theatre_sc",
                  "source_name": "Rio Theatre",
                  "fetched_at": "2026-08-22T11:37:08.858495Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_visit_santa_cruz_county",
                  "source_name": "Visit Santa Cruz County",
                  "fetched_at": "2026-08-22T18:34:05.859446Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rio_theatre_sc|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_51899937491a",
              "venue_id": "venue_crepe_place",
              "title": "Bob O'Neill's Absent Minds",
              "event_time": "2026-09-04",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-04T20:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "BOB O’NEILL’S ABSENT MINDS: Presenting original music from the extensive catalogue of singer, songwriter, guitarist Bob O'Neill. Along with Bob on vocals and guitar the band features Johnny McCullough's colorful guitar playing, Gary \"Killer\" Andrijasevich on drums and David Adams on bass.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "FREE",
              "url": "https://thecrepeplace.com/shows-list/bob-oneills-absent-minds-thursday-july-2-530-to-730pm-free-show-on-the-garden-stage",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b9e0f179f9b7",
              "venue_id": "venue_abbott_square",
              "title": "JIVE MACHINE",
              "event_time": "Friday, September 4, 2026 7:00 PM - 10:00 PM",
              "venue_name": "Abbott Square Market",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "725 Front St, Santa Cruz, CA 95060",
              "description": "Don't miss this opportunity. Horns, reggae, classic rock... it's an all out party when Jive Machine sets the stage.\n\nJive Machine takes listeners on a sonic roller coaster that fuses elements of funk, rock, and blues. The band is defined by infectious grooves, crisp horn lines, tasteful lead guitar virtuosity, and contagious energy.\n\nwww,jivemachine.com",
              "event_types": [
                "live_music",
                "rock",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.abbottsquaremarket.com/events/rb4wx2gl3rffptnl46nx3xdazym9s8",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_abbott_square",
                  "source_name": "Abbott Square Market",
                  "fetched_at": "2026-08-22T12:39:51.694804Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_abbott_square|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_30f5323dfdb2",
              "venue_id": "venue_colligan_theater",
              "title": "Puccini's Girl of the Golden West",
              "event_time": "Friday, September 4 7 – 10pm",
              "venue_name": "Colligan Theater",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1010 River St, Santa Cruz, CA 95060",
              "description": "7pm to 10pm, Puccini's Girl of the Golden West, Calendar: Colligan Events, No location, September 4, 2026",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_colligan_theater",
                  "source_name": "Colligan Theater",
                  "fetched_at": "2026-08-22T12:44:15.808279Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_colligan_theater|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8f774aaa45fb",
              "venue_id": "venue_thee_stork_club",
              "title": "Queer Club Classics w/ DJ Louie El Ser",
              "event_time": "September 04, 2026 9:00PM",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-09-04T21:00:00",
              "event_date": "2026-09-04",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "[REDACTED] Fest presented by No Time Gigs & Digital Regress. Uranium Club, Good Flying Birds, Container, Cube and more! 09/19/2026 4:00 PM at Thee Stork Club Add",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://wl.seetickets.us/event/queer-club-classics-w-dj-louie-el-ser/700254?afflky=TheeStorkClub",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-08-22T14:35:18.029489Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f3d931ae60d3",
              "venue_id": "venue_verdi_club",
              "title": "SF Stand-Up Comedy Competition",
              "event_time": "2026-09-04T19:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "50th San Francisco Stand-Up Comedy Competition",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "https://www.verdiclub.net/events-calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-08-22T14:55:24.428239Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_verdi_club|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e0d4dc78b4ee",
              "venue_id": "venue_crows_nest_sc",
              "title": "LITTLE BIG BAND",
              "event_time": "Friday September 4th 08:00 PM",
              "venue_name": "The Crow's Nest",
              "event_start": "2026-09-04T20:00:00",
              "event_date": "2026-09-04",
              "venue_address": "2218 East Cliff Dr, Santa Cruz, CA 95062",
              "description": "Friday September 4th Swing, blues, pop, jazz and Latin Starts at 08:00 PM",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$7 cover",
              "url": "https://www.facebook.com/p/The-Little-Big-Band-100089056272038/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crows_nest_sc",
                  "source_name": "The Crow's Nest",
                  "fetched_at": "2026-08-22T15:19:13.909618Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crows_nest_sc|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ce462e48e907",
              "venue_id": "venue_sc_civic_auditorium",
              "title": "43rd Annual Fiddle & Dance Extravaganza",
              "event_time": "Sep 04, 2026",
              "venue_name": "Santa Cruz Civic Auditorium",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "307 Church St, Santa Cruz, CA 95060",
              "description": "Alasdair Fraser’s 43rd Annual Fiddle & Dance Extravaganza\n“A Night at the Dance”\nScottish Ceilidh Dance\nWith Alasdair Fraser, Rakish, and the Valley of the Moon Ceilidh Band\n\nNew England Contra\nwith Rodney Miller\n\nFiesta Castellana\nwith San Miguel Fraser",
              "event_types": [
                "live_music",
                "folk",
                "dance",
                "festival"
              ],
              "price_info": "",
              "url": "https://www.santacruzca.gov/Government/City-Departments/Parks-Recreation/Civic-Auditorium/Box-Office/Civic-Events/2026-Fiddle-and-Dance-Extravaganza",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sc_civic_auditorium",
                  "source_name": "Santa Cruz Civic Auditorium",
                  "fetched_at": "2026-08-22T15:24:21.454854Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sc_civic_auditorium|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b41fa57841d5",
              "venue_id": "venue_woodhouse_brewing",
              "title": "CLOUD CITY",
              "event_time": "Friday, September 4, 2026 7:00 PM",
              "venue_name": "Woodhouse Blending & Brewing",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "119 Madrone St, Santa Cruz, CA 95060",
              "description": "CLOUD CITY IS A SANTA CRUZ TRIO BLENDING ROCK, LIVEELECTRONICS, AND ETHEREAL VOCALS INTO A HYPNOTIC, EVER-SHIFTING SOUND. RAW ENERGY MEETS PSYCHEDELIC GUITARSAND GROOVE-HEAVY RHYTHMS, WITH REAL-TIME SAMPLING THATEVOLVES LIVE, BLURRING STUDIO AND IMPROV. MAKING MUSICSINCE 2017, THEY DRAW ON CALIFORNIA'S CENTRAL COASTMUSIC SCENE AND BEYOND WHILE CARVING OUT A SOUNDENTIRELY THEIR OWN.",
              "event_types": [
                "live_music",
                "rock",
                "electronic"
              ],
              "price_info": "",
              "url": "https://www.woodhousebrews.com/events/2026/9/4/cloud-city",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_woodhouse_brewing",
                  "source_name": "Woodhouse Blending & Brewing",
                  "fetched_at": "2026-08-22T15:55:04.316453Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_woodhouse_brewing|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ff9f6f9793bd",
              "venue_id": "venue_radius_gallery",
              "title": "First Friday",
              "event_time": "Sept 4 5:00-8:00pm",
              "venue_name": "Radius Gallery",
              "event_start": "2026-09-04T17:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1050 River St Unit 127, Santa Cruz, CA 95060",
              "description": "First Friday 5:00-8:00pm",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://firstfridaysantacruz.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_radius_gallery",
                  "source_name": "Radius Gallery",
                  "fetched_at": "2026-08-22T16:03:25.277519Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_radius_gallery|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_de720fdf4f21",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Alice for Wonderland",
              "event_time": "2026-09-04",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-04",
              "run_id": "run_304a2c902844",
              "run_label": "Alice for Wonderland, Aug 22 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_0f6ed7acb809",
              "venue_id": "venue_the_marsh_sf",
              "title": "Dan Hoyle TAK",
              "event_time": "2026-09-04",
              "venue_name": "The Marsh SF",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "Dan Hoyle’s Takes All Kinds Winner of SF Bay Area Critics Circle Award “Best Solo Performance” Live & In Person at The Marsh San Francisco Mainstage Written & Performed by Dan Hoyle Directed by Aldo Billingslea & Michael Moran Developed with Charlie Varon Online ticket sales close 2 hours before each performance, and additional tickets may be available for purchase at the door. August 1 – September 18, 2026 Select Fridays at 7:30 pm, Select Saturdays at 5:00 pm (please check ticket link for show dates and times) May 8 – 100th Performance & Post-show Talkback with Mark Follman, National Editor of Mother Jones magazine Award-winning journalist Mark Follman is the national affairs editor at Mother Jones and author of the bestselling book, “Trigger Points: Inside the Mission to Stop Mass Shootings in America” May 22 – Post-show Talkback with Arlie Hochschild, Berkeley Sociologist and author of Stolen Pride Named one of Barack Obama’s Favorite Books of 2024 and a New York Times Notable Book of the Year. For all the attempts to understand the state of American politics and the blue/red divide, we’ve ignored what economic and cultural loss can do to pride . In Stolen Pride , renowned sociologist Arlie Russell Hochschild ventures to Appalachia to uncover the “pride paradox” that has given the right’s appeals such resonance. June 6 – Post-show Talkback on The Science Behind How People’s Minds Change with UCSF Professor and Researcher Michael Geschwind Michael Geschwind, MD, PhD, is a professor of neurology at the UCSF Weill Institute for Neurosciences and a clinician-researcher at the UCSF Edward and Pearl Fein Memory and Aging Center. A behavioral neurologist, he specializes in understanding how changes in thinking, behavior, emotion, and movement reflect underlying brain changes. In his clinical work, he evaluates patients with memory disorders, rapidly progressive dementias, movement disorders, and other neurological conditions, using detailed assessments of cognition, be",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://themarsh.org/shows_and_events/marshstream/dan-hoyle-takes-all-kinds/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-08-22T17:28:42.838285Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-09-04",
              "run_id": "run_76a851d0a0e5",
              "run_label": "Dan Hoyle TAK, Aug 1 – Sep 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_894b7347cc7a",
              "venue_id": "venue_sc_museum_nat_history",
              "title": "Free Admission Day",
              "event_time": "September 4 @ 11:00 am",
              "venue_name": "Santa Cruz Museum of Natural History",
              "event_start": "2026-09-04T11:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1305 E Cliff Dr, Santa Cruz, CA 95062",
              "description": "Free Admission Day! Discover the wonders of nature at the Santa Cruz Museum of Natural History with free entry for everyone. Explore fascinating exhibits, connect with local wildlife, and make it a day of learning and fun for all ages. PLAN YOUR VISIT OUR EXHIBITS",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "https://santacruzmuseum.org/event/free-admission-day/2026-09-04/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sc_museum_nat_history",
                  "source_name": "Santa Cruz Museum of Natural History",
                  "fetched_at": "2026-08-22T19:25:35.374632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sc_museum_nat_history|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_86e094566a78",
              "venue_id": "venue_sc_museum_nat_history",
              "title": "First Friday: Migration Celebration",
              "event_time": "September 4 @ 5:00 pm",
              "venue_name": "Santa Cruz Museum of Natural History",
              "event_start": "2026-09-04T17:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1305 E Cliff Dr, Santa Cruz, CA 95062",
              "description": "This September we're celebrating all things migration! Each changing seasons brings different species to the Santa Cruz region as they search for food, breeding grounds, and safe shelter. Explore our exhibits and join us as we dive into the fascinating phenomena of migration. Enjoy FREE admission to the Museum all day with special activities from...",
              "event_types": [
                "community",
                "art"
              ],
              "price_info": "FREE",
              "url": "https://santacruzmuseum.org/event/first-friday-migration-celebration/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sc_museum_nat_history",
                  "source_name": "Santa Cruz Museum of Natural History",
                  "fetched_at": "2026-08-22T19:25:35.374632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sc_museum_nat_history|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_39131f3b5a4e",
              "venue_id": "venue_scpl_downtown",
              "title": "Movie Discussion Group @ La Selva Beach",
              "event_time": "September 04 2026 11:00am - 12:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-04T11:00:00",
              "event_date": "2026-09-04",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Sharpen your word skills and enjoy friendly competition at our Scrabble Club - fun for all levels.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15222006",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f26d5e06c531",
              "venue_id": "venue_scpl_downtown",
              "title": "Knitting @ Live Oak",
              "event_time": "September 04 2026 11:00am - 1:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-04T11:00:00",
              "event_date": "2026-09-04",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "We are knitting at Live Oak Library on Fridays.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17068428",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_928bd5d164c7",
              "venue_id": "venue_scpl_downtown",
              "title": "Preschool Story Time & Craft @ Aptos",
              "event_time": "September 04 2026 11:30am - 12:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-04T11:30:00",
              "event_date": "2026-09-04",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Join us for great stories and a fun craft. Ages 4-6",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16251515",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0b53b144f6ba",
              "venue_id": "venue_scpl_downtown",
              "title": "Jazz at the Library",
              "event_time": "September 04 2026 12:00pm - 1:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-04T12:00:00",
              "event_date": "2026-09-04",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Join us at the Downtown Library and enjoy free jazz music by local musicians.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15794139",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e710e47e4cda",
              "venue_id": "venue_scpl_downtown",
              "title": "Encompass Outreach Worker Office Hours",
              "event_time": "September 04 2026 1:00pm - 3:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-04T13:00:00",
              "event_date": "2026-09-04",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Connecting people to social services, county mental health and more.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15565215",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_330c2716cc73",
              "venue_id": "venue_scpl_downtown",
              "title": "Stress and Digestion",
              "event_time": "September 04 2026 1:30pm - 2:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-04T13:30:00",
              "event_date": "2026-09-04",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Fix Your Digestion, Boost Your Energy Learn how stress and imbalances affect digestion and discover tools to improve energy, weight, and wellbeing in this free talk with nutritionist Rebecca Hazelton.",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17071800",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_09876f377124",
              "venue_id": "venue_scpl_downtown",
              "title": "In-person Tech Help @ Branciforte",
              "event_time": "September 04 2026 2:00pm - 4:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-04T14:00:00",
              "event_date": "2026-09-04",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Are you stuck with a technology question? You can make a free appointment with a tech savvy library staff member!",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15630339",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_87ff775d6af3",
              "venue_id": "venue_scpl_downtown",
              "title": "Lego Friday Fun",
              "event_time": "September 04 2026 3:30pm - 4:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-04T15:30:00",
              "event_date": "2026-09-04",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Use your imagination and build anything you can dream! Lego and Duplo blocks will be available for children and youth to tinker with, build, explore, and creatively play! No registration necessary.",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15559937",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_16554edb550d",
              "venue_id": "venue_the_418_project",
              "title": "First Fridays",
              "event_time": "Friday, September 4, 2026\n5:00 PM - 9:00 PM",
              "venue_name": "The 418 Project",
              "event_start": "2026-09-04T17:00:00",
              "event_date": "2026-09-04",
              "venue_address": "155 S River St, Santa Cruz, CA 95060",
              "description": "From 5–9 PM - Local Artists - Vendors - Live Performances throughout the Space",
              "event_types": [
                "art",
                "live_music",
                "festival",
                "community"
              ],
              "price_info": "",
              "url": "https://the418project.org/events/first-fridays",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_418_project",
                  "source_name": "The 418 Project",
                  "fetched_at": "2026-08-22T20:30:04.363966Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_418_project|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1a691e911965",
              "venue_id": "venue_the_418_project",
              "title": "Time Will Help Us Forever",
              "event_time": "Friday, September 4, 2026\n7:00 PM - 8:00 PM",
              "venue_name": "The 418 Project",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "155 S River St, Santa Cruz, CA 95060",
              "description": "A live performance of original music accompanied by projected visuals and spoken word by Mike O'hara.",
              "event_types": [
                "live_music",
                "literary"
              ],
              "price_info": "",
              "url": "https://the418project.org/events/time-will-help-us-forever-unique-audio-visual-performance",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_418_project",
                  "source_name": "The 418 Project",
                  "fetched_at": "2026-08-22T20:30:04.363966Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_418_project|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4ec7f46f2a99",
              "venue_id": "venue_the_stud",
              "title": "Girl Dance",
              "event_time": "2026/09/04 Fri: Sep 4 (5pm-9pm)",
              "venue_name": "The Stud",
              "event_start": "2026-09-04T17:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1123 Folsom St, San Francisco, CA 94103",
              "description": "house, pop EDM",
              "event_types": [
                "dj_party"
              ],
              "price_info": "21+",
              "url": "https://ra.co/events/2514855",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_stud|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_e980142a6f41",
              "venue_id": "venue_underground_sf",
              "title": "Film Fund Rave",
              "event_time": "2026/09/04 Fri: Sep 4 (9pm-2am)",
              "venue_name": "Underground SF",
              "event_start": "2026-09-04T21:00:00",
              "event_date": "2026-09-04",
              "venue_address": "424 Haight St, San Francisco, CA 94117",
              "description": "Brain  Algae and Angels Everywhere presents... FILM FUND RAVE: An homage to queer and gay club culture throughout the decades. DJs Beverly Chills XTCEMI Dani Drag Donna Personna Inna Crisis […]",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$17.25-63.20 | 21+",
              "url": "https://ra.co/events/2514310",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_underground_sf",
                  "source_name": "Underground SF",
                  "fetched_at": "2026-09-02T11:31:17.554380Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_underground_sf|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_be894664babf",
              "venue_id": "venue_audio",
              "title": "DANNY & Cat Liu",
              "event_time": "2026/09/04 Fri: Sep 4 (9:30pm-2am)",
              "venue_name": "Audio",
              "event_start": "2026-09-04T21:30:00",
              "event_date": "2026-09-04",
              "venue_address": "316 11th St, San Francisco, CA 94103",
              "description": "D A N N Y makes his Audio debut with support from Cat Liu.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$17 | 21+",
              "url": "https://ra.co/events/2516208",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_audio",
                  "source_name": "Audio",
                  "fetched_at": "2026-08-24T10:34:16.988364Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audio|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_ef757b37d691",
              "venue_id": "venue_tommy_ts",
              "title": "TK KIRKLAND",
              "event_time": "SEPT 4th, 5th & 6th",
              "venue_name": "Tommy T's",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "TK KIRKLAND\nSEPT 4th, 5th & 6th\nTickets – Video",
              "event_types": [
                "comedy"
              ],
              "price_info": "Tickets",
              "url": "https://tommyts-com.seatengine.com/events/134187",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-08-22T21:57:38.329553Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6d9f5080dabf",
              "venue_id": "venue_the_bistro",
              "title": "Algo Mas",
              "event_time": "September 4, 2026 8pm",
              "venue_name": "The Bistro",
              "event_start": "2026-09-04T20:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1001 B St, Hayward, CA 94541",
              "description": "Musical act Algo Mas performs live at The Bistro, providing patrons with an engaging music set.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_bistro",
                  "source_name": "The Bistro",
                  "fetched_at": "2026-08-23T10:11:55.982771Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_bistro|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_af78646eedf3",
              "venue_id": "venue_sjz_break_room",
              "title": "SJZ Break Room Jazz Jam",
              "event_time": "2026-09-04T18:00:00",
              "venue_name": "SJZ Break Room",
              "event_start": "2026-09-04T18:00:00",
              "event_date": "2026-09-04",
              "venue_address": "38 S 1st St, San Jose, CA 95113",
              "description": "San Jose Jazz presents free live music with South First Friday. In September, we begin with a set by the Michael Webster Group celebrating 100 years of John Coltrane featuring some of Michael's compositions that were inspired by him. Then, our all-ages jazz jam brings out some of the finest amateur players in the South Bay. Grab your instrument and sign up, or just drop in anytime to hear some great jazz.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free Admission",
              "url": "https://sanjosejazz.org/events/sjz-break-room-jazz-jam/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sjz_break_room",
                  "source_name": "SJZ Break Room",
                  "fetched_at": "2026-08-24T10:42:21.575370Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_san_jose_jazz",
                  "source_name": "San Jose Jazz",
                  "fetched_at": "2026-08-26T11:00:46.920272Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sjz_break_room|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_de5c9b3e4ca1",
              "venue_id": "venue_the_fireside",
              "title": "Atmospheric Jungle",
              "event_time": "SEP 4 2026",
              "venue_name": "The Fireside",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Immerse yourself in deep basslines, rolling breakbeats, and spacious rhythms during an evening dedicated to atmospheric jungle and drum and bass music. Guest DJs set the vibe for an energetic night on the dance floor.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.thefiresidelounge.com/#!/e/atmospheric-jungle-sep-04-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-08-24T11:04:43.394724Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fireside|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4c967ecad51f",
              "venue_id": "venue_the_sound_room",
              "title": "Mitch Polzak & The Royal Deuces",
              "event_time": "Friday, September 4, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-09-04T19:30:00",
              "event_date": "2026-09-04",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "The big guy from out West (he’s 6’5’) performer, guitarist, singer, banjoist, songwriter, composer, entertainer, musical historian and teacher Mitch Polzak teams up with Pam Brandon, vocalist and bass player extraordinaire and Timothy Orr on drums to play a wide range of American roots music.\n\nPolzak's incredible performance skills and ability to connect with his audience, as well as his diverse background in various genres makes his sound and show so unique. Being fluent in the musical languages of Country, Rockabilly, Honky Tonk, The Bakersfield Sound, Surf, early Rock and Roll, Bluegrass, Cajun, Blues, and Truck Driving music gives Polzak the unique voice of the melting pot of the American musical experience. Mitch was inducted into The Western Swing Hall Of Fame in 2024 and has been twice nominated for The Ameripolitan Music Awards.\n\nTickets at Mitch Polzak & The Royal Deuces",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/mitch-polzak-amp-the-royal-deuces",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-08-26T10:25:42.190144Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d81a42181e1e",
              "venue_id": "venue_mr_tipples",
              "title": "The Muse Jazz Collective",
              "event_time": "2026-09-04 6:00 pm",
              "venue_name": "Mr. Tipples",
              "event_start": "2026-09-04T18:00:00",
              "event_date": "2026-09-04",
              "venue_address": "39 Fell St, San Francisco, CA 94102",
              "description": "The Muse Jazz Collective at Mr. Tipples features Tom Catanzaro on saxophone, Ian McArdle on piano, Alan Jones on bass, and Isaac Schwartz on drums. Led by Catanzaro, the Bay Area initiative brings together jazz listeners, mentors, advocates, and musicians; Catanzaro’s wide-ranging career includes performances with Diana Krall, Al Jarreau, Michael Brecker, George Benson, Christian...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$15 – $30",
              "url": "https://mrtipplessf.com/calendar/the-muse-jazz-collective-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mr_tipples",
                  "source_name": "Mr. Tipples",
                  "fetched_at": "2026-08-26T10:43:40.282466Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-08-27T10:29:06.480626Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mr_tipples|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_dde224697bad",
              "venue_id": "venue_mr_tipples",
              "title": "Daniel Herrera’s Verve Quintet",
              "event_time": "2026-09-04 9:00 pm",
              "venue_name": "Mr. Tipples",
              "event_start": "2026-09-04T21:00:00",
              "event_date": "2026-09-04",
              "venue_address": "39 Fell St, San Francisco, CA 94102",
              "description": "Daniel Herrera’s Verve Quintet brings the driving energy of 1960s hard bop to Mr. Tipples. Led by trumpeter Daniel Herrera and tenor saxophonist Andrew Dixon, the Bay Area ensemble honors the Blue Note tradition through standards and original compositions, with a sound inspired by artists including Horace Silver, Freddie Hubbard, Art Blakey, Miles Davis, John...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$15 – $30",
              "url": "https://mrtipplessf.com/calendar/daniel-herreras-verve-quintet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mr_tipples",
                  "source_name": "Mr. Tipples",
                  "fetched_at": "2026-08-26T10:43:40.282466Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-08-27T10:29:06.480626Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mr_tipples|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_27622931f063",
              "venue_id": "venue_castro_theater",
              "title": "MOONLIGHT",
              "event_time": "Friday, September 04, 2026\nDoors: 7:00 pm | Show: 8:00 pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-04T20:00:00",
              "event_date": "2026-09-04",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "We strongly believe that if we do everything we can to treat everyone as we ourselves would wish to be treated, we can succeed in our efforts to “turn everyone on” to the magic of the live music experience. That said, everyone’s case is individual and each venue and show has its own unique challenge. We encourage you to reach out to us directly to purchase tickets and make requests for special accommodations or needs for any event at any venue we present. We will do our very best to accommodate you with an ease of service that will exceed all expectations.",
              "event_types": [
                "film"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/moonlight-260904",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-08-26T11:11:53.167543Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-08-28T18:01:37.988102Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7e322473dba2",
              "venue_id": "venue_la_pena",
              "title": "Hella Black Podcast Live Show",
              "event_time": "September 4 @ 7:30 pm",
              "venue_name": "La Pena",
              "event_start": "2026-09-04T19:30:00",
              "event_date": "2026-09-04",
              "venue_address": "3105 Shattuck Ave, Berkeley, CA 94705",
              "description": "10 years of Hella Black Podcast To celebrate we will be having a 10 year anniversary FREE live show.  Mark your calendars. Friday September 4th! Come build with the home […]",
              "event_types": [
                "community",
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://lapena.org/event/hella-black-podcast-10th-anniversary-live-show/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_la_pena",
                  "source_name": "La Pena",
                  "fetched_at": "2026-08-26T11:21:24.604733Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_la_pena|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_77a50302481a",
              "venue_id": "venue_toyota_pavilion",
              "title": "Styx & Chicago: The Windy Cities Tour",
              "event_time": "2026-09-04T19:00:00",
              "venue_name": "Toyota Pavilion at Concord",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "2000 Kirker Pass Rd, Concord, CA 94521",
              "description": "Classic rock legends Styx and Chicago co-headline Toyota Pavilion at Concord on The Windy Cities Tour. The event highlights decades of arena rock anthems and horn-driven hits.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.livenation.com/event/G5vYZ9k6j9w1y/styx-chicago-the-windy-cities-tour",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_toyota_pavilion",
                  "source_name": "Toyota Pavilion at Concord",
                  "fetched_at": "2026-08-26T11:41:34.951729Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_toyota_pavilion|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_226ce5140adf",
              "venue_id": "venue_guild_theatre",
              "title": "Drink The Sea",
              "event_time": "SEP\n04\n8:00 PM",
              "venue_name": "Guild Theatre",
              "event_start": "2026-09-04T20:00:00",
              "event_date": "2026-09-04",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "DOORS OPEN: 7:00 PM • SHOW: 8:00 PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.guildtheatre.com/shows/drink-the-sea-04-sep",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-08-28T10:40:15.787828Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_guild_theatre|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fd037b8c3205",
              "venue_id": "venue_the_freight__salvage",
              "title": "Bettye LaVette",
              "event_time": "2026-09-04T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Legendary soul and blues vocalist Bettye LaVette delivers a deeply emotive, powerful performance spanning her storied musical career.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$49/$54\n(INCLUDES ALL FEES)",
              "url": "https://secure.thefreight.org/15968/15969",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7f069d6e5e0c",
              "venue_id": "venue_meyhouse",
              "title": "Larry Vuckovich: Tenor Madness",
              "event_time": "Sep 04, 2026, 5:00 PM – 8:00 PM",
              "venue_name": "Meyhouse Palo Alto",
              "event_start": "2026-09-04T17:00:00",
              "event_date": "2026-09-04",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "Larry Vuckovich: Tenor Madness – Honoring Sonny Rollins (Fri 9/4 - 5 pm) Fri, Sep 04 | Meyhouse Jazz Palo Alto Stage Pianist Larry Vuckovich honors tenor saxophone giant Sonny Rollins with outstanding New York saxophonist Steve Heckman, bassist Doug Miller, and drummer Sylvia Cuenca, celebrating the music and legacy of one of modern jazz’s defining voices. Buy Tickets Time & Location Sep 04, 2026, 5:00 PM – 8:00 PM Meyhouse Jazz Palo Alto Stage, 640 Emerson St, Palo Alto, CA 94301, USA Guests See All About the event Doors open: 5:00 PM Show: 6:30 PM Sonny Rollins is a tenor saxophone giant who came up in the modern jazz era. Sonny creatively incorporated the original bebop saxophone style invented by alto saxophonist Charlie Parker and transferred it to tenor saxophone. John Coltrane , the other modern-era tenor giant, followed Sonny's footsteps and recorded with him an exciting duet on the selection “Tenor Madness” —the only time they played together in the studio. Sonny Rollins recorded earlier with Miles Davis , and the two of them formed a close musical bond. This evening's music will be something to be remembered. Outstanding New York saxophonist Steve Heckman , who knows closely and will interpret the music of Sonny Rollins, will be accompanied by the powerful Larry Vuckovich Trio , including Doug Miller on bass and Sylvia Cuenca on drums. Show More Tickets Ticket type Early Bird General Admission More info Limited quantity tickets for customers who buy early Price $38.00 +$0.95 ticket service fee Quantity 0 Ticket type General Admission Price $48.00 +$1.20 ticket service fee Quantity 0 Total $0.00 Checkout Share this event",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.meyhousejazz.com/event-details/larry-vuckovich-tenor-madness-honoring-sonny-rollins-fri-9-4-5-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Palo Alto",
                  "fetched_at": "2026-08-28T12:28:47.745590Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_meyhouse|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f9a568e5a68b",
              "venue_id": "venue_meyhouse",
              "title": "Larry Vuckovich: Tenor Madness",
              "event_time": "Sep 04, 2026, 8:00 PM – 10:00 PM",
              "venue_name": "Meyhouse Palo Alto",
              "event_start": "2026-09-04T20:00:00",
              "event_date": "2026-09-04",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "Larry Vuckovich: Tenor Madness – Honoring Sonny Rollins (Fri 9/4 - 8 pm) Fri, Sep 04 | Meyhouse Jazz Palo Alto Stage Pianist Larry Vuckovich honors tenor saxophone giant Sonny Rollins with outstanding New York saxophonist Steve Heckman, bassist Doug Miller, and drummer Sylvia Cuenca, celebrating the music and legacy of one of modern jazz’s defining voices. Buy Tickets Time & Location Sep 04, 2026, 8:00 PM – 10:00 PM Meyhouse Jazz Palo Alto Stage, 640 Emerson St, Palo Alto, CA 94301, USA Guests + 1 other guests About the event Doors open: 8:00 PM Show: 8:30 PM Sonny Rollins is a tenor saxophone giant who came up in the modern jazz era. Sonny creatively incorporated the original bebop saxophone style invented by alto saxophonist Charlie Parker and transferred it to tenor saxophone. John Coltrane , the other modern-era tenor giant, followed Sonny's footsteps and recorded with him an exciting duet on the selection “Tenor Madness” —the only time they played together in the studio. Sonny Rollins recorded earlier with Miles Davis , and the two of them formed a close musical bond. This evening's music will be something to be remembered. Outstanding New York saxophonist Steve Heckman , who knows closely and will interpret the music of Sonny Rollins, will be accompanied by the powerful Larry Vuckovich Trio , including Doug Miller on bass and Sylvia Cuenca on drums. Show More Tickets Ticket type Early Bird General Admission More info Limited quantity tickets for customers who buy early Price $38.00 +$0.95 ticket service fee Quantity 0 Ticket type General Admission Price $48.00 +$1.20 ticket service fee Quantity 0 Total $0.00 Checkout Share this event",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.meyhousejazz.com/event-details/larry-vuckovich-tenor-madness-honoring-sonny-rollins-fri-9-4-8-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Palo Alto",
                  "fetched_at": "2026-08-28T12:28:47.745590Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_meyhouse|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f6fe60d6fbcc",
              "venue_id": "venue_sfjazz_miner",
              "title": "Emmet Cohen Quintet: Miles & Coltrane",
              "event_time": "2026-09-04 7:30 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-09-04T19:30:00",
              "event_date": "2026-09-04",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Members Only\n\nLivestream Only",
              "event_types": [
                "live_music",
                "jazz",
                "livestream"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/athome/fridays-live/emmet-cohen-quintet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_2d01c4ba8c4c",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Nikita Malinin & Rainbow Eclipse",
              "event_time": "2026-09-04 7:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "Other Dimensions in Sound is our Friday music series curated and hosted by Boohaabian multi reed player extraordinare David Boyce. Each week David will be inviting different musical guests to join him in our galeria for a night of musical medicina.\n\nTonight we have a double dose of sonic sustenance featuring Nikita Malinin on clarinet(1st set) and Rainbow Eclipse(Nader-modular synthesizer and David Boyce-saxes and efx) playing the 2nd set.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/cjs9gwyapj8scpkd3tazbc7t2k3pmx",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-08-28T14:05:33.197491Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-31T10:04:42.136151Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8058421f2804",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-09-04",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-09-04",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1c14eb525cd7",
              "venue_id": "venue_the_cats",
              "title": "The Jokers",
              "event_time": "2026-09-04 7:00 PM – 10:00 PM",
              "venue_name": "The Cats",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "17533 Santa Cruz Hwy, Los Gatos, CA 95033",
              "description": "« All Events The Jokers September 4 @ 7:00 PM – 10:00 PM Over the past several decades, The Jokers have won over the hearts of music lovers of all ages. Performing hundreds of popular classic rock songs at a variety of venues, this talented high energy classic rock band has earned the admiration and affection of critics and fans alike. The Cats at Los Gatos 17533 Santa Cruz Hwy Los Gatos , CA 95033 United States + Google Map (408) 354-3060 View Venue Website About The Cats Add to calendar Google Calendar iCalendar Outlook 365 Outlook Live Leave a Reply Cancel reply Your email address will not be published. Required fields are marked * Comment * Name* Email* Website Save my name, email, and website in this browser for the next time I comment. Δ Event Navigation « Harmony Lane Blue Blossom »",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.thecatslosgatos.com/event/the-jokers-4/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_cats",
                  "source_name": "The Cats",
                  "fetched_at": "2026-08-28T15:00:29.173610Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_cats|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4e3a3fb1cbab",
              "venue_id": "venue_dawn_club",
              "title": "AZURE MCCALL",
              "event_time": "Friday, September 4, 2026 8:00 PM 11:59 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-09-04T20:00:00",
              "event_date": "2026-09-04",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "McCall, Hawaii’s first lady of jazz is a multi-award winning vocalist. She is heir to the vocal tradition of Sarah Vaughan, Carmen McRae and Ella Fitzgerald. Her warmth and sense of humor fuel every interpretation. After releasing her first CD ‘Body and Soul’ she was asked by the great bassist Ray Brown to be his vocalist on tour. Of course, she accepted, beginning an incredible jazz journey – school was in! Soon after, Azure became the first singer to work with Freddie Hubbard’s band. Additional collaborators include Frank Morgan, Tennyson Stephens, Joe Lovano, Geoffrey Keezer, Curtis Lundy, Dizzy Gillespie and many more. In 2008, President Barack Obama asked her to perform at his pre-election party. “That’s why he won,” Azure says (smiling). Azure became the ‘Jazz Diva’ for Celebrity and Royal Caribbean Cruises. She has traveled to more than 50 countries including, Greece, Germany, Russia, and Italy- just to name a few.\n\n\n  \n#block-5c9fb3b2f240c2dda7bc {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n\n\n  }\n\n  #block-5c9fb3b2f240c2dda7bc .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-5c9fb3b2f240c2dda7bc {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-5c9fb3b2f240c2dda7bc {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-5c9fb3b2f240c2dda7bc {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-5c9fb3b2f240c2dda7bc {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-5c9fb3b2f240c2dda7bc .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.dawnclub.com/music/1onhhsjq53k5uofqbb1g8sslma85s8-2h3mk-rjgry-xaype-sww2t-tcmx3-74f4w-lcnsj-m8whx-az7gp-ya2m7-f9p73-4lxfb",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-08-28T15:32:50.415811Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-08-30T10:45:19.995654Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d4cf1401b9bb",
              "venue_id": "venue_omca",
              "title": "PHER",
              "event_time": "2026-09-04T17:00:00",
              "venue_name": "OMCA",
              "event_start": "2026-09-04T17:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1000 Oak St, Oakland, CA 94607",
              "description": "This Friday Night at OMCA, Oakland-born vocalist and songwriter PHER brings his soulful sound to the Garden Stage with a powerful live performance. Blending contemporary R&B, jazz, and soul with heartfelt storytelling, the three-time Grammy-winning collaborator delivers an uplifting set of original music, reimagined classics, and joyful grooves that invite audiences to sing, reflect, and celebrate together.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Free",
              "url": "https://museumca.org/event/friday-nights-at-omca-with-pher/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_omca",
                  "source_name": "OMCA",
                  "fetched_at": "2026-08-28T16:49:24.654558Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_omca|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2dcbe4c471b5",
              "venue_id": "venue_meyhouse_san_ramon",
              "title": "Kai Lyons",
              "event_time": "Fri, Sep 04 5 pm",
              "venue_name": "Meyhouse San Ramon",
              "event_start": "2026-09-04T17:00:00",
              "event_date": "2026-09-04",
              "venue_address": "6000 Bollinger Canyon Rd, San Ramon, CA 94583",
              "description": "Kai Lyons: A Night in Havana featuring José Andrés “El Sinsonte” Rodríguez (Fri 9/4 - 5 pm) Fri, Sep 04 | Meyhouse Jazz San Ramon Experience the spirit of Havana with award-winning tresero Kai Lyons and an all-star Bay Area ensemble performing traditional Cuban music, Latin jazz, romantic boleros, and high-energy changüí. Buy Tickets Time & Location Sep 04, 2026, 5:00 PM – 7:50 PM Meyhouse Jazz San Ramon, 6000 Bollinger Canyon Rd suite 1505, San Ramon, CA 94583, USA About the event Doors open: 5:00 PM Show: 6:30 PM Step into the rhythm and soul of Cuba with Kai Lyons’ A Night in Havana, an evening of traditional Cuban music, authentic Latin jazz, romantic boleros, and high-energy changüí from eastern Cuba. Led by Kai Lyons, winner of the 2022 Chito Latamblet Award for Best Tresero at the National Changüí Festival of Guantánamo, Cuba, this special edition of A Night in Havana brings together a remarkable group of musicians with deep roots in Cuban musical traditions. Featured on lead vocals is José Andrés “El Sinsonte” Rodríguez, a celebrated Cuban singer and composer from Guantánamo and a leading voice in the changüí tradition. Known for his powerful vocals, charismatic stage presence, and mastery of improvised singing, José Andrés brings the sound of eastern Cuba directly to the stage, drawing from a musical tradition passed down through generations. His career has been closely connected to Grupo… Show More Tickets Ticket type Stage Side More info Up-close seating experience near the performance Price $35.00 +$0.88 ticket service fee Quantity 0 Ticket type Standard Seating More info Standard seating with a full view of the show Price $24.00 +$0.60 ticket service fee Quantity 0 Total $0.00 Checkout Share this event",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.meyhousejazz.com/event-details/kai-lyons-a-night-in-havana-featuring-jose-andres-el-sinsonte-rodriguez-fri-9-4-5-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse_san_ramon",
                  "source_name": "Meyhouse San Ramon",
                  "fetched_at": "2026-08-28T17:52:26.464636Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_meyhouse_san_ramon|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bd7d77481b3f",
              "venue_id": "venue_meyhouse_san_ramon",
              "title": "Kai Lyons",
              "event_time": "Fri, Sep 04 8 pm",
              "venue_name": "Meyhouse San Ramon",
              "event_start": "2026-09-04T20:00:00",
              "event_date": "2026-09-04",
              "venue_address": "6000 Bollinger Canyon Rd, San Ramon, CA 94583",
              "description": "Kai Lyons: A Night in Havana featuring José Andrés “El Sinsonte” Rodríguez (Fri 9/4 - 8 pm) Fri, Sep 04 | Meyhouse Jazz San Ramon Experience the spirit of Havana with award-winning tresero Kai Lyons and an all-star Bay Area ensemble performing traditional Cuban music, Latin jazz, romantic boleros, and high-energy changüí. Buy Tickets Time & Location Sep 04, 2026, 8:00 PM – 10:00 PM Meyhouse Jazz San Ramon, 6000 Bollinger Canyon Rd suite 1505, San Ramon, CA 94583, USA About the event Doors open: 8:00 PM Show: 8:30 PM Step into the rhythm and soul of Cuba with Kai Lyons’ A Night in Havana, an evening of traditional Cuban music, authentic Latin jazz, romantic boleros, and high-energy changüí from eastern Cuba. Led by Kai Lyons, winner of the 2022 Chito Latamblet Award for Best Tresero at the National Changüí Festival of Guantánamo, Cuba, this special edition of A Night in Havana brings together a remarkable group of musicians with deep roots in Cuban musical traditions. Featured on lead vocals is José Andrés “El Sinsonte” Rodríguez, a celebrated Cuban singer and composer from Guantánamo and a leading voice in the changüí tradition. Known for his powerful vocals, charismatic stage presence, and mastery of improvised singing, José Andrés brings the sound of eastern Cuba directly to the stage, drawing from a musical tradition passed down through generations. His career has been closely connected to Grupo… Show More Tickets Ticket type Stage Side More info Up-close seating experience near the performance Price $35.00 +$0.88 ticket service fee Quantity 0 Ticket type Standard Seating More info Standard seating with a full view of the show Price $24.00 +$0.60 ticket service fee Quantity 0 Total $0.00 Checkout Share this event",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.meyhousejazz.com/event-details/kai-lyons-a-night-in-havana-featuring-jose-andres-el-sinsonte-rodriguez-fri-9-4-8-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse_san_ramon",
                  "source_name": "Meyhouse San Ramon",
                  "fetched_at": "2026-08-28T17:52:26.464636Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_meyhouse_san_ramon|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c65b454fc9e2",
              "venue_id": "venue_the_back_room",
              "title": "Vincent Ding Album Release",
              "event_time": "Fri, Sep 4, 8pm - 10pm PDT",
              "venue_name": "Back Room",
              "event_start": "2026-09-04T20:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1984 Bonita Ave,Berkeley,CA 94704",
              "description": "The Back Room, Berkeley CA, United States",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://events.humanitix.com/vincent-ding-album-release-party?hxchl=hex-col",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_back_room",
                  "source_name": "Back Room",
                  "fetched_at": "2026-08-28T18:22:02.750823Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_back_room|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_dfe591d12aae",
              "venue_id": "venue_cry_baby",
              "title": "Life of the Party",
              "event_time": "2026-09-04T07:00:00.000Z",
              "venue_name": "Cry Baby",
              "event_start": "2026-09-04T07:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "Crybaby Presents LIFE OF THE PARTY - Oakland's Top First Friday Party! Fri Sep 4, 2026 10:00 PM 21+ Buy Tickets Additional Info Hip-Hop | Turnt Up Rap | Club Bangers | Hyphy | and more First Fridays and LIFE OF THE PARTY go hand and hand, lit vibes, good drinks and vibes! The life of the party is where you want to be at, on Oakland First Fridays! Turnt sets, curated slaps by local DJs, and a hype dance floor! On the Decks: TBA Free entry for first 25 with RSVP . Ticket prices increase at doors. Don't sleep! Happy hour drink specials for the first hour :) 21+ | Doors @ 10pm + Google Calendar Related Events Buy Tickets Sat Aug 8 ¡DESMADRE! w/ DJ Sandio + Ethan Dreams + Earth & PATIO TAKEOVER by Bussdown Collective Buy Tickets Sun Sep 20 The Market Arts Festival - 5 Year Anniversary! w/ DJ Sandio + DJ Rell + JC-Caution + J-Blenz Buy Tickets Fri Oct 2 LIFE OF THE PARTY - Oakland's Top First Friday Party!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://crybaby.live/tm-event/life-of-the-party-oaklands-top-first-friday-party-4/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-08-28T19:56:15.638282Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cry_baby|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_35cc41309cc8",
              "venue_id": "venue_the_lost_church",
              "title": "Elisha Tan: Alpha Asian",
              "event_time": "2026-09-04T19:30:00",
              "venue_name": "The Lost Church",
              "event_start": "2026-09-04T19:30:00",
              "event_date": "2026-09-04",
              "venue_address": "988 Columbus Ave, San Francisco, CA 94133",
              "description": "A solo stand-up comedy show by Singaporean comedian Elisha Tan exploring Silicon Valley ambition, family expectations, and the humor found in public failure.",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "https://thelostchurch.my.salesforce-sites.com/ticket#/instances/a0FUh00000AusmMMAR",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lost_church",
                  "source_name": "The Lost Church",
                  "fetched_at": "2026-08-28T20:03:22.982745Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_lost_church|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_211513e536f2",
              "venue_id": "venue_exploratorium",
              "title": "Storytime Science for Kids: Space Is the Place",
              "event_time": "2026-09-04",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Join us for Storytime Science and enjoy an engaging storybook read-aloud followed by a related activity geared toward children and their grown-ups. Come hear a story, get hands-on, and learn something new!",
              "event_types": [
                "workshop",
                "literary"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/storytime-science-kids-space-place-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-04",
              "run_id": "run_d76b7c3ece9a",
              "run_label": "Storytime Science for Kids: Space Is the Place, Aug 29 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_712a9a768847",
              "venue_id": "venue_exploratorium",
              "title": "Daytime Members-Only Hours",
              "event_time": "2026-09-04",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Please consider joining us today ! Members are the backbone of our organization and help ensure the continuity of our mission to create inquiry-based experiences that transform learning worldwide. We can’t wait to see you at the museum.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/member-hours",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-04",
              "run_id": "run_e38dfc952011",
              "run_label": "Daytime Members-Only Hours, Aug 30 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1ca770402c35",
              "venue_id": "venue_oasis",
              "title": "Out & Abt",
              "event_time": "2026-09-04T21:30:00",
              "venue_name": "Oasis",
              "event_start": "2026-09-04T21:30:00",
              "event_date": "2026-09-04",
              "venue_address": "298 11th St, San Francisco, CA 94103",
              "description": "Eventbrite - OASIS presents Out & Abt: A Queer Dance Party - Friday, September 4, 2026 at OASIS, San Francisco, CA. Find event and ticket information.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$17.40",
              "url": "https://www.sfoasis.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_oasis",
                  "source_name": "Oasis",
                  "fetched_at": "2026-08-28T21:03:01.054070Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_eventbrite_oak",
                  "source_name": "Eventbrite OAK",
                  "fetched_at": "2026-09-03T14:11:10.588415Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_oasis|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d4893f493417",
              "venue_id": "venue_bix",
              "title": "Solo Piano",
              "event_time": "2026-09-04T20:30:00",
              "venue_name": "Bix",
              "event_start": "2026-09-04T20:30:00",
              "event_date": "2026-09-04",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Live jazz piano performance at the bar",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "No cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-08-28T21:10:29.119399Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bix|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3145340d8085",
              "venue_id": "venue_neck_of_the_woods",
              "title": "Ashes At Last",
              "event_time": "Fri, Sep 4 Show: 8:00 pm",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-09-04T20:00:00",
              "event_date": "2026-09-04",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$19.00",
              "url": "https://www.neckofthewoodssf.com/tm-event/ashes-at-last-i-kidnapped-the-princess-a-thousand-pardons-sovereign-suicide/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_neck_of_the_woods",
                  "source_name": "Neck of the Woods",
                  "fetched_at": "2026-08-28T21:30:17.641164Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_998432a1a06d",
              "venue_id": "venue_the_monkey_house",
              "title": "ben, zapruder",
              "event_time": "2026-09-04T19:00:00",
              "venue_name": "The Monkey House",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1638 University Avenue, Berkeley, CA",
              "description": "Songwriter Ben Grant and musical project Zapruder take the stage for a shared bill of live music at The Monkey House. Enjoy an evening of compelling songwriting and acoustic performances.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$20-$40 sliding scale donation",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monkey_house",
                  "source_name": "The Monkey House",
                  "fetched_at": "2026-08-28T21:37:06.591184Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monkey_house|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8c4012cd3c5e",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-09-04",
              "venue_name": "De Young",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-04",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_83e9cbf0d9b6",
              "venue_id": "venue_roccapulco",
              "title": "Mala Fe en Roccapulco",
              "event_time": "2026-09-04T21:00:00",
              "venue_name": "Roccapulco",
              "event_start": "2026-09-04T21:00:00",
              "event_date": "2026-09-04",
              "venue_address": "3140 Mission St, San Francisco, CA 94110",
              "description": "Live performance by urban and merengue artist Mala Fe singing all his hits at Roccapulco. 21+ event.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$40.25",
              "url": "https://www.ticketon.com/event/mala-fe-en-roccapulco",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roccapulco",
                  "source_name": "Roccapulco",
                  "fetched_at": "2026-08-28T23:47:28.863635Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_roccapulco|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_ab668ae22165",
              "venue_id": "venue_oakland_arena",
              "title": "BIGBANG 2026 WORLD TOUR",
              "event_time": "Sep 04 / 2026",
              "venue_name": "Oakland Arena",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "7000 Coliseum Way, Oakland, CA 94621",
              "description": "Copyright © 2026 Oakland Arena. Privacy Notice | Cookie Preferences | Your Privacy Choices | Ad Choices | Terms of Use | Accessibility / Site Map a carbon house experience",
              "event_types": [
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.theoaklandarena.com/events/detail/bigbang-2026-world-tour",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_oakland_arena",
                  "source_name": "Oakland Arena",
                  "fetched_at": "2026-08-29T00:36:48.383706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_oakland_arena|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e11dfb5768f2",
              "venue_id": "venue_punch_line",
              "title": "MALIK ELASSAL",
              "event_time": "Sep 4, 2026 7:00 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Lebanese-Canadian comedian and actor Malik Elassal shares his sharp, heartfelt, and authentic storytelling about family, faith, and culture.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/malik-elassal-san-francisco-california-09-04-2026/event/1C006473BD07DD9E",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e48204cf32d4",
              "venue_id": "venue_punch_line",
              "title": "MALIK ELASSAL",
              "event_time": "Sep 4, 2026 9:15 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-04T21:15:00",
              "event_date": "2026-09-04",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Lebanese-Canadian comedian and actor Malik Elassal shares his sharp, heartfelt, and authentic storytelling about family, faith, and culture.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/malik-elassal-san-francisco-california-09-04-2026/event/1C006473BD0CDDA9",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a5cae963bdbc",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "BLAIR SOCCI",
              "event_time": "Fri Sep 4, 2026 7:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "High-energy comedian Blair Socci brings her distinct voice and laugh-out-loud humor to the Cobb's stage.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/blair-socci-san-francisco-california-09-04-2026/event/1C0064D71C275796",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_24072e502f38",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "COBB'S COMEDY ALLSTARS",
              "event_time": "Fri Sep 4, 2026 9:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-09-04T21:30:00",
              "event_date": "2026-09-04",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "A premier stand-up showcase highlighting the strongest local talent and fan-favorite comedians in San Francisco.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/cobbs-comedy-allstars-san-francisco-california-09-04-2026/event/1C0064D8226B09F8",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d436ba1c1b27",
              "venue_id": "venue_san_jose_improv",
              "title": "Bingo Loco",
              "event_time": "2026-09-04T18:45:00",
              "venue_name": "San Jose Improv",
              "event_start": "2026-09-04T18:45:00",
              "event_date": "2026-09-04",
              "venue_address": "62 S 2nd St, San Jose, CA 95113",
              "description": "Bingo Loco transforms traditional bingo into a wild, high-energy party featuring dance-offs, DJ sets, confetti cannons, and absurd prizes. It is an immersive entertainment experience that combines live music, comedy, and interactive games.",
              "event_types": [
                "dj_party",
                "sports"
              ],
              "price_info": "ALMOST SOLD OUT",
              "url": "https://improv.com/sanjose/comic/bingo+loco/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_improv",
                  "source_name": "San Jose Improv",
                  "fetched_at": "2026-08-29T01:07:49.368865Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_improv|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c20a3c71dd3b",
              "venue_id": "venue_san_jose_improv",
              "title": "Bingo Loco",
              "event_time": "2026-09-04T22:15:00",
              "venue_name": "San Jose Improv",
              "event_start": "2026-09-04T22:15:00",
              "event_date": "2026-09-04",
              "venue_address": "62 S 2nd St, San Jose, CA 95113",
              "description": "Bingo Loco transforms traditional bingo into a wild, high-energy party featuring dance-offs, DJ sets, confetti cannons, and absurd prizes. It is an immersive entertainment experience that combines live music, comedy, and interactive games.",
              "event_types": [
                "dj_party",
                "sports"
              ],
              "price_info": "ALMOST SOLD OUT",
              "url": "https://improv.com/sanjose/comic/bingo+loco/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_improv",
                  "source_name": "San Jose Improv",
                  "fetched_at": "2026-08-29T01:07:49.368865Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_improv|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_774ff7471f69",
              "venue_id": "venue_rwc_music_on_the_square",
              "title": "Pride & Joy",
              "event_time": "September 4, 2026 6:00 PM",
              "venue_name": "Music On The Square",
              "event_start": "2026-09-04T18:00:00",
              "event_date": "2026-09-04",
              "venue_address": "2200 Broadway, Redwood City, CA 94063",
              "description": "The name says it all. During its many years of phenomenal success, Pride & Joy SF has remained the most popular party band on the Bay Area music scene. This group is the Pride of the Bay Area and a Joy to anyone who loves to dance. They have achieved this by presenting the most timeless pop/soul music of our time in an electrifying high-style show that pulls the audience directly into the heart of their performance.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Free",
              "url": "https://www.pridejoysf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rwc_music_on_the_square",
                  "source_name": "Music On The Square",
                  "fetched_at": "2026-08-29T01:18:17.230084Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rwc_music_on_the_square|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9439a5d23635",
              "venue_id": "venue_shapeshifters",
              "title": "CROSSROADS 2026: Program 1",
              "event_time": "Friday, September 4, 2026 7pm",
              "venue_name": "Shapeshifters",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "Find out more about CROSSROADS 2026",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shapeshifters",
                  "source_name": "Shapeshifters",
                  "fetched_at": "2026-08-30T10:04:33.112973Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1be22bf342f8",
              "venue_id": "venue_felton_music_hall",
              "title": "YUMA ABE",
              "event_time": "2026-09-04T20:00:00",
              "venue_name": "Felton Music Hall",
              "event_start": "2026-09-04T20:00:00",
              "event_date": "2026-09-04",
              "venue_address": "6275 Highway 9, Felton, CA 95018",
              "description": "Enjoy an evening of laughs featuring a lineup of stand-up comedians performing live at Felton Music Hall.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_felton_music_hall",
                  "source_name": "Felton Music Hall",
                  "fetched_at": "2026-08-30T10:15:46.824711Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_felton_music_hall|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f4204cef2622",
              "venue_id": "venue_the_setup",
              "title": "THE SETUP AT THE PALACE THEATER",
              "event_time": "2026-09-04 9:00 PM",
              "venue_name": "The Setup",
              "event_start": "2026-09-04T21:00:00",
              "event_date": "2026-09-04",
              "venue_address": "222 Hyde St, San Francisco, CA 94102",
              "description": "The Palace Theater · San Francisco",
              "event_types": [
                "comedy"
              ],
              "price_info": "GET TICKETS",
              "url": "https://setupcomedy.com/tickets-3/palace-theater-friday-september-4th-9pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_setup",
                  "source_name": "The Setup",
                  "fetched_at": "2026-08-30T11:15:30.522192Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_setup|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1ef76608ec50",
              "venue_id": "venue_humble_sea",
              "title": "Full menu available - Friday - Pacifica",
              "event_time": "2026-09-04 12:00 PM - 8:30 PM",
              "venue_name": "Humble Sea Brewing",
              "event_start": "2026-09-04T12:00:00",
              "event_date": "2026-09-04",
              "venue_address": "820 Swift St, Santa Cruz, CA 95060",
              "description": "Start your weekend with the complete food menu available at Humble Sea Brewing's Pacifica taproom this Friday.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_humble_sea",
                  "source_name": "Humble Sea Brewing",
                  "fetched_at": "2026-08-30T11:17:55.713362Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_humble_sea|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3d4e730552f9",
              "venue_id": "venue_humble_sea",
              "title": "Food Menu available - Tavern - Friday",
              "event_time": "2026-09-04 4:00 PM - 8:00 PM",
              "venue_name": "Humble Sea Brewing",
              "event_start": "2026-09-04T16:00:00",
              "event_date": "2026-09-04",
              "venue_address": "820 Swift St, Santa Cruz, CA 95060",
              "description": "Kick off your Friday with great food from the full menu at Humble Sea Tavern paired with fresh craft beer.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_humble_sea",
                  "source_name": "Humble Sea Brewing",
                  "fetched_at": "2026-08-30T11:17:55.713362Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_humble_sea|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_da4239f52c91",
              "venue_id": "venue_the_elbo_room",
              "title": "Comedy Oakland at The Elbo Room - Fri Sep 4 2026",
              "event_time": "2026-09-04T19:30:00",
              "venue_name": "The Elbo Room",
              "event_start": "2026-09-04T19:30:00",
              "event_date": "2026-09-04",
              "venue_address": "311 Broadway, Oakland, CA 94607",
              "description": "Independent stand-up comedy show by Comedy Oakland featuring industry pros and rising stars.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Free RSVP / From $0.00",
              "url": "https://www.eventbrite.com/e/comedy-oakland-at-the-elbo-room-fri-sep-4-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_elbo_room",
                  "source_name": "The Elbo Room",
                  "fetched_at": "2026-08-31T10:09:45.262566Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_elbo_room|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_fa601dd98c05",
              "venue_id": "venue_yoshis",
              "title": "KIRK WHALUM",
              "event_time": "September 4, 2026 - 7:30 PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-04T19:30:00",
              "event_date": "2026-09-04",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "SUMMER SALE! 25% OFF FRI 9:30PM SHOW. CODE:SUMMER25 OFFER ENDS MON, JUN 29 AT 11:59PM PST LIMITED TIX AVAILABLE",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$34 - $74",
              "url": "https://yoshis.com/events/buy-tickets/kirk-whalum-8/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_67ec9b71596b",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "BO-AK, THE BLUE WINGS",
              "event_time": "Fri Sep 4 8:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-04T20:00:00",
              "event_date": "2026-09-04",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "A Night of Jam, Jazz, Blues, & Latin Rock",
              "event_types": [
                "live_music",
                "jazz",
                "rock",
                "latin_world"
              ],
              "price_info": "21+, $10.00",
              "url": "https://wl.seetickets.us/event/bo-ak-the-blue-wings/703004?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-08-31T12:12:52.447528Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b75514127877",
              "venue_id": "venue_winters",
              "title": "MATINEE***Tell Me Tell Me/Food For The Wyrm",
              "event_time": "2026-09-04T16:00:00",
              "venue_name": "Winters",
              "event_start": "2026-09-04T16:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "Afternoon matinee show featuring Tell Me Tell Me and Food For The Wyrm.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-08-31T12:39:12.063314Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_winters|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_f0704300bba5",
              "venue_id": "venue_winters",
              "title": "Derapage/Hot Laundry/The Control Freaks",
              "event_time": "2026-09-04T20:00:00",
              "venue_name": "Winters",
              "event_start": "2026-09-04T20:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "Straight outta Paris! Derapage (Paris, France punk) joined by The Control Freaks (SF punk/garage) and Hot Laundry (SF garage).",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQHjXKC7PblkUACJh-HxstvGgf-Wm1gSqAnOQnOXdAJq10vBcpriO2fYiXmDDN28DyaUiK_dVCxCJCCVpU_rwEGWfMDH1RZL76kmW6Ykyv8IB80SVNYF_7Q1X2lSkTlVZyzXdP1ZGlqubNPT1OvpYqnrF4WLm9JtBcJ757ZJmiz2Ezg8po-8",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-08-31T12:39:12.063314Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_winters|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_efb30127b651",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Andre Cruz & The Black Diamond",
              "event_time": "2026-09-04T16:30:00",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-09-04T16:30:00",
              "event_date": "2026-09-04",
              "venue_address": "San Francisco, CA 94118",
              "description": "Friday Happy Hour live concert featuring Andre Cruz & The Black Diamond Rhythm Band at the Golden Gate Bandshell.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Free",
              "url": "https://illuminate.org/event/friday-happy-hour-september-4/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-08-31T13:28:15.005369Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_7579e2a66c8c",
              "venue_id": "venue_cornerstone",
              "title": "The English Beat",
              "event_time": "2026-09-04T21:00:00",
              "venue_name": "Cornerstone",
              "event_start": "2026-09-04T21:00:00",
              "event_date": "2026-09-04",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Cornerstone presents legendary 2-Tone ska and new wave band The English Beat.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.prekindle.com/event/97371-the-english-beat-berkeley",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-08-31T14:04:10.183515Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cornerstone|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_755595b93f23",
              "venue_id": "venue_dna_lounge",
              "title": "BIEBER NIGHT",
              "event_time": "Fri Sep 4",
              "venue_name": "DNA Lounge",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "Bieber Night!\n\tPop, R&B, Hiphop! Calling all Beliebers 💘 Bieber\n\tNight is taking over DNA Lounge for a full night of Justin Bieber\n\thits, deep cuts, throwbacks, and pop classics. From Baby and Beauty\n\tand a Beat to Sorry, What Do You Mean?, Peaches and more. Come sing\n\tway too loud, dance all night, and relive every Bieber era.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.dnalounge.com/calendar/2026/09-04.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dna_lounge",
                  "source_name": "DNA Lounge",
                  "fetched_at": "2026-08-31T14:15:19.938818Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5135c36b03a6",
              "venue_id": "venue_dna_lounge",
              "title": "DARK SPARKLE\nVS. DEATH GUILD",
              "event_time": "Fri Sep 4",
              "venue_name": "DNA Lounge",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "Dark Sparkle: vs. Death Guild!\n\tGothic, Glam, New Wave, Post-Punk! Since 1999 Dark Sparkle\n\thas provided a unique mix of everything from goth to glam, new wave\n\tto punk, post-punk, darkwave, electronic, esoterica, and the darker\n\tside of rock 'n' roll. In addition to the classics, expect to hear\n\tnew, underplayed, or otherwise forgotten dark music that deserves\n\tyour attention. This month in Dazzle, we welcome DJs Decay and\n\tMelting Girl from the longest continually operating\n\tgothic/industrial dance club in the United States, Death Guild!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.dnalounge.com/calendar/2026/09-04d.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dna_lounge",
                  "source_name": "DNA Lounge",
                  "fetched_at": "2026-08-31T14:15:19.938818Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5f679e4cc651",
              "venue_id": "venue_ashkenaz",
              "title": "Aux Cajunals",
              "event_time": "09/04/2026 7:30 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-09-04T19:30:00",
              "event_date": "2026-09-04",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "Traditional Louisiana Cajun dance music",
              "event_types": [
                "live_music",
                "folk",
                "dance"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/193791",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-08-31T14:45:33.243069Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_998095294f51",
              "venue_id": "venue_yerba_buena_center",
              "title": "GaHee Park: Behind the Curtain",
              "event_time": "2026-09-04",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Park invites us to peek behind the curtain, as she lays claim to her own power as a surrealist painter working across fantasy and intimacy.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/gahee-park-behind-the-curtain/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-04",
              "run_id": "run_5353f80886f6",
              "run_label": "GaHee Park: Behind the Curtain, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2293931ef984",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dream",
              "event_time": "2026-09-04",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public art installation commissioned by YBCA and co-sponsored by San Francisco Public Works.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dream-public-art/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-04",
              "run_id": "run_b6a5ba4e8809",
              "run_label": "Dream, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_55c3bc07c022",
              "venue_id": "venue_yerba_buena_center",
              "title": "SoMa Mahal Kita",
              "event_time": "2026-09-04",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A message of love for the SoMa neighborhood and community, inspired by weaving practices in the Phillipines and the colors of the Filipino flag.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/soma-mahal-kita-soma-i-love-you-ciriaco-sayoc/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-04",
              "run_id": "run_0c5141fff335",
              "run_label": "SoMa Mahal Kita, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_632a4ffd8882",
              "venue_id": "venue_yerba_buena_center",
              "title": "We Rooted in Flight",
              "event_time": "2026-09-04",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public artwork inviting passerbyers to join in the journey of collective flight",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/we-fly-for-a-liberated-we-we-rooted-in-flight/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-04",
              "run_id": "run_1d34139aedcf",
              "run_label": "We Rooted in Flight, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_598e686fbe65",
              "venue_id": "venue_maxs_of_burlingame",
              "title": "Suzanne Piano Player",
              "event_time": "2026-09-04",
              "venue_name": "Max's of Burlingame",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "1250 Old Bayshore Blvd, Burlingame, CA 94010",
              "description": "Every Thursday, enjoy an evening of smooth, sophisticated sounds with the Syncopation Jazz Group at Max’s of Burlingame! This talented ensemble brings their unique blend of jazz rhythms and melodies to our stage, creating the perfect ambiance for your Thursday night out. Whether you’re indulging in our delicious dining options or sipping on craft cocktails, the Syncopation Jazz Group adds a touch of musical magic to your experience. Join us Thursdays at Max’s for a night of unforgettable live jazz, featuring Leonard York & Dave Schorr…along with leader Michael Bee add Michael McMorrow, Pete Stanwood & Israel “Tio” Pabon.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://maxsofburlingame.com/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_maxs_of_burlingame",
                  "source_name": "Max's of Burlingame",
                  "fetched_at": "2026-08-31T16:03:10.803244Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_maxs_of_burlingame|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c4dce029359e",
              "venue_id": "venue_santa_cruz_mah",
              "title": "Evergreen Volunteer Days",
              "event_time": "Fri, Sep 4, 2026, 9:30am - 12pm",
              "venue_name": "Santa Cruz MAH",
              "event_start": "2026-09-04T09:30:00",
              "event_date": "2026-09-04",
              "venue_address": "705 Front St, Santa Cruz, CA 95060",
              "description": "Join a team of amazing, weekly volunteers who help maintain one of the oldest public cemeteries in California, Evergreen Cemetery.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.santacruzmah.org/events/evergreen-volunteer-days/2026/09/04",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_santa_cruz_mah",
                  "source_name": "Santa Cruz MAH",
                  "fetched_at": "2026-08-31T16:04:02.720340Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_santa_cruz_mah|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2b354aaae7a4",
              "venue_id": "venue_santa_cruz_mah",
              "title": "Free First Friday",
              "event_time": "Fri, Sep 4, 2026, 12pm - 8pm",
              "venue_name": "Santa Cruz MAH",
              "event_start": "2026-09-04T12:00:00",
              "event_date": "2026-09-04",
              "venue_address": "705 Front St, Santa Cruz, CA 95060",
              "description": "Make the MAH your first stop this weekend with FREE First Friday.",
              "event_types": [
                "community",
                "art"
              ],
              "price_info": "",
              "url": "https://www.santacruzmah.org/events/first-friday/2026/09/04",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_santa_cruz_mah",
                  "source_name": "Santa Cruz MAH",
                  "fetched_at": "2026-08-31T16:04:02.720340Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_santa_cruz_mah|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9617de5e2fb8",
              "venue_id": "venue_biscuits__blues",
              "title": "Big Daddy Cade's Tribute to B.B. King",
              "event_time": "2026-09-04 September 5, 2026",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-08-31T16:25:33.031111Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-09-04",
              "run_id": "run_c1c5cf35f46d",
              "run_label": "Big Daddy Cade's Tribute to B.B. King, Sep 4 – Sep 6",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_72338d1d6275",
              "venue_id": "venue_elis_mile_high",
              "title": "Punk Band Karaoke",
              "event_time": "Fri, Sep 04, 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "Punk Band Karaoke Fri, Sep 04 | Eli's Mile High Club RSVP Time & Location Sep 04, 2026, 8:00 PM – 11:50 PM Eli's Mile High Club, 3629 Martin Luther King Jr Way, Oakland, CA 94609, USA About the event 8pm Sign Ups - 9pm Karaoke NO COVER 21+ Be The Next Nobody™️ with Punk Band Karaoke! Sing your favorite punk songs from a list of 100+ classics with a LIVE BAND. Signups start at 8pm, first of two sets starts at 9. No repeats within a set, so get there early to snag your song! Lyrics will be provided and the band will always have your back. This show is very special because it’s our bass shredder Sarah’s birthday. Praise Her. Songlist at: punkbandkaraoke.com Song List and Requests - punk band karaoke Current Song List BAND SONG Adam and the Ants Beat My Guest Adicts Steamroller (My Baby Got Run Over by a) Adolescents Amoeba Agent Orange Bloodstains Amyl and the Sniffers Security Avengers The American in Me B-52’s, The Give Me Back My Man Bad Brains Sailin On Bad Religion Fuck Armageddon…This is Hell Bikini Kill […] Show More RSVP Share this event",
              "event_types": [
                "community",
                "rock"
              ],
              "price_info": "RSVP",
              "url": "https://www.elismilehighclub.com/events/punk-band-karaoke-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-08-31T16:36:06.503526Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a1464e2519da",
              "venue_id": "venue_chase_center",
              "title": "Little Bears Music Class",
              "event_time": "September 4, 2026 - 10:00 AM",
              "venue_name": "Chase Center",
              "event_start": "2026-09-04T10:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "Thrive City has announced its 2026 fall programming schedule, which features free family-friendly events from September through November. Highlights include the Hoop It Up 3x3 Basketball Tournament, Thrill-O-Ween, live music and classes, sports viewings, and more. Guests are encouraged to RSVP for upcoming events at ThriveCity.com. Upcoming Thrive City events include: Big Game Viewings - Following the success of the Summer Soccer Viewings (which attracted over 25,000 guests), Big Game Viewings continue at Thrive City, including select Premier League matches (beginning today at 12 p.m.). Big Game Viewings also include select Valkyries road games, baseball games, Football Sundays, starting on Sunday, October 25, and more. The full schedule of upcoming viewings can be found at chasecenter.com/thrive-city-big-game-viewings/. Hoop It Up 3x3 Basketball Tournament – Hoop It Up, the popular 3x3 basketball tournament created by NBA legend Kevin Garnett, returns to Thrive City on Saturday, September 5. The tournament will feature recreational divisions for ages 10 to 18+ and adult divisions at all levels of competition, including Pro-Am, with each team guaranteed at least four games. Blankets & Blockbusters – Thrive City will continue its Blankets & Blockbusters series this fall with a screening of “The Lion King” on Sunday, September 13, from 12 to 3 p.m. and “Toy Story 5” on Sunday, November 8, from 12 to 3 p.m. In addition to the films, guests can enjoy themed activities, arts & crafts, photo opportunities, and more. Weekend Wellness, presented by Kaiser Permanente – Refresh and reset at Thrive City’s Weekend Wellness, presented by Kaiser Permanente. On Sunday, September 20 from 10 a.m. to 1 p.m., guests can start the day with three different fitness classes by Vennu Yoga: Kickboxing Pilates, Hip Hop Zumba, and Zen Yoga Flow. Following the classes, guests can enjoy a farmer’s market with fresh produce and more. Lucha Libre Wrestling Night – Hosted by West Coast Pro Wrestli",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "https://chasecenter.com/events/little-bears-music-class-20260904/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-08-31T17:38:13.687686Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9a036fd65524",
              "venue_id": "venue_tupelo",
              "title": "DJ Kevey Kev & Black Diamond",
              "event_time": "Friday September 4th 9:00PM - 1:30AM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-04T21:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "Seriously - These guys (and gals) are one of the tightest local bands we've ever had at Tupelo. You're gonna hear bad ass grooves, sick vocals and instrumentation and an extremely versatile and well curated catalogue of tunes. Get here early - it's gonna fill up!",
              "event_types": [
                "live_music",
                "dj_party"
              ],
              "price_info": "",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_35d888974919",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Cristina Mariani",
              "event_time": "2026-09-04T19:30:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-09-04T19:30:00",
              "event_date": "2026-09-04",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show with Cristina Mariani. Strictly 21+ with valid ID; 2-item minimum purchase applies.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Price not found in the specific listing.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/135567",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-08-31T18:20:03.865483Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-09-04",
              "run_id": "run_aad7bd148cae",
              "run_label": "Cristina Mariani, Sep 4 – Sep 5",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_5cf6e99cfa19",
              "venue_id": "venue_great_american_music_hall",
              "title": "Gothicumbia",
              "event_time": "Fri Sep 4 2026 10:00PM",
              "venue_name": "Great American",
              "event_start": "2026-09-04T22:00:00",
              "event_date": "2026-09-04",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "LosGothsCo. presents... | Hot Goth GF,  Los Ahijados de la Changa, Black Lipstick | with Hot Goth GF,  Los Ahijados de la Changa, Black Lipstick",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$12.00-$22.00",
              "url": "https://wl.seetickets.us/event/gothicumbia/701701?afflky=GreatAmericanMusicHall",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-09-02T10:02:47.962874Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_62db08f9b03d",
              "venue_id": "venue_the_knockout",
              "title": "Soul & Oldies Latin Jams Dance Party",
              "event_time": "Fri 4 Sep ― 9:00pm",
              "venue_name": "The Knockout",
              "event_start": "2026-09-04T21:00:00",
              "event_date": "2026-09-04",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "EL SHOW DE SOUL AND OLDIES LATIN JAMS DANCE PARTY WITH YOUR HOSTS MR 45 & SPACECHOLO PLUS VERY SPECIAL GUESTS MAJOO (DISCODELIC) + URIEL + EAST SIDE XICANA + JOSE NINO + AVEETS (TBL) + SPOOKYS OLDIES + OLD HOMIE + MALO (FRISCO GANG) + PELON + SAD BOY + ALB ...",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/Q3e2cc10d6f4?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-09-02T10:33:16.877437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_862427ae8308",
              "venue_id": "venue_the_saloon",
              "title": "Lisa Kindred Band",
              "event_time": "September 4 @ 4:00 pm - 8:00 pm",
              "venue_name": "The Saloon",
              "event_start": "2026-09-04T16:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "The Lisa Kindred Band carries on the spirit and repertoire of beloved Mill Valley–based blues, folk, and rock singer Lisa Kindred, whose roots stretch from the 1960s Greenwich Village folk scene to decades shaping the Bay Area blues community. At The Saloon, the band keeps her legacy alive with sets steeped in classic blues, roots,...",
              "event_types": [
                "live_music",
                "rock",
                "folk"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/lisa-kindred-band-2/2026-09-04/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:38.864743Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_saloon|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_e7610657e3c9",
              "venue_id": "venue_comstock_saloon",
              "title": "Katy Stephan",
              "event_time": "September 4 @ 5:00 pm - 7:00 pm",
              "venue_name": "Comstock Saloon",
              "event_start": "2026-09-04T17:00:00",
              "event_date": "2026-09-04",
              "venue_address": "155 Columbus Ave, San Francisco, CA 94133",
              "description": "Katy Stephan’s residency at Comstock Saloon turns the room into a small, candlelit listening space. At the piano she blends jazz‑inflected originals with reimagined standards and art‑pop tunes, her clear, expressive voice sitting right on top of the clink of glassware and low conversation. It’s an intimate, song‑forward set that feels equally at home as...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/kathy-stephan-2/2026-09-04/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:38.864743Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_comstock_saloon|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_5cd5354360e6",
              "venue_id": "venue_the_grove",
              "title": "Austin Wazz of Analog Dog",
              "event_time": "September 4 @ 5:00 pm - 8:00 pm",
              "venue_name": "The Grove",
              "event_start": "2026-09-04T17:00:00",
              "event_date": "2026-09-04",
              "venue_address": "690 Mission St, San Francisco, CA 94105",
              "description": "Austin Wazz (Austin Wasielewski) is the lead singer, songwriter, and multi-instrumentalist of Analog Dog, a San Francisco-based psychedelic indie-disco band he co-founded with Rob Nicol, appearing at The Grove. His solo sets draw on the band's signature blend of dance-heavy grooves and socially conscious songwriting, bringing an energetic, groove-forward sound to the café's laid-back neighborhood...",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/austin-wazz-of-analog-dog/2026-09-04/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:38.864743Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_grove|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_1da55f9a6bd0",
              "venue_id": "venue_red_window",
              "title": "Magic School Busk",
              "event_time": "September 4 @ 5:00 pm - 9:00 pm",
              "venue_name": "Red Window",
              "event_start": "2026-09-04T17:00:00",
              "event_date": "2026-09-04",
              "venue_address": "500 Columbus Ave, San Francisco, CA 94133",
              "description": "The Magic School Busk holds weekly residency directly in front of The Red Window at the corner of Stockton and Columbus. This high‑energy busking collective has become one of North Beach’s unofficial “resident joy‑makers,” blurring the line between band and audience as people pause, sing along, or dance on the sidewalk. Whether you are enjoying a...",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/magic-school-busk-2/2026-09-04/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:38.864743Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_red_window|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_3d1b51658a73",
              "venue_id": "venue_sweeties_art_bar",
              "title": "Vince Lateano Trio",
              "event_time": "September 4 @ 6:00 pm - 8:00 pm",
              "venue_name": "Sweetie's ARt Bar",
              "event_start": "2026-09-04T18:00:00",
              "event_date": "2026-09-04",
              "venue_address": "475 Francisco St,San Francisco, CA 94133",
              "description": "Join us at Sweetie’s Art Bar for an unforgettable night with the Vince Lateano Trio! Experience the masterful jazz drumming of Vince Lateano, a San Francisco jazz legend who has played alongside icons like Cal Tjader and Stan Getz. The trio brings a lively mix of classic and contemporary jazz in an intimate setting that’s...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/vince-lateano-trio-2-2-2/2026-09-04/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:38.864743Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sweeties_art_bar|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_6eef982f4d9f",
              "venue_id": "venue_paris_75",
              "title": "The Mina Project",
              "event_time": "September 4 @ 7:30 pm - 9:30 pm",
              "venue_name": "Paris 75",
              "event_start": "2026-09-04T19:30:00",
              "event_date": "2026-09-04",
              "venue_address": "515 Broadway, San Francisco, CA 94133",
              "description": "THE MINA PROJECT represents the music of Italian singer Mina Mazzini in her tradition, in particular, paying tribute to her songs of the 1960’s and 1970’s. Mina is considered the most successful proponent of the canzone italiana through Italian mainstream pop music. Mina’s work combines classic Italian pop with elements of Jazz, Blues, Swing, R&B...",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/the-mina-project-3/2026-09-04/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:38.864743Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_paris_75|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_6c40ac283969",
              "venue_id": "venue_comstock_saloon",
              "title": "Gaucho Jazz",
              "event_time": "September 4 @ 8:00 pm - 11:00 pm",
              "venue_name": "Comstock Saloon",
              "event_start": "2026-09-04T20:00:00",
              "event_date": "2026-09-04",
              "venue_address": "155 Columbus Ave, San Francisco, CA 94133",
              "description": "Gaucho is a masterful Bay Area band that combines the influence of gypsy jazz of 1930’s Europe with the rhythmic drive and collective improvisation of New Orleans swing music, gutbucket blues and elements of ragtime. Their sound, a uniquely American concoction, blends instrumental acuity and lighthearted humor that keep their audience coming back for more....",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/gaucho-jazz/2026-09-04/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:41.529093Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_comstock_saloon|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_11c4fe7ded08",
              "venue_id": "venue_lions_den",
              "title": "Rotating Bands at the Lion’s Den",
              "event_time": "September 4 @ 8:00 pm - 11:00 pm",
              "venue_name": "Lion's Den",
              "event_start": "2026-09-04T20:00:00",
              "event_date": "2026-09-04",
              "venue_address": "57 Wentworth Pl, San Francisco, CA 94108",
              "description": "Experience the resurgence of San Francisco’s historic Chinatown nightlife at the Lion’s Den.  Tucked away on Wentworth Place, this bi-level lounge and performance space blends modern cocktail culture with the East meets West spirit of the Chinatown’s golden age. Every week, the venue transforms into a unique destination for live music, featuring a rotating roster...",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/live-music-at-the-lions-den-2-2/2026-09-04/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:41.529093Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_lions_den|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_4c8136b58b60",
              "venue_id": "venue_local_edition",
              "title": "Steve Lucky and The Rhumba Bums",
              "event_time": "September 4 @ 8:30 pm - 11:30 pm",
              "venue_name": "Local Edition",
              "event_start": "2026-09-04T20:30:00",
              "event_date": "2026-09-04",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Steve Lucky and The Rhumba Bums play jump blues, swing, jazz and rare gems inspired by the '30s, '40s and '50s at Local Edition!",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/steve-lucky-and-the-rhumba-bums-2/2026-09-04/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:41.529093Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-09-03T12:59:31.047351Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_7c2f8b5e2c65",
              "venue_id": "venue_the_saloon",
              "title": "Wendy DeWitt",
              "event_time": "September 4 @ 9:30 pm - 1:30 am",
              "venue_name": "The Saloon",
              "event_start": "2026-09-04T21:30:00",
              "event_date": "2026-09-04",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "Wendy DeWitt plays boogie woogie and blues on the National and International blues scene. And you can see her at the Saloon. With Kirk Harwood, Wendy is a two-time regional winner, and International Blues Challenge Finalist. Former pianist for Hank Ballard, and 30 years of working with Chicago legend Steve Freund, Wendy has also played...",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$5",
              "url": "https://offbeatsf.com/event/wendy-dewitt-3-2/2026-09-04/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:41.529093Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_saloon|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_9acb0c204226",
              "venue_id": "venue_public_works",
              "title": "Entrañas",
              "event_time": "2026-09-04T21:00:00",
              "venue_name": "Public Works",
              "event_start": "2026-09-04T21:00:00",
              "event_date": "2026-09-04",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "A night of latincore, global club, guaracha, dembow, baile funk, and reggaeton featuring Entrañas alongside K.Hole_kardashian, mymy b2b Profesito, and DJ Saratonin.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10+",
              "url": "https://www.tixr.com/groups/publicsf/events/entranas-presented-by-clb-intrncnl-hazardous-nemesis-public-works",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-09-02T11:21:34.915442Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_public_works|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_3db765dfb859",
              "venue_id": "venue_the_midway",
              "title": "Ravenscoon After Party",
              "event_time": "09/04/2026 11:00 PM",
              "venue_name": "The Midway",
              "event_start": "2026-09-04T23:00:00",
              "event_date": "2026-09-04",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "RIDE ∙ INDOORS",
              "event_types": [
                "dj_party"
              ],
              "price_info": "TICKETS",
              "url": "https://www.tixr.com/groups/midwaysf/events/official-block-party-afters-feat-ravenscoon-204936",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-09-02T11:30:22.920988Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a550d9de2c24",
              "venue_id": "venue_discretion_brewing",
              "title": "1st Friday W/ Local Honey",
              "event_time": "2026-09-04T17:30:00",
              "venue_name": "Discretion Brewing",
              "event_start": "2026-09-04T17:30:00",
              "event_date": "2026-09-04",
              "venue_address": "2703 41st Ave Ste A, Soquel, CA 95073",
              "description": "Live Music 5:30-7:30pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_discretion_brewing",
                  "source_name": "Discretion Brewing",
                  "fetched_at": "2026-09-02T11:35:03.120781Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_discretion_brewing|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_96658238ee19",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy",
              "event_time": "2026-09-04T19:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-09-04T19:45:00",
              "event_date": "2026-09-04",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "Stand-up comedy show at Shelton Theater. Listing says each show features five to six hand-picked, experienced comedians and an occasional guest drop-in.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$25.00",
              "url": "https://tickets.cttcomedy.com/events/2550/cheaper-than-therapy-stand-up-comedy-fri-sep-4-7-45-pm/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-09-02T11:40:03.690341Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_8cc3b308622f",
              "venue_id": "venue_madrone_art_bar",
              "title": "Max Cowan",
              "event_time": "September 4 @ 9:30 pm - 1:00 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-04T21:30:00",
              "event_date": "2026-09-04",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Max Cowan takes the piano from the East Bay to New Orleans, and through every funky congregation in between. As co-leader of funk powerhouse Atta Kid, keyboardist for funk pioneer, Zigaboo Modeliste, and longtime collaborator with Otis McDonald, Max's repertoire tours the B-sides of your soul. 7-9PM",
              "event_types": [
                "rnb_soul_funk",
                "live_music"
              ],
              "price_info": "$10 cover",
              "url": "https://madroneartbar.com/event/max-cowan-20-2025-12-05/2026-09-04/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_26232b8a68ab",
              "venue_id": "venue_moes_alley",
              "title": "The Sam Chase & The Untraditional",
              "event_time": "2026-09-04T21:00:00",
              "venue_name": "Moe's Alley",
              "event_start": "2026-09-04T21:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1535 Commercial Way, Santa Cruz, CA 95065",
              "description": "Show: 9:00 PM",
              "event_types": [
                "live_music",
                "folk",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_moes_alley",
                  "source_name": "Moe's Alley",
                  "fetched_at": "2026-09-03T10:23:10.512238Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_moes_alley|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4e83bea33530",
              "venue_id": "venue_black_cat",
              "title": "Max Haymer Power Trio",
              "event_time": "2026-09-04T19:00:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30, $40 , $50 , $60 \n\n(price includes $5.50 processing and ticketing fee)\n\n \n\n7:00 show: Doors @ 6:00\n\n9:30 show: Bar @ 6:00, Doors @ 8:45\n\n\n\n\nHigh-impact “athletic jazz” driven by power, precision, Afro-Cuban fire, and serious piano virtuosity.\n\n\n\n\nGrammy-nominated pianist Max Haymer makes his Black Cat debut with a trio built for drama, momentum, and explosive live interplay. Known for his decade as pianist and musical director for 10-time Grammy winner Arturo Sandoval, Haymer also collaborates with acclaimed vocalist Jane Monheit.\n\n\n\n\nHis sets move from striking original compositions to reimagined Broadway and jazz standards, all charged with rhythmic intensity, emotional weight, and flashes of Afro-Cuban heat. A recent South Arts Jazz Road Award recipient, Haymer brings a muscular, cinematic sound that lands hard in the room. \n\n\n\n\nBand Lineup:\n\nMax Haymer, piano\n\nNick Campbell, bass\n\nRick Montalbano, drums",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $30, $40 , $50 , $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/12431/2026-09-04",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_172f40515c7a",
              "venue_id": "venue_black_cat",
              "title": "Max Haymer Power Trio",
              "event_time": "2026-09-04T21:30:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-04T21:30:00",
              "event_date": "2026-09-04",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30, $40 , $50 , $60 \n\n(price includes $5.50 processing and ticketing fee)\n\n \n\n7:00 show: Doors @ 6:00\n\n9:30 show: Bar @ 6:00, Doors @ 8:45\n\n\n\n\nHigh-impact “athletic jazz” driven by power, precision, Afro-Cuban fire, and serious piano virtuosity.\n\n\n\n\nGrammy-nominated pianist Max Haymer makes his Black Cat debut with a trio built for drama, momentum, and explosive live interplay. Known for his decade as pianist and musical director for 10-time Grammy winner Arturo Sandoval, Haymer also collaborates with acclaimed vocalist Jane Monheit.\n\n\n\n\nHis sets move from striking original compositions to reimagined Broadway and jazz standards, all charged with rhythmic intensity, emotional weight, and flashes of Afro-Cuban heat. A recent South Arts Jazz Road Award recipient, Haymer brings a muscular, cinematic sound that lands hard in the room. \n\n\n\n\nBand Lineup:\n\nMax Haymer, piano\n\nNick Campbell, bass\n\nRick Montalbano, drums",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $30, $40 , $50 , $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/12431/2026-09-04",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_db2bfe8e8cd8",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Jazz Mafia: Cannonball Show",
              "event_time": "Friday, September 4, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Friday, September 4, 2026 @ 7pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $45 per show",
              "url": "https://keysjazzbistro.com/event/jazz-mafia-cannonball-show-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9c738b848e98",
              "venue_id": "venue_freewheel_brewing",
              "title": "Misunderstood",
              "event_time": "2026-09-04T19:00:00",
              "venue_name": "Freewheel Brewing",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "3736 Florence Street, Redwood City, CA 94063",
              "description": "Live rock performance featuring classic, alternative, and modern rock covers by Bay Area band Misunderstood.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://www.facebook.com/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_freewheel_brewing",
                  "source_name": "Freewheel Brewing",
                  "fetched_at": "2026-09-03T10:53:34.610289Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_freewheel_brewing|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_6d260de8055b",
              "venue_id": "venue_z_space",
              "title": "San Francisco Hysterical Historium",
              "event_time": "2026-09-04T19:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "Killing My Lobster & Z Space present: San Francisco Hysterical Historium, a Co-Production with Red Barn Productions. Sketch comedy that ain't fool's gold!",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-09-03T10:55:35.787344Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_z_space|2026-09-04",
              "run_id": "run_6cdec2f9a529",
              "run_label": "San Francisco Hysterical Historium, Sep 4 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f2b477423d6a",
              "venue_id": "venue_brick_and_mortar",
              "title": "Connor Morrison, Honey Disposition, Libba",
              "event_time": "9.4 Show: 9:00PM",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-09-04T21:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Event Details Brick & Mortar Music Hall Presents Connor Morrison, Honey Disposition, Ben Thuesen, Libba with Honey Disposition , Ben Thuesen , Libba September 4, 2026 9:00 pm PDT (Doors: 8:00 pm ) Brick and Mortar Music Hall , 1710 Mission Street , San Francisco, CA ( map ) $25.00 Buy Tickets + Google Calendar Connor Morrison Honey Disposition Ben Thuesen Libba Libba was born and raised in San Francisco, CA. She has been singing since she can remember and has been involved in multiple musical ensembles throughout her life. She moved to Nashville in 2020 to fully participate in her solo career and develop her lifestyle as a songwriter. Unfortunately, the world had other plans, and in the time of quarantine, she developed and dove deeper into songwriting, and found the courage to release her own music and eventually perform live. Libba has enjoyed the journey throughout these past few years, and will be releasing her first ever debut album at the end of September! Her hopes for touring nationwide are ambitious, but in the end she hopes her music touches people's hearts for better or for worse. JUST ANNOUNCED Geordie Kieffer December 06, 2026 RC AVENUE October 04, 2026 Dani Offline — Lover's Discourse Live October 13, 2026 Denise Julia November 14, 2026 AZ Chike November 05, 2026 Follow us on Instagram Join the Brick & Mortar Newsletter",
              "event_types": [
                "live_music"
              ],
              "price_info": "$25.00",
              "url": "https://www.brickandmortarmusic.com/tm-event/connor-morrison-honey-disposition-ben-thuesen-libba/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-09-03T11:13:51.689688Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1f79b992fa4f",
              "venue_id": "venue_pacific_film_archive",
              "title": "Café Early Closure",
              "event_time": "Sep 04, 2026 2 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-04T14:00:00",
              "event_date": "2026-09-04",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Kopi Bar and Bakery closes early a 2 PM for a private event.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://bampfa.org/event/modified-hours-cafe",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_53b7b2065a8b",
              "venue_id": "venue_pacific_film_archive",
              "title": "We",
              "event_time": "Sep 04, 2026 7 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "A journey along the suburban train line that spans Paris blossoms into a representation of the myriad voices, cultures, and experiences that make up France. “A tender homage to the unnoticed” (The Guardian).",
              "event_types": [
                "film"
              ],
              "price_info": "SOLD OUT",
              "url": "https://bampfa.org/event/we",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cf92af9de6bb",
              "venue_id": "venue_4_star_theater",
              "title": "Dr. Cliff Kapono",
              "event_time": "4 September 2026 7:30 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-04T19:30:00",
              "event_date": "2026-09-04",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Join Dr. Cliff Kapono for a special evening as he explores the connection between humans and the spaces they occupy as surfers. This live presentation uniquely blends modern surf with conventional science as a way to interpret a Hawaiian approach to wave sliding. It will be a night filled with surf, science and intergenerational culture from one of surfings lesser known communities.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/obsurf-cliff-kapono",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f241dcc6c3ef",
              "venue_id": "venue_the_monarch",
              "title": "Calavera",
              "event_time": "4 September 2026 9:00 PM",
              "venue_name": "The Monarch",
              "event_start": "2026-09-04T21:00:00",
              "event_date": "2026-09-04",
              "venue_address": "101 6th St, San Francisco, CA 94103",
              "description": "Peace Treaty collective hosts events for the gays, girls, and allies.",
              "event_types": [
                "dj_party",
                "community"
              ],
              "price_info": "Buy Ticket",
              "url": "https://www.eventbrite.com/e/calavera-tickets-1998652911661",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monarch",
                  "source_name": "The Monarch",
                  "fetched_at": "2026-09-03T13:00:26.245791Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monarch|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_337442a43e76",
              "venue_id": "venue_cat_club",
              "title": "Music For The Masses (Dark '80 New Wave)",
              "event_time": "September 4, 2026 9:00 PM",
              "venue_name": "Cat Club",
              "event_start": "2026-09-04T21:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "Music For The Masses & MIDNITE CITY [INDIE DISCO]\n——\n9pm-2am",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.sfcatclub.com/calendar/090624-5mscw-8zrh2-lmcbk-n89h9-jkreh-6thf4-3hfrl-kr7mn-656d2-mz6cg-75mh6-reamz-3y32s-6x5ae-zcprf-e2csa-fexlg-65drf-ekc3m",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cat_club",
                  "source_name": "Cat Club",
                  "fetched_at": "2026-09-03T13:24:58.141502Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1861ea54a0bf",
              "venue_id": "venue_capelos_bbq",
              "title": "Redemption Breaking Feat. Brian Patrick",
              "event_time": "09/04/2026 5:00 PM",
              "venue_name": "Capelo's BBQ",
              "event_start": "2026-09-04T17:00:00",
              "event_date": "2026-09-04",
              "venue_address": "2655 Middlefield Rd, Redwood City, CA 94063",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.capelosbarbecue.com/music/2026/9/4/redemption-breaking-feat-brian-patrick",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_capelos_bbq",
                  "source_name": "Capelo's BBQ",
                  "fetched_at": "2026-09-03T14:07:51.913390Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_capelos_bbq|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_28603109115e",
              "venue_id": "venue_caravan_lounge",
              "title": "Rebelskamp & Magick Blues Band",
              "event_time": "09/04/2026",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "Welcome to The Caravan Lounge THE CARAVAN LOUNGE is a friendly, owner-operated bar located in the heart of downtown San Jose. As well as being one of San Jose’s oldest live music venues, the Caravan provides other fun activities such as karaoke, comedy, burlesque, pool table, and DJ nights. The Caravan is also extremely affordable for those trying to stretch a budget. And let’s not forget the music! All the shows at the Caravan are FREE! Open 7 days a week 2pm – Close “Aside from the obvious draw of affordable libations poured by heavy-handed barkeeps, The Caravan sets itself apart from other no-frills bars as the place to go to see up-and-coming bands. The bar has hosted plenty of local bands’ first shows, and regularly features smaller touring acts. If you’re a music fan always on the lookout for your new favorite group, make sure to pay attention to who is coming to Caravan.” -Metro FEATURED VIDEOS – Go to our YouTube Channel by clicking here to see more… SEPTEMBER 2026 TUES. SEPT 1st- Karaoke with Ronnie Roach WED. SEPT 2nd – The Caravan Lounge Comedy Show hosted by Chelsea Costanza THURS. SEPT 3rd – SWEAT with DJ SNAQ FRI. SEPT 4th – Rebelskamp, Magick Blues Band, TBA SAT. SEPT 5th – Skool Of Sharks TUES. SEPT 8th- Karaoke with Ronnie Roach WED. SEPT 9th – The Caravan Lounge Comedy Show Hosted by Nyoki THURS. SEPT 10th – Shrine Goth DJ Night with Hex Embrace, C_Death, and Owen FRI. SEPT 11th – Circus Of Sin 10 Year Sinnaversary! Hosted By Some Guy SAT. SEPT. 12th – CaveFest II We Love You Curtis Castro! Abysmal Piss, Ominous Ruin, Lost To The Void TUES. SEPT 15th – Karaoke with Ronnie Roach WED. SEPT 16th -The Caravan Lounge Comedy Show Hosted by Ato Walker THURS. SEPT 17th – TBA FRI. SEPT 18th – TBA SAT. SEPT 19th – Facekicker, American Standard, 12 Steps To Nothing TUES. SEPT 22nd – Karaoke with Ronnie Roach WED. SEPT 23rd- The Caravan Lounge Comedy Show hosted by Matt Kennedy THURS. SEPT 24th – Sweethearts DJ Night FRI. SEPT 25th – Ding Mao, Diamantide, Clou",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "FREE",
              "url": "http://s172518151.onlinehome.us/caravan/site/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-09-03T14:20:40.572990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_acc73b73a35d",
              "venue_id": "venue_wyldflowr_arts",
              "title": "Morley & Chris Bruce: Soul, Jazz & Folk",
              "event_time": "2026-09-04T19:00:00",
              "venue_name": "Wyldflowr Arts",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "809 37th St, Oakland, CA 94609",
              "description": "Morley weaves the",
              "event_types": [
                "live_music",
                "jazz",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_wyldflowr_arts",
                  "source_name": "Wyldflowr Arts",
                  "fetched_at": "2026-09-04T10:03:06.916081Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_wyldflowr_arts|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e4ffd6e9950f",
              "venue_id": "venue_poor_house_bistro",
              "title": "Rockabilly Night with Jinx Jones",
              "event_time": "2026-09-04T18:00:00",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-09-04T18:00:00",
              "event_date": "2026-09-04",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-09-04T10:11:13.938872Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3148b1dcf494",
              "venue_id": "venue_sailing_goat",
              "title": "David Rosewood",
              "event_time": "2026-09-04T17:00:00",
              "venue_name": "Sailing Goat",
              "event_start": "2026-09-04T17:00:00",
              "event_date": "2026-09-04",
              "venue_address": "1900 Stenmark Dr, Richmond, CA 94801",
              "description": "David Rosewood Fri, Sep 04 | Sailing Goat at Point San Pablo Harbor fingerstyle guitarist with a wide range of styles including Jazz, Latin, Classical and Folk Time & Location Sep 04, 2026, 5:00 PM – 8:00 PM Sailing Goat at Point San Pablo Harbor, 1900 Stenmark Dr, Richmond, CA 94801, USA About the event Hi there, I’m David Rosewood, international fingerstyle guitarist. It is my life’s passion to stir the hearts of my audience with mesmerizing guitar music. My wide range of styles evokes my Jazz, Latin, Classical and Folk roots. “I can’t speak enough praise about David and his performance. He has a special knack for drawing the emotion out of a piece to make you really feel something, and he’s right there feeling it with you. ” So far, I have been fortunate to perform for audiences throughout the U.S. and Europe, and have studied under legendary guitar masters at the Royal College of Music, and San Francisco Conservatory. “In May of 2024, I and many others were rewarded with the opportunity to see and hear David perform a solo concert at the San Francisco Conservatory. I was fortunate to find a seat in the front row. He came out, beaming at the audience, composed himself and then began to play. I was mesmerized.” I didn’t grow up in a musical family. Raised by a single mom who worked tirelessly to provide for us, I learned early that resilience and authenticity are non-negotiable. When my sister gave me her old guitar at 14, it became more than an instrument. It was my voice. But finding that voice wasn’t easy. Teachers told me my style was ‘unconventional.’ Mentors urged me to conform. Yet every time I was pushed to fit a mold, I pushed back harder. I wasn’t rebellious...I was certain. Certain that music, for me, wasn’t about rules; it was about raw, unfiltered truth. That conviction carried me farther than I ever imagined. From small rooms to global stages, my art has taken me places I once only dreamed of! Not because I followed the path laid out for me, but beca",
              "event_types": [
                "live_music",
                "jazz",
                "latin_world",
                "classical",
                "folk"
              ],
              "price_info": "Free",
              "url": "https://www.sailinggoatrestaurant.com/event-details/david-rosewood",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sailing_goat",
                  "source_name": "Sailing Goat",
                  "fetched_at": "2026-09-04T10:13:07.105977Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sailing_goat|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_3e389a9ce451",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-09-04",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "Music by Marc Shaiman & Thomas Meehan. Lyrics by Mark Shaiman & Scott Wittman. A 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to change her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "On Stage Now",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-09-04T10:15:07.852694Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-04",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2c386a629f69",
              "venue_id": "venue_cafe_du_nord",
              "title": "Chxrry",
              "event_time": "9/4/2026 8:00 pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-09-04T20:00:00",
              "event_date": "2026-09-04",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Live Nation Presents: Chxrry Presents: The Ego Tour (SOLD OUT) Fri, Sep 4 Doors: 7:00 pm | Show: 8:00 pm Tickets: waitlist All Ages Chxrry makes a lasting impression with her music. Beckoning you to sit shotgun in the passenger seat, she’ll hit the gas and guide you through wild nights that stretch into hazy mornings, the ups and downs of short-lived hookups, and all the excitement of being a Gen-Z twenty-something with nothing to lose and all the time in the world. These wild rides are set to a soundtrack of smoked-out alternative R&B jet-fueled by pop appeal. Chxrry Meet & Greet Upgrade Early entry into the venue Exclusive meet and greet with C​hxrry Personal photograph with C​hxrry Official meet & greet laminate; autographed by C​hxrry Priority merchandise shopping Limited availability *Ticket to the concert sold separately, you will need a show ticket to participate in VIP* ​ email info@cafedunord.com for the code Thank you for purchasing a Chxrry VIP Upgrade package. Buyers will receive an email approximately three days prior to the show date with VIP details, sent to the address submitted at time of purchase. One More Time VIP, the artist, tour, promoter, ticketing company, venue or any other affiliated parties are not responsible for outdated or inaccurate information provided by the consumer. All packages and package contents are non-transferable; no refunds or exchanges; all sales are final. Package elements are subject to change. VIP merchandise items will be distributed at the show. If you have any questions regarding your VIP package elements, please contact info@onemoretimevip.com Cafe Du Nord's Preferred Viewing Available, General Admission Not Included For any event that is listed as 18 or 21 and over, ANY ticket holder unable to present valid identification indicating that they are of age will not be admitted to this event, and will not be eligible for a refund. Any event listed as All Ages, means 6 years of age or older. ALL tickets are standing roo",
              "event_types": [
                "live_music"
              ],
              "price_info": "waitlist",
              "url": "https://cafedunord.com/tm-event/chxrry-presents-the-ego-tour/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cafe_du_nord_and_swedish_american_hall",
                  "source_name": "Cafe Du Nord and Swedish American Hall",
                  "fetched_at": "2026-09-04T10:21:43.132381Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_04d2b89daa0d",
              "venue_id": "venue_roxy",
              "title": "The Hole (Newly Struck 35mm Print)",
              "event_time": "Friday, September 4, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "Set on the eve of the 21st century, Tsai Ming-liang’s fourth feature turns a crumbling Taipei apartment block into one of cinema’s strangest and most tender end-of-the-world romances. Perennial muse Lee Kang-sheng (“the man upstairs”) and Yang Kuei-mei (“the woman downstairs”) are among the building’s last holdouts, refusing evacuation as a mysterious epidemic spreads outside and rain batters the city without end. When a plumber leaves behind an unfinished repair, the man’s floor opens into an accidental passage between two sealed-off lives, turning leaks, trash, pesticide, and petty territorial warfare into a strange form of courtship. Among the most disarmingly funny and cathartic entries in Tsai’s filmography, The Hole finds hope in a world that seems to be falling apart, breaking its deadpan plague scenario open with splendorous Grace Chang musical numbers and poker-faced slapstick.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/the-hole-newly-struck-35mm-print/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-09-04T10:24:35.292955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_47021655fd3c",
              "venue_id": "venue_roxy",
              "title": "Filipiñana",
              "event_time": "Friday, September 4, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "Amid stifling heat and pervasive drought, Isabel (Jorrybell Agoto), a 17-year-old Ilokana from the rural north, works at a posh country club outside Manila, lining up golf balls for powerful men to drive into the verdant horizon. New to the job, she wanders the immaculate grounds sampling its luxuries as members, including an industrialist and his expatriate niece, the club president and his pampered wife, and a slew of Chinese tourists, engage in a complex dance with the club’s doting and subservient staff. But something is rotting beneath the pristine fairways of the elite resort, as Isabel discovers when she tries to return a mislaid golf club to its patriarchal director, Dr. Palanca (Teroy Guzman). The deeper she journeys into its most exclusive corners, the closer she gets to the violent truths of the club, her native Philippines, and her own past..",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/filipinana/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-09-04T10:24:35.292955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_03dc0886e65e",
              "venue_id": "venue_roxy",
              "title": "Colony",
              "event_time": "Friday, September 4, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "Fresh from its Cannes Midnight world premiere and Korea’s biggest local opening of the year, Colony marks Yeon Sang-ho’s return to the territory he radically transformed with Train to Busan and brings with it a nastier species of panic. Inside a Seoul high-rise, a biotech conference becomes ground zero for a fast-mutating virus. The authorities seal the building, turning its glass-and-steel corporate order into a slaughterhouse where every floor brings fresh betrayals, brutal calculations, and new ways to die. Gianna Jun stars as a biotech professor trapped in the outbreak, alongside Ji Chang-wook, Shin Hyun-been, Kim Shin-rok, Go Soo, and Koo Kyo-hwan as the scientist at the center of the disaster. Colony is a zombie movie for the AI age: system-based, smart, hungry for more, and moving too fast to contain.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/colony/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-09-04T10:24:35.292955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_04acbf627a4a",
              "venue_id": "venue_roxy",
              "title": "Teenage Sex and Death at Camp Miasma",
              "event_time": "Friday, September 4, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-09-04",
              "event_date": "2026-09-04",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "After years of slapdash sequels and waning fandom, the Camp Miasma slasher franchise is due for resurrection. And one young director (Hannah Einbinder) is more than up to the task. But when she visits the original’s star, a now-reclusive actress (Gillian Anderson), the two women fall into a blood-soaked world of desire, fear, delirium — under threat from the spear-wielding Little Death.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/teenage-sex-and-death-at-camp-miasma/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-09-04T10:24:35.292955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ca21070282f9",
              "venue_id": "venue_kilowatt",
              "title": "Chalk Teeth, Nail Polish & VOXTAIL",
              "event_time": "Fri 4 Sep ― 7:00pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-04T19:00:00",
              "event_date": "2026-09-04",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Keep track of what’s coming up by saving events, sharing them with friends, or even listening to new music in the app.",
              "event_types": [
                "live_music",
                "rock",
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/Tc6361f8972f?pid=ff10e59d",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-09-04T10:33:38.052132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_be067642798a",
              "venue_id": "venue_kilowatt",
              "title": "DJ On The Rocks",
              "event_time": "Fri 4 Sep ― 9:00pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-04T21:00:00",
              "event_date": "2026-09-04",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Keep track of what’s coming up by saving events, sharing them with friends, or even listening to new music in the app.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/ec9056023fa9?pid=ff10e59d",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-09-04T10:33:38.052132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_05eeb92c96e5",
              "venue_id": "venue_henflings",
              "title": "Vito & Friends Rock Henflings Tavern",
              "event_time": "2026-09-04T20:00:00",
              "venue_name": "Henfling's Tavern",
              "event_start": "2026-09-04T20:00:00",
              "event_date": "2026-09-04",
              "venue_address": "9450 Highway 9, Ben Lomond, CA 95005",
              "description": "Santa Cruz Mountains favorites Vito & Friends return to perform live rock and blues at Henflings Tavern.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://www.facebook.com/HenflingsBarNGrill/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_henflings",
                  "source_name": "Henfling's Tavern",
                  "fetched_at": "2026-09-04T10:41:15.215331Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_henflings|2026-09-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            }
          ]
        },
        "2026-09-05": {
          "date": "2026-09-05",
          "updated_at": "2026-09-04T10:45:46.200846Z",
          "events": [
            {
              "event_id": "evt_e2f4280a1796",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Deep Purple, Kansas, Jefferson Starship",
              "event_time": "2026-09-05T17:00:00",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-09-05T17:00:00",
              "event_date": "2026-09-05",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "Rock legends Deep Purple and Kansas team up for a spectacular co-headlining summer tour at the Shoreline Amphitheatre, with special guest Jefferson Starship. This powerhouse lineup will deliver a night of legendary hard rock and progressive rock classics.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/deep-purple-with-special-guest-kansas-mountain-view-california-09-05-2026/event/1C006471E1BDF020",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-04-13T04:07:50.888386Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ceab304ac10f",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Asian Man Records 30th Anniversary",
              "event_time": "Saturday September 5 2026 7:00PM doors -- music at 7:45 PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-05T19:00:00",
              "event_date": "2026-09-05",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Saturday September 5 2026\n 7:00PM doors -- music at 7:45PM\n  •••  ALL AGES\n$30\n$36.31 in advance [30 face value + 6.31 service fee]\nor $120 for a 4-day pass\n$135.31 in advance [120 face value + 15.31 service fee]\nAsian Man Records 30 Anniversary Celebration\nTBA \n xxx\nTBA \n xxx\nTBA \n xxx\nTBA \n xxx",
              "event_types": [
                "live_music",
                "rock",
                "festival"
              ],
              "price_info": "$30",
              "url": "http://www.bottomofthehill.com/20260905.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-18T07:39:39.622506Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9b486a0e468e",
              "venue_id": "venue_mountain_winery",
              "title": "Lost 80's Live",
              "event_time": "Sep 5, 2026 6:00 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-05T18:00:00",
              "event_date": "2026-09-05",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "featuring Oingo Boingo Former Members, Big Country, The Vapors, The Icicle Works, Dramarama, China Crisis, Musical Youth, B-Movie, KATRINA formerly of Katrina & The Waves",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1339897",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-06-02T10:55:16.293558Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0c9ec282d4ce",
              "venue_id": "venue_the_fillmore",
              "title": "Kamelot - Dark Asylum World Tour",
              "event_time": "sep 5 7pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-09-05T19:00:00",
              "event_date": "2026-09-05",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "The symphonic metal legends bring their theatrical and powerful \"Dark Asylum World Tour\" to the stage. Fans will experience an epic night of melodic power metal, dramatic visuals, and soaring vocals.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$52+",
              "url": "https://www.ticketmaster.com/kamelot-dark-asylum-world-tour-san-francisco-california-09-05-2026/event/1C006087999F27E9",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T21:39:26.952332Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-06-04T10:39:40.145929Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_fillmore|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c832a135c3f7",
              "venue_id": "venue_the_chapel",
              "title": "An Evening With Drink The Sea",
              "event_time": "Sat Sep 5 2026 9:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-09-05T21:00:00",
              "event_date": "2026-09-05",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "(((folkYEAH!))) presents Drink The Sea, featuring Peter Buck (R.E.M.), Barrett Martin (Screaming Trees, Mad Season), Alain Johannes (Eleven, QOTSA), Duke Garwood, and Lisette Garcia, performing alongside projected films by Tad Fettig.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$45.00-$50.00",
              "url": "https://wl.seetickets.us/event/an-evening-with-drink-the-sea/691451?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-06-04T10:29:22.427117Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-10T10:33:42.275715Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_chapel|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0c2a3bc27032",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Brandon Flowers",
              "event_time": "sep 5 8pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-09-05T20:00:00",
              "event_date": "2026-09-05",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "After moving back to Utah, Flowers began to pull the curtain back on The Killers’ most recent album, 2021’s Pressure Machine . Though most often associated with Las Vegas, most of Flowers’ youth actually occurred in Nephi, the small Utah town some two hours south of Salt Lake City. Now back home again, he showed his own children the scenes that made him who he was as a young man. Much of the music Flowers has worked on in the ensuing five years began as a direct continuation, forging deeper into foundational sounds and foundational memories. He began to recognize the “big and shiny fantasy” of Las Vegas that so often courses through The Killers’ music wasn’t the right home for this writing, and he embarked on his first solo endeavor in over a decade. Though Americana and Western stylings have often mingled with the alternative traditions in The Killers’ DNA as far back as their 2006 sophomore outing Sam’s Town all the way on to Pressure Machine , Flowers found that he’d tapped a new, rich vein of his songwriting: “ As I’ve gotten older, I’ve found my way back to my father’s music — ‘Country-Western’ — and discovered that the stories I carry really feel most at home in the skin of this beautiful American tradition .”",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$88.45",
              "url": "https://thefoxoakland.com/events/brandon-flowers-260905",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-30T18:59:56.104919Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-07-03T12:29:20.800264Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-08-28T18:01:37.988102Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8b5d04b77b1f",
              "venue_id": "venue_san_jose_civic",
              "title": "Grupo Duelo – Gravedad Tour 2026",
              "event_time": "Sep 5, 2026 @ 8:00pm",
              "venue_name": "San Jose Civic",
              "event_start": "2026-09-05T20:00:00",
              "event_date": "2026-09-05",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "With over 25 years of experience, Óscar Iván Treviño and his band Duelo have become one of the most beloved and best-selling acts in both Mexico and the United States. They have solidified their place as one of the most important and iconic groups in Regional Mexican music, proudly representing the norteño genre.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Varies",
              "url": "https://events.timely.fun/jc0x91t0/event/78294832",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-07-14T10:57:41.573315Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_503564fbc90a",
              "venue_id": "venue_924_gilman",
              "title": "Membership Meeting",
              "event_time": "Saturday, September 5, 2026 4:00pm-6:00pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-09-05T16:00:00",
              "event_date": "2026-09-05",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "https://zoom.us/j/99973704675",
              "event_types": [
                "community",
                "livestream"
              ],
              "price_info": "",
              "url": "https://zoom.us/j/99973704675",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-07-25T10:30:36.185969Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_924_gilman|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b8fce5257242",
              "venue_id": "venue_924_gilman",
              "title": "MyBloodyShoegaze Fest",
              "event_time": "Saturday, September 5, 2026 7:00pm-10:15pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-09-05T19:00:00",
              "event_date": "2026-09-05",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "Immerse yourself in a sonic showcase of swirling reverb, fuzz, and heavy atmosphere at 924 Gilman. The event gathers a lineup of shoegaze, dream pop, and alternative acts in an all-ages setting.",
              "event_types": [
                "live_music",
                "rock",
                "festival"
              ],
              "price_info": "$$12/$15",
              "url": "http://maps.google.com/?q=$$12/$15",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-07-25T10:30:36.185969Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_924_gilman|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ffad8f6d39bd",
              "venue_id": "venue_the_mighty",
              "title": "Green Gorilla Lounge",
              "event_time": "sep 5 9:30pm",
              "venue_name": "The Great Northern",
              "event_start": "2026-09-05T21:30:00",
              "event_date": "2026-09-05",
              "venue_address": "119 Utah St, San Francisco, CA 94103",
              "description": "Eventbrite - The Great Northern presents Doc Martin | Miguel Migs | David Harness | Loft: DJ M3 & Friends - Saturday, September 5, 2026 at The Great Northern, San Francisco, CA. Find event and ticket information.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$11.28",
              "url": "https://www.eventbrite.com/e/doc-martin-miguel-migs-david-harness-loft-dj-m3-friends-tickets-1994898996600",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_mighty",
                  "source_name": "The Great Northern",
                  "fetched_at": "2026-07-26T11:34:08.774312Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "s_eventbrite_oak",
                  "source_name": "Eventbrite OAK",
                  "fetched_at": "2026-08-11T12:08:52.195132Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_eventbrite_sf",
                  "source_name": "Eventbrite SF",
                  "fetched_at": "2026-08-13T10:57:37.163184Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_mighty|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d8af780a0e8f",
              "venue_id": "venue_oasis",
              "title": "Princess: GAGATHON",
              "event_time": "2026-09-05T21:30:00",
              "venue_name": "Oasis",
              "event_start": "2026-09-05T21:30:00",
              "event_date": "2026-09-05",
              "venue_address": "298 11th St, San Francisco, CA 94103",
              "description": "Little Monsters! Get ready for an epic night featuring Gaga's most iconic stage performances recreated on the Oasis stage! Featuring Jewels Sparkles from RuPaul's Drag Race, and With beats by DJ Mark Kanemura! From So You Think You Could Dance, Mark was also Gaga's lead dancer from The Fame thru Born this Way! If you know us, you know our Gaga nights are the most iconic ones we throw, with high production performances from beginning to end, this is not one to miss!",
              "event_types": [
                "dj_party",
                "community",
                "theater"
              ],
              "price_info": "Starts at $23.53",
              "url": "https://www.eventbrite.com/e/princess-gagathon-w-jewels-sparkles-dj-mark-kanemura-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_oasis",
                  "source_name": "Oasis",
                  "fetched_at": "2026-07-28T17:34:20.083647Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_eventbrite_oak",
                  "source_name": "Eventbrite OAK",
                  "fetched_at": "2026-08-11T12:08:52.195132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_oasis|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f1387cc0097d",
              "venue_id": "venue_thee_stork_club",
              "title": "Legendary Stardust Cowboy",
              "event_time": "sep 5 7pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-09-05T19:00:00",
              "event_date": "2026-09-05",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "This show is 21+ Sat., 9/5/26 Legendary Stardust Cowboy (79th bday gala), Durty Whyte Boots, Girls with Guns, DJ Mitch Cardwell 7:00pm, $10 adv., $12 door LEGENDARY STARDUST COWBOY Norman Carl Odam, know professionally as the Legendary Stardust Cowboy, is considered one of the pioneers of the genre that came to be known as psychobilly in the 1960s. \"A true rock & roll primitive even wilder than cult legend Hasil Adkins, the Legendary Stardust Cowboy played a crude brand of rockabilly obsessed with the Wild West and science fiction, and filled with vocal effects ranging from rebel yells and war whoops to a startling array of animal noises. Norman Carl Odam was born in Lubbock, TX, in 1947; a shy and eccentric child, he began developing his idiosyncratic vocal style at age 14, soon started guitar lessons, and also taught himself bugle and harmonica, among other instruments. Odam became notorious for performing in public spaces -- every morning on the steps of his high school, on the roof of his car near local drive-in restaurants and hangouts, at parties he wasn't invited to -- and attracted a mixture of affection and harassment. After high school, he traveled to California hoping to land television bookings, but found no takers; upon returning to Lubbock, he worked in a warehouse while playing occasional gigs at honky tonks, where audiences were frequently hostile (often assuming he was a hippie making fun of country music).” - All Music DURTY WHYTE BOOTS The Durty Whyte Boots are: Durty Chow Mein, Durty Birdie, Durty Honey Bunny, Durty Daisy Yumessy / garage r&b punk girl band! https://www.instagram.com/thedurtywhyteboots/ GIRLS WITH GUNS https://soundcloud.com/user-21444684",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10/$12",
              "url": "https://wl.seetickets.us/event/the-legendary-stardust-cowboy/700187?afflky=TheeStorkClub",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-08-06T11:16:26.119873Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_c1da6b650ec1",
              "venue_id": "venue_halcyon",
              "title": "NATALIA ROTH",
              "event_time": "09/5/2026 10:00pm",
              "venue_name": "Halcyon",
              "event_start": "2026-09-05T22:00:00",
              "event_date": "2026-09-05",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "NATALIA ROTH the Puerto Rican DJ, Vocalist and Producer fusing minimal tech and techno brings a new essence to the industry and fresh energy to the dance floor! SARA AFSHAR + DOPEY DANA support! the rapidly ascending risk taker on deck!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$12",
              "url": "https://link.dice.fm/n045c3d66918?pid=d6c08999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-07-31T15:20:21.495651Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-06T11:58:22.520624Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_75658dc5850e",
              "venue_id": "venue_roccapulco",
              "title": "City of Reggaeton San Francisco",
              "event_time": "2026-09-05T21:00:00",
              "venue_name": "Roccapulco",
              "event_start": "2026-09-05T21:00:00",
              "event_date": "2026-09-05",
              "venue_address": "3140 Mission St, San Francisco, CA 94110",
              "description": "🎧 Top Bay Area DJs🔥 The best in Reggaeton, Dembow, Latin Hits, Hip-Hop & Top 40💨 CO2 Effects📸 Professional Photography & Videography🍾 VIP Bottle Service Available🌉 An incredible atmosphere inspired by the energy of the city",
              "event_types": [
                "dj_party"
              ],
              "price_info": "From $25.70",
              "url": "https://www.tickeri.com/events/66b8dfcb0b03470003b0d2d6/city-of-reggaeton-labor-day-weekend-edition-9-5-2026-doors-9pm-21-plus",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roccapulco",
                  "source_name": "Roccapulco",
                  "fetched_at": "2026-08-10T10:27:41.009465Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_eventbrite_sf",
                  "source_name": "Eventbrite SF",
                  "fetched_at": "2026-08-13T10:57:37.163184Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roccapulco|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3e174ae4cfba",
              "venue_id": "venue_ggp_music_concourse",
              "title": "5th Annual Surf Music Festival",
              "event_time": "2026-09-05T14:00:00",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-09-05T14:00:00",
              "event_date": "2026-09-05",
              "venue_address": "San Francisco, CA 94118",
              "description": "Annual Surf Music Festival at the Golden Gate Bandshell featuring The Seismics, Surf Monster, The New Shockwaves, and Uncle Sea Monster.",
              "event_types": [
                "festival",
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://illuminate.org/venues/golden-gate-bandshell/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_illuminate_bandshell",
                  "source_name": "Illuminate Bandshell",
                  "fetched_at": "2026-08-12T11:19:48.156102Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_illuminate",
                  "source_name": "Illuminate",
                  "fetched_at": "2026-08-22T21:28:37.918625Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-08-30T10:14:46.192640Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_a47604cb3eb4",
              "venue_id": "venue_audio",
              "title": "Borgeous",
              "event_time": "2026-09-05T21:30:00",
              "venue_name": "Audio",
              "event_start": "2026-09-05T21:30:00",
              "event_date": "2026-09-05",
              "venue_address": "316 11th St, San Francisco, CA 94103",
              "description": "BORGEOUS makes his way to Audio for a club set with support from Azimi.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$19+ | 21+",
              "url": "https://audiosf.com/event/borgeous-09-05-26/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audio",
                  "source_name": "Audio",
                  "fetched_at": "2026-08-15T10:43:36.782348Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_audio|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_534ce79ed93f",
              "venue_id": "venue_stay_gold_deli",
              "title": "East Bay Underground",
              "event_time": "sep 5 6pm",
              "venue_name": "Stay Gold Deli",
              "event_start": "2026-09-05T18:00:00",
              "event_date": "2026-09-05",
              "venue_address": "2635 San Pablo Ave, Oakland, CA 94612",
              "description": "Live punk and hardcore show featuring East Bay Underground, Las Ratas, Raw Force, Blood Compact, and Todo Kontra. All ages.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10",
              "url": "http://www.foopee.com/punk/the-list/by-club/Stay_Gold_Deli.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_stay_gold_deli",
                  "source_name": "Stay Gold Deli",
                  "fetched_at": "2026-08-31T16:43:30.435878Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_stay_gold_deli|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_9e9afa495772",
              "venue_id": "venue_rickshaw_stop",
              "title": "Yuma Abe",
              "event_time": "sep 5 9pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-09-05T21:00:00",
              "event_date": "2026-09-05",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Supporting Talent: Jared Mattson x Chili Corder, Adam Spry",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$20/$24",
              "url": "https://wl.seetickets.us/event/yuma-abe/692760?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-09-02T10:05:07.555428Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_45191ce7b6c5",
              "venue_id": "venue_great_american_music_hall",
              "title": "Pallbearer, Ordh",
              "event_time": "sep 5 8pm",
              "venue_name": "Great American",
              "event_start": "2026-09-05T20:00:00",
              "event_date": "2026-09-05",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Foundations of Burden Tour | Ordh, Chrome Ghost | with Ordh, Chrome Ghost",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25/$30",
              "url": "https://wl.seetickets.us/event/pallbearer/696864?afflky=GreatAmericanMusicHall",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-08-16T10:06:47.988032Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_1954d268bc15",
              "venue_id": "venue_neck_of_the_woods",
              "title": "Rav, Cavalier, Teller Banks",
              "event_time": "sep 5 8pm",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-09-05T20:00:00",
              "event_date": "2026-09-05",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "all ages; $65 vip",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$22/$27",
              "url": "https://www.neckofthewoodssf.com/tm-event/exopocalypse-tour-rav-cavalier-teller-bank/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_neck_of_the_woods",
                  "source_name": "Neck of the Woods",
                  "fetched_at": "2026-08-28T21:30:17.641164Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_68243b364a0f",
              "venue_id": "venue_public_works",
              "title": "Partiboi69 & Harrison BDP",
              "event_time": "2026-09-05T22:00:00",
              "venue_name": "Public Works",
              "event_start": "2026-09-05T22:00:00",
              "event_date": "2026-09-05",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "Goldenvoice presents high-octane club selections from Partiboi69 and Harrison BDP at Public Works.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$30 - $57",
              "url": "https://dothebay.com/events/2026/9/5/partiboi69-harrison-bdp-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-08-17T10:45:28.908286Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_resident_advisor_sf_ra",
                  "source_name": "Resident Advisor SF (RA)",
                  "fetched_at": "2026-08-28T22:15:14.237667Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_public_works|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2a10135da773",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Six Roses",
              "event_time": "September 5 @ 6:00 pm - 9:00 pm",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-05T18:00:00",
              "event_date": "2026-09-05",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Six Roses at Etcetera Wine Bar brings the multi‑genre collaboration between saxophonist David Boyce and guitarist/loop artist Michael Cavaseno into the Mission’s cozy wine bar, turning the room into an intimate sound lab for improvisation and texture. Blending saxophones, guitar, and live loops, Six Roses moves fluidly across jazz, ambient, soul, and experimental sounds, making...",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/six-roses/2026-09-05/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-08-17T15:04:14.240114Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-08-27T10:29:06.480626Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_392d31b4728a",
              "venue_id": "venue_el_rio",
              "title": "Al Akhbar Jazz Album Debut",
              "event_time": "2026-09-05T15:00:00",
              "venue_name": "El Rio",
              "event_start": "2026-09-05T15:00:00",
              "event_date": "2026-09-05",
              "venue_address": "3158 Mission St, San Francisco, CA 94110",
              "description": "Mazikaa presents: Al Akhbar Jazz Album Debut! Join us for a lovely day on the patio featuring a live performance from Al Akhbar celebrating their album release! BUY ADVANCE TICKETS HERE Sunday,...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$25",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_el_rio",
                  "source_name": "El Rio",
                  "fetched_at": "2026-08-20T11:56:50.314808Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_el_rio|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c26d873b9f72",
              "venue_id": "venue_el_rio",
              "title": "Get Busy!",
              "event_time": "2026-09-05T21:00:00",
              "venue_name": "El Rio",
              "event_start": "2026-09-05T21:00:00",
              "event_date": "2026-09-05",
              "venue_address": "3158 Mission St, San Francisco, CA 94110",
              "description": "GET BUSY AT EL RIO! Featuring resident DJs Baysik + Cold SF + ZMO Every first Saturday! 9pm - close / Stage Room $10 Cover",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_el_rio",
                  "source_name": "El Rio",
                  "fetched_at": "2026-08-20T11:56:50.314808Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_el_rio|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b19b9a6df985",
              "venue_id": "venue_f8",
              "title": "Mostly Cloudy: B2B2B2B2B",
              "event_time": "2026-09-05T21:00:00",
              "venue_name": "F8",
              "event_start": "2026-09-05T21:00:00",
              "event_date": "2026-09-05",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "Mostly Cloudy presents an all-b2b club night featuring QUEENIE b2b felipe d, Akumen b2b Andy Oro, Milli Meng b2b YANNI, xtcemi b2b HEAVENLY ARCH, Profesito b2b DJ Saratonin, and MALICIEL b2b ANDYLAND.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10-15 | 21+",
              "url": "https://ra.co/events/1994965359092",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-08-20T11:57:49.841413Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_f8|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9f0b837a9798",
              "venue_id": "venue_sap_center",
              "title": "Monster Jam",
              "event_time": "2026-09-05 2026-09-05T13:00:00",
              "venue_name": "SAP Center",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://www.sapcenter.com/events/monster-jam",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-08-20T12:59:28.269789Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sap_center|2026-09-05",
              "run_id": "run_f93879bfa6c1",
              "run_label": "Monster Jam, Sep 4 – Sep 6",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_ccee2fff71d8",
              "venue_id": "venue_the_riptide",
              "title": "O69 BINGO! By the fireplace",
              "event_time": "Saturday, September 5 6:00 PM - 8:00 PM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-05T18:00:00",
              "event_date": "2026-09-05",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "Every Saturday Jean the Bingo Queen or Dr. Bird make dreams come true with Bingo. It's Free to play, so don't miss the fun! Next level fun with O69 Jell-O shots...",
              "event_types": [
                "sports"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_82cbe6531620",
              "venue_id": "venue_the_riptide",
              "title": "The Mike Mulqueen Band (Funk)",
              "event_time": "Saturday, September 5 9:30 PM - 11:59 PM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-05T21:30:00",
              "event_date": "2026-09-05",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "Mike and his funky crew take over the Riptide - better come and get you some",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9367e071a543",
              "venue_id": "venue_rio_theatre_sc",
              "title": "Public Image Ltd.",
              "event_time": "2026-09-05",
              "venue_name": "Rio Theatre",
              "event_start": "2026-09-05T20:00:00",
              "event_date": "2026-09-05",
              "venue_address": "1205 Soquel Ave, Santa Cruz, CA 95062",
              "description": "with Special Guests Plague VendorAfter fronting the Sex Pistols, John Lydon formed post-punk originators Public Image Ltd (PiL). Widely regarded as one of the most innovative bands of all time, their music and vision earned them 5 UK Top 20 Singles and 5 UK Top 20 Albums.With a shifting line-up and unique sound – fusing rock, dance, folk, pop and dub – Lydon guided the band from their debut album ‘First Issue’ in 1978 through to 1992’s ‘That What Is Not’, before a 17 year hiatus. Lydon reactivated PiL in 2009, touring extensively and releasing three critically acclaimed albums ‘This is PiL’ in 2012 followed by ‘What The World Needs Now…’ in 2015 and ‘End of World’ in 2023.PiL continue to challenge and thrive.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n  \n\n\n\n\n\n\n  Show time: 8:00 PM, doors 7:00 PMTickets: $54Advance tickets: www.eventbrite.comEvent website: www.folkyeah.com",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$77.06 – $82.53",
              "url": "https://www.riotheatre.com/events-2/2026/9/5/publicimage",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rio_theatre_sc",
                  "source_name": "Rio Theatre",
                  "fetched_at": "2026-08-22T11:37:08.858495Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_visit_santa_cruz_county",
                  "source_name": "Visit Santa Cruz County",
                  "fetched_at": "2026-08-22T18:34:05.859446Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rio_theatre_sc|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b13e087eb8b7",
              "venue_id": "venue_crepe_place",
              "title": "Buffalo Blues Trio",
              "event_time": "2026-09-05",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-05T20:00:00",
              "event_date": "2026-09-05",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "Santa Cruz Mountains locals Michele Murphy, Diane Bock, and Ramon Marc Butler share a love of the blues. The spark for their group, the Buffalo Blues Trio, was struck in 2018 when Michele and a girlfriend went to see the Tony Award-nominated Broadway musical, A Night With Janis Joplin at the Santa Cruz Civic. “I was on the edge of my seat with tears running down my face at the story of Janis’ life,” Michele recalls. She approached her friend Ramon, an experienced slide guitar player and former bandmate from the band Sleepless Nights, about putting together a group that would pay homage to Janis’ raw, soulful sound and other female singer-songwriters who influenced the blues. Then Michele met jazz vocalist and bass player Diane Bock at open mic night at Michael’s on Main, and the three musicians hit it off, spending the ensuing years coalescing their chops diving deep into the music of notable blues divas from the 1920s through the 1960s.",
              "event_types": [
                "live_music"
              ],
              "price_info": "FREE",
              "url": "https://thecrepeplace.com/shows-list/buffalo-blues-trio-free-brunch-show-on-the-garden-stage-11am-to-1pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f6d8fdc38860",
              "venue_id": "venue_abbott_square",
              "title": "HANDS ON FIRE",
              "event_time": "Saturday, September 5, 2026 7:00 PM - 10:00 PM",
              "venue_name": "Abbott Square Market",
              "event_start": "2026-09-05T19:00:00",
              "event_date": "2026-09-05",
              "venue_address": "725 Front St, Santa Cruz, CA 95060",
              "description": "Crossing all genres of music, experience the dynamic energy of innovative San Francisco artist, James Henry. Experience a new, fresh, modern style. Master percussionist, soulful vocalist, undeniably charismatic James Henry and his band Hands on Fire give a passionate and engaging performance every single time!",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.abbottsquaremarket.com/events/hands-on-fire",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_abbott_square",
                  "source_name": "Abbott Square Market",
                  "fetched_at": "2026-08-22T12:39:51.694804Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_abbott_square|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6bacc1be0332",
              "venue_id": "venue_the_lucky_horseshoe",
              "title": "Bernal Equinox",
              "event_time": "Sat, Sep 05",
              "venue_name": "The Lucky Horseshoe",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "453 Cortland Ave, San Francisco, CA 94110",
              "description": "Bernal Equinox Sat, Sep 05 | The Lucky Horseshoe From the great neighborhood, Bernal Heights, located inside the city of San Francisco. A group of various musicians making and breaking hearts with gentle sounds of psychedelic improvised inspiration Free show! No Ticket Needed! See other events Time & Location Sep 05, 2026, 8:00 PM – 11:30 PM The Lucky Horseshoe, 453 Cortland Ave, San Francisco, CA 94110, USA Share this event",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.theluckyhorseshoebar.com/event-details/bernal-equinox",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lucky_horseshoe",
                  "source_name": "The Lucky Horseshoe",
                  "fetched_at": "2026-08-22T14:16:43.334408Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_lucky_horseshoe|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cc500b2a81bd",
              "venue_id": "venue_bayfront_theater",
              "title": "Spontaneous Broadway",
              "event_time": "2026-09-05",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "In this fully improvised musical show, cast members build an original, full-length Broadway-style production live on stage based on audience-submitted song titles.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Not specified",
              "url": "https://www.improv.org/shows",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-08-22T15:11:24.975133Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-09-05",
              "run_id": "run_770a2611a1ad",
              "run_label": "Spontaneous Broadway, Sep 5 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5be220a8a79c",
              "venue_id": "venue_crows_nest_sc",
              "title": "LOCOMOTIVE BREATH",
              "event_time": "Saturday September 5th 08:00 PM",
              "venue_name": "The Crow's Nest",
              "event_start": "2026-09-05T20:00:00",
              "event_date": "2026-09-05",
              "venue_address": "2218 East Cliff Dr, Santa Cruz, CA 95062",
              "description": "Saturday September 5th Classic rock Starts at 08:00 PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$8 cover",
              "url": "https://locomotivebreath.us/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crows_nest_sc",
                  "source_name": "The Crow's Nest",
                  "fetched_at": "2026-08-22T15:19:13.909618Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crows_nest_sc|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ddcfd37f473b",
              "venue_id": "venue_woodhouse_brewing",
              "title": "A TRIBUTE TO SLY & THE FAMILY STONE",
              "event_time": "Saturday, September 5, 2026 7:00 PM",
              "venue_name": "Woodhouse Blending & Brewing",
              "event_start": "2026-09-05T19:00:00",
              "event_date": "2026-09-05",
              "venue_address": "119 Madrone St, Santa Cruz, CA 95060",
              "description": "This ensemble of mostly Bay Area/Marin musicians played what was supposed to be a “two-off” Sly & The Family Stone tribute this past March at Hopmonk Novato and Moe’s Alley in Santa Cruz.\n\nMagic happened during those two shows, and everyone agreed, just with facial expressions and body language, that we must keep this going and do more shows.  Dan “Lebo” Lebowitz, Vicki Randle, Ray White, Mookie Siegel, Ezra Lipp, Steve Adams, Marcus Stephens and Brendan Liu were the perfect ensemble to interpret Sly’s music those two fantastic evenings.  Vocals, instrumentation, passion and spirit all turned up to 11. \n\nFor the September ’26 shows, we are thrilled to announce that Natalie Cressman will be joining the ensemble on trombone and vocals.  She’s a tenured member of the Trey Anastasio Band among other incredible projects.\n\nThis project is FUN and it fully delivered in March.  That was just a warmup!  These Sept shows will be talked about and cherished for a very long time!\n\nTickets:\n\nBooking powered by FareHarbor\n\nfareharbor.com",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.woodhousebrews.com/events/2026/9/5/a-tribute-to-sly-amp-the-family-stone",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_woodhouse_brewing",
                  "source_name": "Woodhouse Blending & Brewing",
                  "fetched_at": "2026-08-22T15:55:04.316453Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_woodhouse_brewing|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_13fb5a078cb7",
              "venue_id": "venue_roaring_camp",
              "title": "LABOR DAY WEEKEND",
              "event_time": "September 5-7",
              "venue_name": "Roaring Camp Railroads",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "5401 Graham Hill Rd, Felton, CA 95018",
              "description": "This Labor Day Weekend, take either the Redwood Forest Steam Train or the Santa Cruz Beach Train. Join us in the Town of Roaring Camp for family-friendly activities and live music from Steve Bennett.",
              "event_types": [
                "live_music",
                "community",
                "festival"
              ],
              "price_info": "Buy Tickets",
              "url": "https://fareharbor.com/embeds/book/roaringcamp/?full-items=yes&flow=208500",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roaring_camp",
                  "source_name": "Roaring Camp Railroads",
                  "fetched_at": "2026-08-22T16:13:37.587446Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roaring_camp|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e764ee591352",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Alice for Wonderland",
              "event_time": "2026-09-05",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-05",
              "run_id": "run_304a2c902844",
              "run_label": "Alice for Wonderland, Aug 22 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_0622621770a6",
              "venue_id": "venue_the_marsh_sf",
              "title": "Dan Hoyle TAK",
              "event_time": "2026-09-05",
              "venue_name": "The Marsh SF",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "Dan Hoyle’s Takes All Kinds Winner of SF Bay Area Critics Circle Award “Best Solo Performance” Live & In Person at The Marsh San Francisco Mainstage Written & Performed by Dan Hoyle Directed by Aldo Billingslea & Michael Moran Developed with Charlie Varon Online ticket sales close 2 hours before each performance, and additional tickets may be available for purchase at the door. August 1 – September 18, 2026 Select Fridays at 7:30 pm, Select Saturdays at 5:00 pm (please check ticket link for show dates and times) May 8 – 100th Performance & Post-show Talkback with Mark Follman, National Editor of Mother Jones magazine Award-winning journalist Mark Follman is the national affairs editor at Mother Jones and author of the bestselling book, “Trigger Points: Inside the Mission to Stop Mass Shootings in America” May 22 – Post-show Talkback with Arlie Hochschild, Berkeley Sociologist and author of Stolen Pride Named one of Barack Obama’s Favorite Books of 2024 and a New York Times Notable Book of the Year. For all the attempts to understand the state of American politics and the blue/red divide, we’ve ignored what economic and cultural loss can do to pride . In Stolen Pride , renowned sociologist Arlie Russell Hochschild ventures to Appalachia to uncover the “pride paradox” that has given the right’s appeals such resonance. June 6 – Post-show Talkback on The Science Behind How People’s Minds Change with UCSF Professor and Researcher Michael Geschwind Michael Geschwind, MD, PhD, is a professor of neurology at the UCSF Weill Institute for Neurosciences and a clinician-researcher at the UCSF Edward and Pearl Fein Memory and Aging Center. A behavioral neurologist, he specializes in understanding how changes in thinking, behavior, emotion, and movement reflect underlying brain changes. In his clinical work, he evaluates patients with memory disorders, rapidly progressive dementias, movement disorders, and other neurological conditions, using detailed assessments of cognition, be",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://themarsh.org/shows_and_events/marshstream/dan-hoyle-takes-all-kinds/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-08-22T17:28:42.838285Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-09-05",
              "run_id": "run_76a851d0a0e5",
              "run_label": "Dan Hoyle TAK, Aug 1 – Sep 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_614c176c38b5",
              "venue_id": "venue_bargetto_winery",
              "title": "Wine Club Summer Celebration",
              "event_time": "09/05/2026 12:30 pm - 3:00 pm",
              "venue_name": "Bargetto Winery",
              "event_start": "2026-09-05T12:30:00",
              "event_date": "2026-09-05",
              "venue_address": "3535 N Main St, Soquel, CA 95073",
              "description": "Bargetto Winery would like to invite Wine Club Members to our “Wine Club Summer Celebration” on Saturday, September 5th from 12:30-3:00 at our Creekside Courtyard. Enjoy a Hawaiian lunch, award winning wines and barrel sampling, and live music from The Victor Ohana Hawaiian Band with Hula Dancers. $50/person and Club Members may also make reservations […]",
              "event_types": [
                "community"
              ],
              "price_info": "$50/person",
              "url": "https://bargetto.com/events2/exclusive-wine-club-summer-celebration/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bargetto_winery",
                  "source_name": "Bargetto Winery",
                  "fetched_at": "2026-08-22T19:05:36.747276Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bargetto_winery|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_65d8806649d2",
              "venue_id": "venue_scpl_downtown",
              "title": "Community Crafters @ Boulder Creek",
              "event_time": "September 05 2026 10:00am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-05T10:00:00",
              "event_date": "2026-09-05",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Join us each Saturday morning for a relaxing time crafting with your neighbors.",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15202669",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d6dd9bdd7efa",
              "venue_id": "venue_scpl_downtown",
              "title": "English Language Conversation Group",
              "event_time": "September 05 2026 10:00am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-05T10:00:00",
              "event_date": "2026-09-05",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "In partnership with the Volunteer Center Literacy Program",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15223963",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c7a3bb6cfa62",
              "venue_id": "venue_scpl_downtown",
              "title": "Family Storytime",
              "event_time": "September 05 2026 10:30am - 11:30am",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-05T10:30:00",
              "event_date": "2026-09-05",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Step into a world of imagination with stories, rhymes, and songs for children ages 0?8, shared with families and caregivers in a warm, welcoming space.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15727863",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f682d9586296",
              "venue_id": "venue_scpl_downtown",
              "title": "The Riveted Readers Book Discussion Club",
              "event_time": "September 05 2026 10:30am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-05T10:30:00",
              "event_date": "2026-09-05",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Have you been hankering for an in-person book club? Join us on the first Saturday of the month from 10:30AM-12PM in our cozy Fireside Room for a friendly book discussion group.",
              "event_types": [
                "community",
                "literary"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16575548",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fd6b38119415",
              "venue_id": "venue_scpl_downtown",
              "title": "Cuéntame un Cuento",
              "event_time": "September 05 2026 10:30am - 11:15am",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-05T10:30:00",
              "event_date": "2026-09-05",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "¡Acompáñanos en nuestro nuevo horario, cada primer sábado del mes!",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17188713",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ecdf1d40bd85",
              "venue_id": "venue_scpl_downtown",
              "title": "Soul Collage",
              "event_time": "September 05 2026 12:00pm - 3:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-05T12:00:00",
              "event_date": "2026-09-05",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Manifest your visions, desires, and dreams through the art of Soul Collage!",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15425090",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_df4a3b6c0e7e",
              "venue_id": "venue_scpl_downtown",
              "title": "Are You Game?",
              "event_time": "September 05 2026 12:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-05T12:00:00",
              "event_date": "2026-09-05",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Play tabletop board games and have some fun!",
              "event_types": [
                "community",
                "sports"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16478695",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8692e2e20d67",
              "venue_id": "venue_scpl_downtown",
              "title": "Death Cafe @ Downtown",
              "event_time": "September 05 2026 1:30pm - 3:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-05T13:30:00",
              "event_date": "2026-09-05",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "A safe space to explore questions and feelings about dying",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/14835975",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_42a5de158fc9",
              "venue_id": "venue_the_418_project",
              "title": "Christian Hippie Comics of the 1970s",
              "event_time": "Saturday, September 5, 2026\n7:30 PM - 9:30 PM",
              "venue_name": "The 418 Project",
              "event_start": "2026-09-05T19:30:00",
              "event_date": "2026-09-05",
              "venue_address": "155 S River St, Santa Cruz, CA 95060",
              "description": "Religion and myth scholar Amy Slonaker will present an illustrated lecture on comic books from the 1970s designed by Christian Evangelica...",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://the418project.org/events/the-psychedelic-art-of-1970s-christian-hippie-comics",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_418_project",
                  "source_name": "The 418 Project",
                  "fetched_at": "2026-08-22T20:30:04.363966Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_418_project|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_37053f19948f",
              "venue_id": "venue_the_midway",
              "title": "Purple Disco Machine",
              "event_time": "2026/09/05 Sat: Sep 5 (3pm)",
              "venue_name": "The Midway",
              "event_start": "2026-09-05T15:00:00",
              "event_date": "2026-09-05",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "funky house, disco house, deep house",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$65 b4 430 / $75+ | 21+",
              "url": "https://www.tixr.com/groups/midwaysf/events/electroluxx-block-party-purple-disco-machine-rupaul-more-188276",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_028bfe098d29",
              "venue_id": "venue_audium",
              "title": "Yiddish and Sufiana Archives",
              "event_time": "2026/09/05 Sat: Sep 5 (6pm-10pm)",
              "venue_name": "Audium",
              "event_start": "2026-09-05T18:00:00",
              "event_date": "2026-09-05",
              "venue_address": "1616 Bush St, San Francisco, CA 94109",
              "description": "folk, house",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$22 | 18+",
              "url": "https://ra.co/events/2507293",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_audium|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_167f67e249e0",
              "venue_id": "venue_cat_club",
              "title": "Bootie Mashup Classics: 23-Year Anniversary",
              "event_time": "2026/09/05 Sat: Sep 5 (9pm-2am)",
              "venue_name": "Cat Club",
              "event_start": "2026-09-05T21:00:00",
              "event_date": "2026-09-05",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "Bootie Mashup turns 23 this month, so to celebrate our long, legendary history in San Francisco nightlife, we're digging deep into the vaults to play our most classic mashups! Our “Best of Bootie Mashup” mixtapes and monthly “Top 10” lists have showcased the best mashups in the world ever since 2003, so we’ll be spinning many of these, as well as the most viral ones, to get you on the dance floor. Complete with unhinged drag shows and birthday surprises! (Okay, it’s cupcakes. Cupcakes are the birthday surprises.)",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10 pre / $15 | 21+",
              "url": "https://www.eventbrite.com/e/bootie-mashup-classics-23-year-anniversary-tickets-1996235752874",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_cat_club",
                  "source_name": "Cat Club",
                  "fetched_at": "2026-09-03T13:24:58.141502Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_b90f9d3e2b83",
              "venue_id": "venue_cry_baby",
              "title": "Hoochie House",
              "event_time": "2026/09/05 Sat: Sep 5 (9pm-2am)",
              "venue_name": "Cry Baby",
              "event_start": "2026-09-05T21:00:00",
              "event_date": "2026-09-05",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "ghettotech, house, club, booty bass",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$19 | 21+",
              "url": "https://www.ticketweb.com/event/id/15011023",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cry_baby|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_570a6af2c009",
              "venue_id": "venue_madarae",
              "title": "Tim Engelhardt",
              "event_time": "2026/09/05 Sat: Sep 5 (9pm-3am)",
              "venue_name": "Madarae",
              "event_start": "2026-09-05T21:00:00",
              "event_date": "2026-09-05",
              "venue_address": "46 Minna St, San Francisco, CA 94105",
              "description": "melodic house, progressive house, afro house, indie dance, organic house",
              "event_types": [
                "dj_party"
              ],
              "price_info": "free w/rsvp b4 11pm / $10-23+ | 21+",
              "url": "https://posh.vip/f/db997?t=19hz",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_madarae",
                  "source_name": "Madarae",
                  "fetched_at": "2026-08-26T12:13:29.475695Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madarae|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_12b8060de11b",
              "venue_id": "venue_dna_lounge",
              "title": "Afterlife",
              "event_time": "2026/09/05 Sat: Sep 5 (9:30pm-2am)",
              "venue_name": "DNA Lounge",
              "event_start": "2026-09-05T21:30:00",
              "event_date": "2026-09-05",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "downtempo, witch house, midtempo, darkwave, industrial, synthwave",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10 pre / $15 | 18+",
              "url": "https://www.dnalounge.com/calendar/2026/09-05d.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_8bb5e7aceabd",
              "venue_id": "venue_beauregard_vineyards",
              "title": "Girasol Pizza in the Redwoods",
              "event_time": "2026-09-05 Sunday, September 6, 2026",
              "venue_name": "Beauregard Vineyards",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "10 Pine Flat Rd, Santa Cruz, CA 95060",
              "description": "Enjoy freshly baked artisan pizzas crafted by Girasol paired with estate wines beneath the towering redwood canopy at Beauregard Vineyards.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_beauregard_vineyards",
                  "source_name": "Beauregard Vineyards",
                  "fetched_at": "2026-08-22T22:01:13.013350Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_beauregard_vineyards|2026-09-05",
              "run_id": "run_47f3734b9d2e",
              "run_label": "Girasol Pizza in the Redwoods, Sep 5 – Sep 6",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9339cc3aedf0",
              "venue_id": "venue_the_sound_room",
              "title": "Jazz Mafia play Cannonball Adderley",
              "event_time": "Saturday, September 5, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-09-05T19:30:00",
              "event_date": "2026-09-05",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "One of the great alto saxophonists, Cannonball Adderley , is known for playing with such greats such as his younger brother, coronetist Nat as well as Miles Davis, and John Coltrane in the classic recordings of Milestones and Kind of Blue. For this show, the Jazz Mafia – an eclectic artist collective of forward-thinking and accomplished players in Electro, Hip-Hop, World, Classical, and Jazz take on this jazz giant!\n\nTwenty years in the making, Jazz Mafia is a prolific staple of the quintessential San Francisco sound, uniting creative and accomplished Bay Area instrumentalists, vocalists, MCs, composers, and arrangers.\n\nThis event features\n\nJohn Palowich - alto sax\n\nMike Olmos - trumpet\n\nAdam Theis - trombone\n\nColin Hogan - piano\n\nJoshua Thurston- Milgrom - upright bass\n\nHenry Plumb - drums\n\nTickets at Jazz Mafia play Cannonball Adderley",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/jazz-mafia-play-cannonball-adderley-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-08-26T10:25:42.190144Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f51f2d214f7e",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Late Set: Simon Rowe Organ Trio",
              "event_time": "Saturday, September 5, 2026 @ 10:30pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-05T22:30:00",
              "event_date": "2026-09-05",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Keeping folks up past 10 pm in SF is no easy feat, but Key’s owner Simon Rowe has been showcasing the best of the Bay Area’s organ trios in his...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $20 per show",
              "url": "https://keysjazzbistro.com/event/late-set-simon-rowe-organ-trio-63/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-08-26T10:46:01.447514Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-08-30T10:45:19.995654Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_57ee03000bca",
              "venue_id": "venue_castro_theater",
              "title": "DUNKIRK",
              "event_time": "Saturday, September 05, 2026\nDoors: 7:00 pm | Show: 8:00 pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-05T20:00:00",
              "event_date": "2026-09-05",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "We strongly believe that if we do everything we can to treat everyone as we ourselves would wish to be treated, we can succeed in our efforts to “turn everyone on” to the magic of the live music experience. That said, everyone’s case is individual and each venue and show has its own unique challenge. We encourage you to reach out to us directly to purchase tickets and make requests for special accommodations or needs for any event at any venue we present. We will do our very best to accommodate you with an ease of service that will exceed all expectations.",
              "event_types": [
                "film"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/dunkirk-260906",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-08-26T11:11:53.167543Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-08-28T18:01:37.988102Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f297bbbf77de",
              "venue_id": "venue_rock_the_dock",
              "title": "Flannel",
              "event_time": "2026-09-05T15:30:00",
              "venue_name": "Rock the Dock",
              "event_start": "2026-09-05T15:30:00",
              "event_date": "2026-09-05",
              "venue_address": "459 Seaport Court, Redwood City, CA 94063",
              "description": "90's Pop, Alternative Rock, and Grunge live concert.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free admission ($5-$20 suggested donation)",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rock_the_dock",
                  "source_name": "Rock the Dock",
                  "fetched_at": "2026-08-26T11:47:48.099004Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rock_the_dock|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_a6fab6c98a76",
              "venue_id": "venue_the_freight__salvage",
              "title": "Dom Flemons",
              "event_time": "2026-09-05T10:30:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-05T10:30:00",
              "event_date": "2026-09-05",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Account Login Cart Time remaining: 00:00 Enter Promo Code Promo Code (Optional) Activate Code Promo Code View Cart 0 Your cart has expired Your order contained expired items and your shopping cart has been emptied. Close Enter Promo Code Dom Flemons’ Mexican-American Roots and the Celebration of Lalo Guerrero, September 5, 2026 11:00AM Event Summary From September 5, 2026 11:00AM to November 7, 2026 11:00AM September 5, 2026 11:00AM Dom Flemons’ Mexican-American Roots and the Celebration of Lalo Guerrero LaloFest Workshops This online presentation is the first of a series of virtual and in-person lead-up events to The Freight's upcoming Lalo Guerrero Legacy Festival on November 6 & 7, 2026. Join Grammy-winning musician Dom Flemons and his wife/creative collaborator Vania Kinard for a virtual exploration of Mexican and Chicano musical heritage. This session centers on the legendary \"Father of Chicano Music,\" Lalo Guerrero , and the deep cultural music that defines the American Southwest. The event features an intimate conversation between Dom and Vania, offering a behind-the-scenes look at their archival research, their music collection, Dom’s Mexican-American ancestry, and his family’s music legacy that extends as far back as the late 1800s. Together, they will explore the significance of preserving these sounds and the stories they tell about Mexicans and Chicano identity. Dom reflects deeply on his personal connection to this history, tracing his Mexican-American roots back to his family’s longstanding presence in Phoenix. As a 6th generation Black Mexican from the Southwest, Dom has connected his family memories and his grandmother’s stories to Lalo Guerrero’s broader legacy. This discussion illustrates how Chicano music is a foundational pillar of the American songbook rather than a mere subgenre. From the rhythmic pulse of the mid-century era to the modern resonance of heritage, this event offers a profound look at the music that shaped the southwestern region",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "SLIDING SCALE $0+",
              "url": "https://secure.thefreight.org/16025/16026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_214d707ffb54",
              "venue_id": "venue_the_freight__salvage",
              "title": "Bettye LaVette",
              "event_time": "2026-09-05T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-05T19:00:00",
              "event_date": "2026-09-05",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Legendary soul and blues vocalist Bettye LaVette delivers a deeply emotive, powerful performance spanning her storied musical career.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$49/$54\n(INCLUDES ALL FEES)",
              "url": "https://secure.thefreight.org/15968/15970",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7d12364f3a0e",
              "venue_id": "venue_meyhouse",
              "title": "Pedro José Pastrana Quartet",
              "event_time": "Sep 05, 2026, 5:00 PM – 8:00 PM",
              "venue_name": "Meyhouse Palo Alto",
              "event_start": "2026-09-05T17:00:00",
              "event_date": "2026-09-05",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "Pedro José Pastrana Quartet — Lo Que Nos Llevamos: Puerto Rican Cuatro & Latin Jazz (Sat 9/5 - 5 pm) Sat, Sep 05 | Meyhouse Jazz Palo Alto Stage Puerto Rican cuatro virtuoso Pedro José Pastrana blends jíbaro roots, Caribbean grooves, and modern Latin jazz in music from his new album, Lo Que Nos Llevamos, joined by bassist Ayla Dávila, GRAMMY-nominated drummer Colin Douglas, and flutist-percussionist Miguel Martínez. Buy Tickets Time & Location Sep 05, 2026, 5:00 PM – 8:00 PM Meyhouse Jazz Palo Alto Stage, 640 Emerson St, Palo Alto, CA 94301, USA About the event Doors open: 5:00 PM Show: 6:30 PM Puerto Rican cuatro player and composer Pedro José Pastrana brings the distinctive sound of Puerto Rico’s national instrument into a contemporary Latin jazz setting with music from his latest album, Lo Que Nos Llevamos (What We Bring With Us) . Born and raised in Puerto Rico and immersed in the island’s jíbaro musical tradition , Pastrana has developed a musical language that moves fluidly between folklore and improvisation. At the center is the Puerto Rican cuatro , whose bright, resonant sound carries traditional melodic language into jazz harmony, Caribbean rhythms, and groove-driven ensemble playing. His debut solo album was selected among PRPop’s Top 20 recordings of 2022 , and his work has included collaborations with leading figures in Latin music including John Santos, Orestes Vilató, Jerry Medina, Gary Nuñez, and Andy Montañez . With Lo Que Nos Llevamos , Pastrana turns toward his present-day relationship with Puerto Rico from afar.… Show More Tickets Ticket type Early Bird General Admission More info Limited quantity tickets for customers who buy early Price $38.00 +$0.95 ticket service fee Quantity 0 Ticket type General Admission Price $48.00 +$1.20 ticket service fee Quantity 0 Total $0.00 Checkout Share this event",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.meyhousejazz.com/event-details/pedro-jose-pastrana-quartet-lo-que-nos-llevamos-puerto-rican-cuatro-latin-jazz-sat-9-5-5-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Palo Alto",
                  "fetched_at": "2026-08-28T12:28:47.745590Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_meyhouse|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_558f58b6f5e0",
              "venue_id": "venue_meyhouse",
              "title": "Pedro José Pastrana Quartet",
              "event_time": "Sep 05, 2026, 8:00 PM – 10:30 PM",
              "venue_name": "Meyhouse Palo Alto",
              "event_start": "2026-09-05T20:00:00",
              "event_date": "2026-09-05",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "Pedro José Pastrana Quartet — Lo Que Nos Llevamos: Puerto Rican Cuatro & Latin Jazz (Sat 9/5 - 8 pm) Sat, Sep 05 | Meyhouse Jazz Palo Alto Stage Puerto Rican cuatro virtuoso Pedro José Pastrana blends jíbaro roots, Caribbean grooves, and modern Latin jazz in music from his new album, Lo Que Nos Llevamos, joined by bassist Ayla Dávila, GRAMMY-nominated drummer Colin Douglas, and flutist-percussionist Miguel Martínez. Buy Tickets Time & Location Sep 05, 2026, 8:00 PM – 10:30 PM Meyhouse Jazz Palo Alto Stage, 640 Emerson St, Palo Alto, CA 94301, USA About the event Doors open: 8:00 PM Show: 8:30 PM Puerto Rican cuatro player and composer Pedro José Pastrana brings the distinctive sound of Puerto Rico’s national instrument into a contemporary Latin jazz setting with music from his latest album, Lo Que Nos Llevamos (What We Bring With Us) . Born and raised in Puerto Rico and immersed in the island’s jíbaro musical tradition , Pastrana has developed a musical language that moves fluidly between folklore and improvisation. At the center is the Puerto Rican cuatro , whose bright, resonant sound carries traditional melodic language into jazz harmony, Caribbean rhythms, and groove-driven ensemble playing. His debut solo album was selected among PRPop’s Top 20 recordings of 2022 , and his work has included collaborations with leading figures in Latin music including John Santos, Orestes Vilató, Jerry Medina, Gary Nuñez, and Andy Montañez . With Lo Que Nos Llevamos , Pastrana turns toward his present-day relationship with Puerto Rico from afar.… Show More Tickets Ticket type Early Bird General Admission More info Limited quantity tickets for customers who buy early Price $38.00 +$0.95 ticket service fee Quantity 0 Ticket type General Admission Price $48.00 +$1.20 ticket service fee Quantity 0 Total $0.00 Checkout Share this event",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.meyhousejazz.com/event-details/pedro-jose-pastrana-quartet-lo-que-nos-llevamos-puerto-rican-cuatro-latin-jazz-sat-9-5-8-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Palo Alto",
                  "fetched_at": "2026-08-28T12:28:47.745590Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_meyhouse|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5873a62dcccb",
              "venue_id": "venue_sfjazz_miner",
              "title": "Emmet Cohen Quintet: Miles & Coltrane",
              "event_time": "2026-09-05 11:00 AM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-09-05T11:00:00",
              "event_date": "2026-09-05",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Members Only\n\nLivestream Only",
              "event_types": [
                "live_music",
                "jazz",
                "livestream"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/athome/fridays-live/emmet-cohen-quintet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_87813e3e7499",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Your a Fat Suckr Bich Book Event",
              "event_time": "2026-09-05 7:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-09-05T19:00:00",
              "event_date": "2026-09-05",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "Richard Villegas Jr. reads from his irreverent new memoir, Your a Fat Suckr Bich: Notes on the Merry but Perilous Work of Schoolteaching in Los Angeles — a twenty-year veteran's unfiltered account of life on the front lines of the public school system.\n\nBased in East Los Angeles, Richard Villegas Jr. is a writer whose work spans television, theater, fiction, poetry, and cultural criticism. He was the originator and consulting producer of the half-hour drama series Vida for Starz, contributing to the show’s development from 2015 to 2020. His essays and articles have appeared in The Los Angeles Times, Playboy.com, and New American Media. His ten-minute plays Cochino and La Tina Duty were presented at Casa 0101 as part of the Brown and Out Play Festival IV and VI, respectively. He is the author of La Música Romántica (CreateSpace, 2014), a collection of short fiction, and I Heart Babylon, Tenochtitlan, and Ysteléi(CreateSpace, 2011), a hybrid work of short fiction, poetry, and essays. His writings on teaching and queer identity in the classroom are published on his Substack, The Alphabet People: The LGBTQ’s of Teaching Kindergarten.",
              "event_types": [
                "literary"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/back-to-school-night-adults-only-an-evening-of-your-a-fat-suckr-bich",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-08-28T14:05:33.197491Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a3a3c68f1bfb",
              "venue_id": "venue_temescal_arts_center",
              "title": "Improvisation Workshop - First Tuesdays",
              "event_time": "2026-09-05T20:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-09-05T20:00:00",
              "event_date": "2026-09-05",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Improvisation is the key - hosted by Lewis Jordan. Open Workshop and Playground in free improvisation. Spontaneously Assembled Small Groups will collaborate. Come to listen, to be heard, to see, to move. Inviting musicians, poets, dancers, to a non-hierarchical setting to improvise together. Spontaneously composing or conducting, we'll be on a quest for fire.",
              "event_types": [
                "workshop",
                "experimental"
              ],
              "price_info": "Donations encouraged",
              "url": "https://www.temescalartcenter.org/tacmusic.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-08-28T14:09:19.773505Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-09-05",
              "run_id": "run_16a4ae4ccea6",
              "run_label": "Improvisation Workshop - First Tuesdays, Sep 1 – Dec 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2435bb34cd33",
              "venue_id": "venue_the_independent",
              "title": "THE EMO NIGHT TOUR",
              "event_time": "9/5/2026 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-05T21:00:00",
              "event_date": "2026-09-05",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List It's Relative! Presents The Emo Night Tour Sat, Sep 5 Doors: 8:30 pm | Show: 9:00 pm 21 and up Please note - there is a delivery delay set for 2 weeks prior to show. Buy Tickets Share + Google Calendar Related Events Mark William Lewis Nov 22 Buy Tickets Dragon Smoke Dec 5 Buy Tickets Artists The Emo Night Tour Your favorite party is coming back! Imagine going to a show and hearing Taking Back Sunday, Fall Out Boy, Panic! At The Disco, My Chemical Romance and many more, all only playing their best songs, all night long!!! The folks at the Emo Night Tour are giving you just that. All the sing-a-longs, dancing, jumping, screaming… well basically all the EMO! The Emo Night DJ’s will be spinning all the angst your teenage dirtbag heart desires all night long and a special guest band will bring you emo covers that will make you feel like you’re at Warped Tour ‘08 minus all the dust and melting in the sun! The events in San Francisco are HUGE, you do not want to sleep on this… so make sure to Tell All Your Friends and Sugar, Come Down! Back to Event List Upcoming Events Clipse Thu Aug 6 GRiZ Fri Aug 7 Goldie Boutilier Sat Aug 8 Ben Böhmer Sun Aug 9 Greg Mendez Wed Aug 12 FOUR SQUARE VOL. 2 – A HIP-HOP VIDEO GAME LIVE THEATRE EXPERIENCE Fri Aug 14 Krooked Kings Sat Aug 15 Angine de Poitrine Wed Aug 19 G Flip Thu Aug 20 Niina Soleil Fri Aug 21 Pearl & The Oysters Sat Aug 22 Son Rompe Pera Thu Aug 27",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/the-emo-night-tour-12/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-08-28T14:11:09.640815Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-08-28T18:01:37.988102Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_27c590f27fa1",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-09-05",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-09-05",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_89d6e98639fa",
              "venue_id": "venue_the_cats",
              "title": "Blue Blossom",
              "event_time": "2026-09-05 7:00 PM – 10:00 PM",
              "venue_name": "The Cats",
              "event_start": "2026-09-05T19:00:00",
              "event_date": "2026-09-05",
              "venue_address": "17533 Santa Cruz Hwy, Los Gatos, CA 95033",
              "description": "« All Events Blue Blossom September 5 @ 7:00 PM – 10:00 PM Blue Blossom Blue Blossom – we are from the Bay Area and we play Traditional bluegrass music. We have all been playing together forever and decided to put together a group to start playing with. The Cats at Los Gatos 17533 Santa Cruz Hwy Los Gatos , CA 95033 United States + Google Map (408) 354-3060 View Venue Website Add to calendar Google Calendar iCalendar Outlook 365 Outlook Live Leave a Reply Cancel reply Your email address will not be published. Required fields are marked * Comment * Name* Email* Website Save my name, email, and website in this browser for the next time I comment. Δ Event Navigation « The Jokers Mark Van Haren »",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.thecatslosgatos.com/event/blue-blossom/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_cats",
                  "source_name": "The Cats",
                  "fetched_at": "2026-08-28T15:00:29.173610Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_cats|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6a7531c095de",
              "venue_id": "venue_dawn_club",
              "title": "AZURE MCCALL",
              "event_time": "Saturday, September 5, 2026 8:00 PM 11:59 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-09-05T20:00:00",
              "event_date": "2026-09-05",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "McCall, Hawaii’s first lady of jazz is a multi-award winning vocalist. She is heir to the vocal tradition of Sarah Vaughan, Carmen McRae and Ella Fitzgerald. Her warmth and sense of humor fuel every interpretation. After releasing her first CD ‘Body and Soul’ she was asked by the great bassist Ray Brown to be his vocalist on tour. Of course, she accepted, beginning an incredible jazz journey – school was in! Soon after, Azure became the first singer to work with Freddie Hubbard’s band. Additional collaborators include Frank Morgan, Tennyson Stephens, Joe Lovano, Geoffrey Keezer, Curtis Lundy, Dizzy Gillespie and many more. In 2008, President Barack Obama asked her to perform at his pre-election party. “That’s why he won,” Azure says (smiling). Azure became the ‘Jazz Diva’ for Celebrity and Royal Caribbean Cruises. She has traveled to more than 50 countries including, Greece, Germany, Russia, and Italy- just to name a few.\n\n\n  \n#block-df4e88950d6424e7b01c {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n\n\n  }\n\n  #block-df4e88950d6424e7b01c .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-df4e88950d6424e7b01c {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-df4e88950d6424e7b01c {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-df4e88950d6424e7b01c {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-df4e88950d6424e7b01c {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-df4e88950d6424e7b01c .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.dawnclub.com/music/1onhhsjq53k5uofqbb1g8sslma85s8-2h3mk-rjgry-xaype-sww2t-tcmx3-74f4w-lcnsj-m8whx-az7gp-ya2m7-f9p73-4lxfb-zk9c9",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-08-28T15:32:50.415811Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-08-30T10:45:19.995654Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6a87e47e59b4",
              "venue_id": "venue_bazaar_cafe",
              "title": "SUCH SWEET RUCKUS",
              "event_time": "September 5, 2026 7:00 pm - 9:30 pm",
              "venue_name": "Bazaar Cafe",
              "event_start": "2026-09-05T19:00:00",
              "event_date": "2026-09-05",
              "venue_address": "5927 California St, San Francisco, CA 94121",
              "description": "TimeSeptember 5, 2026 7:00 pm - 9:30 pm(GMT+00:00)",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://bazaarcafe.com/events/such-sweet-ruckus-13/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bazaar_cafe",
                  "source_name": "Bazaar Cafe",
                  "fetched_at": "2026-08-28T16:50:50.745553Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bazaar_cafe|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b35aa9272a3e",
              "venue_id": "venue_meyhouse_san_ramon",
              "title": "Mads Tolling Trio",
              "event_time": "Sat, Sep 05 5 pm",
              "venue_name": "Meyhouse San Ramon",
              "event_start": "2026-09-05T17:00:00",
              "event_date": "2026-09-05",
              "venue_address": "6000 Bollinger Canyon Rd, San Ramon, CA 94583",
              "description": "Two-Time GRAMMY-Winning Violinist Mads Tolling w/ Kenny Washington & John R. Burr (Sat 9/5 - 5 pm) Sat, Sep 05 | Meyhouse Jazz San Ramon Two-time GRAMMY-winning violinist Mads Tolling joins acclaimed vocalist Kenny Washington and pianist John R. Burr for a rare trio performance spanning jazz standards, Beatles classics, original music, and selections from Ramblin’. Buy Tickets Time & Location Sep 05, 2026, 5:00 PM – 8:00 PM Meyhouse Jazz San Ramon, 6000 Bollinger Canyon Rd suite 1505, San Ramon, CA 94583, USA Guests See All About the event Doors open: 5:00 PM Show: 6:30 PM Two-time GRAMMY Award-winning violinist Mads Tolling returns to Meyhouse with an exceptional trio featuring acclaimed jazz vocalist Kenny Washington and pianist John R. Burr. Born and raised in Denmark, Tolling studied at Berklee College of Music before being discovered by legendary jazz violinist Jean-Luc Ponty. He went on to perform with Stanley Clarke, the Turtle Island Quartet, and more recently Bob Weir & Wolf Bros, appearing at venues including Radio City Music Hall, Red Rocks, and the Hollywood Bowl. His recordings have also been featured on NPR’s Morning Edition and in The Washington Post. For this special evening, Tolling reunites with longtime collaborator John R. Burr for selections from their album Ramblin’, moving effortlessly from Lennon/McCartney and John McLaughlin to original compositions. Joining them is Kenny Washington, one of the Bay Area’s most celebrated jazz vocalists and a frequent guest with Jazz at Lincoln… Show More Tickets Ticket type Stage Side - Early Bird More info Limited quantity tickets for customers who buy early Stage Side - Closer to the musicians for a more immersive experience. Price $32.00 +$0.80 ticket service fee Quantity 0 Ticket type Stage Side More info Closer to the musicians for a more immersive experience. Price $35.00 +$0.88 ticket service fee Quantity 0 Ticket type Standard Seating More info Standard seating with a full view of the show Price $24.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.meyhousejazz.com/event-details/two-time-grammy-winning-violinist-mads-tolling-w-kenny-washington-john-r-burr-sat-9-5-5-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse_san_ramon",
                  "source_name": "Meyhouse San Ramon",
                  "fetched_at": "2026-08-28T17:52:26.464636Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_meyhouse_san_ramon|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5624b6b5eb68",
              "venue_id": "venue_meyhouse_san_ramon",
              "title": "Mads Tolling Trio",
              "event_time": "Sat, Sep 05 8 pm",
              "venue_name": "Meyhouse San Ramon",
              "event_start": "2026-09-05T20:00:00",
              "event_date": "2026-09-05",
              "venue_address": "6000 Bollinger Canyon Rd, San Ramon, CA 94583",
              "description": "Two-Time GRAMMY-Winning Violinist Mads Tolling w/ Kenny Washington & John R. Burr (Sat 9/5 - 8 pm) Sat, Sep 05 | Meyhouse Jazz San Ramon Two-time GRAMMY-winning violinist Mads Tolling joins acclaimed vocalist Kenny Washington and pianist John R. Burr for a rare trio performance spanning jazz standards, Beatles classics, original music, and selections from Ramblin’. Buy Tickets Time & Location Sep 05, 2026, 8:00 PM – 10:00 PM Meyhouse Jazz San Ramon, 6000 Bollinger Canyon Rd suite 1505, San Ramon, CA 94583, USA About the event Doors open: 8:00 PM Show: 8:30 PM Two-time GRAMMY Award-winning violinist Mads Tolling returns to Meyhouse with an exceptional trio featuring acclaimed jazz vocalist Kenny Washington and pianist John R. Burr. Born and raised in Denmark, Tolling studied at Berklee College of Music before being discovered by legendary jazz violinist Jean-Luc Ponty. He went on to perform with Stanley Clarke, the Turtle Island Quartet, and more recently Bob Weir & Wolf Bros, appearing at venues including Radio City Music Hall, Red Rocks, and the Hollywood Bowl. His recordings have also been featured on NPR’s Morning Edition and in The Washington Post. For this special evening, Tolling reunites with longtime collaborator John R. Burr for selections from their album Ramblin’, moving effortlessly from Lennon/McCartney and John McLaughlin to original compositions. Joining them is Kenny Washington, one of the Bay Area’s most celebrated jazz vocalists and a frequent guest with Jazz at Lincoln… Show More Tickets Ticket type Stage Side - Early Bird More info Limited quantity tickets for customers who buy early Stage Side - Closer to the musicians for a more immersive experience. Price $32.00 +$0.80 ticket service fee Quantity 0 Ticket type Stage Side More info Closer to the musicians for a more immersive experience. Price $35.00 +$0.88 ticket service fee Quantity 0 Ticket type Standard Seating More info Standard seating with a full view of the show Price $24.00 +$0.60 tick",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.meyhousejazz.com/event-details/two-time-grammy-winning-violinist-mads-tolling-w-kenny-washington-john-r-burr-sat-9-5-8-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse_san_ramon",
                  "source_name": "Meyhouse San Ramon",
                  "fetched_at": "2026-08-28T17:52:26.464636Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_meyhouse_san_ramon|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c2fc60c0a54f",
              "venue_id": "venue_the_back_room",
              "title": "Acoustic Groove Experience",
              "event_time": "Sat, Sep 5, 8pm - 10pm PDT",
              "venue_name": "Back Room",
              "event_start": "2026-09-05T20:00:00",
              "event_date": "2026-09-05",
              "venue_address": "1984 Bonita Ave,Berkeley,CA 94704",
              "description": "The Back Room, Berkeley CA, United States",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://events.humanitix.com/acoustic-groove-experience?hxchl=hex-col",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_back_room",
                  "source_name": "Back Room",
                  "fetched_at": "2026-08-28T18:22:02.750823Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_back_room|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4909bb346a2d",
              "venue_id": "venue_cry_baby",
              "title": "Hoochie House: All-Star Edition",
              "event_time": "2026-09-05T07:00:00.000Z",
              "venue_name": "Cry Baby",
              "event_start": "2026-09-05T07:00:00",
              "event_date": "2026-09-05",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "All Systems Live Presents HOOCHIE HOUSE: All-Star Edition w/ Kuntress + Nikki Diamonds + DJ Mousetwat + Ecto Sat Sep 5, 2026 9:00 PM 21+ Buy Tickets Additional Info GHETTO TECH | HOUSE | CLUB | BOOTY BASS Brought to you by All Systems Live, HOOCHIE HOUSE is a space for appreciation of dance music and Hoochie Culture. It is an essence, so show up in whatever way best represents YOU. A night of Ghetto Tech, House, Booty Bass, and Club music from all different regions. ALL hoochies welcome! Featuring: Sounds by Kuntress (ATX + DJ Mousetwat + Nikki Diamonds + ECTO + Google Calendar Related Events Buy Tickets Sat Aug 15 Office Hours Festival: Day 2 - Live at Crybaby Buy Tickets Sat Aug 15 AFROBASHMENT (afrobeats, dancehall, hip-hop & more) Buy Tickets Sat Aug 22 DESMADRE A LA VUELTA w/ Esamipau + Yarí + Juanchii & PATIO TAKEOVER by Club Nova",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://crybaby.live/tm-event/hoochie-house-all-star-edition-w-kuntress-nikki-diamonds-dj-mousetwat-ecto/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-08-28T19:56:15.638282Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cry_baby|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b55ba57e2bd1",
              "venue_id": "venue_the_lost_church",
              "title": "The Setup",
              "event_time": "2026-09-05T20:00:00",
              "venue_name": "The Lost Church",
              "event_start": "2026-09-05T20:00:00",
              "event_date": "2026-09-05",
              "venue_address": "988 Columbus Ave, San Francisco, CA 94133",
              "description": "An intimate, speakeasy-style stand-up comedy showcase featuring a curated lineup of rising comics and national touring talent.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$25.00",
              "url": "https://thelostchurch.my.salesforce-sites.com/ticket#/instances/a0FUh00000B0ZIoMAN",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lost_church",
                  "source_name": "The Lost Church",
                  "fetched_at": "2026-08-28T20:03:22.982745Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_lost_church|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c0962320ab95",
              "venue_id": "venue_exploratorium",
              "title": "Storytime Science for Kids: Space Is the Place",
              "event_time": "2026-09-05",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Join us for Storytime Science and enjoy an engaging storybook read-aloud followed by a related activity geared toward children and their grown-ups. Come hear a story, get hands-on, and learn something new!",
              "event_types": [
                "workshop",
                "literary"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/storytime-science-kids-space-place-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-05",
              "run_id": "run_d76b7c3ece9a",
              "run_label": "Storytime Science for Kids: Space Is the Place, Aug 29 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6939123c474b",
              "venue_id": "venue_exploratorium",
              "title": "Daytime Members-Only Hours",
              "event_time": "2026-09-05",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Please consider joining us today ! Members are the backbone of our organization and help ensure the continuity of our mission to create inquiry-based experiences that transform learning worldwide. We can’t wait to see you at the museum.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/member-hours",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-05",
              "run_id": "run_e38dfc952011",
              "run_label": "Daytime Members-Only Hours, Aug 30 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8fdda363f400",
              "venue_id": "venue_bix",
              "title": "Solo Piano",
              "event_time": "2026-09-05T20:30:00",
              "venue_name": "Bix",
              "event_start": "2026-09-05T20:30:00",
              "event_date": "2026-09-05",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-08-28T21:10:29.119399Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bix|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_864852921c8d",
              "venue_id": "venue_belle_cora",
              "title": "Hipsteria",
              "event_time": "2026-09-05T18:00:00",
              "venue_name": "Belle Cora",
              "event_start": "2026-09-05T18:00:00",
              "event_date": "2026-09-05",
              "venue_address": "565 Green St, San Francisco, CA 94133",
              "description": "Hipsteria brings its lively blend of jazz, soul, swing, and party music to Belle Cora. Featuring “Tender Tim” on drums and vocals, the San Francisco group draws on a rotating lineup of seasoned players and a repertoire that ranges from jazz standards and blues to R&B, bossa nova, funk, and dance classics.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk",
                "latin_world"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/hipsteria-11/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_belle_cora",
                  "source_name": "Belle Cora",
                  "fetched_at": "2026-08-28T21:11:34.213237Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-08-30T10:45:19.995654Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_belle_cora|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_eb3217987bac",
              "venue_id": "venue_the_monarch",
              "title": "140 Crew",
              "event_time": "2026-09-05T22:00:00",
              "venue_name": "The Monarch",
              "event_start": "2026-09-05T22:00:00",
              "event_date": "2026-09-05",
              "venue_address": "101 6th St, San Francisco, CA 94103",
              "description": "Monarch SF presents 140 Crew featuring bass and club sets by Olivia Lauren, cuddlefish, chicaboom, and macho.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Buy Ticket",
              "url": "https://ra.co/events/us/sanfrancisco",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_resident_advisor_sf_ra",
                  "source_name": "Resident Advisor SF (RA)",
                  "fetched_at": "2026-08-28T22:15:14.237667Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_the_monarch",
                  "source_name": "The Monarch",
                  "fetched_at": "2026-09-03T13:00:26.245791Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monarch|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_09ce9326e529",
              "venue_id": "venue_the_ritz",
              "title": "House of Funk",
              "event_time": "2026-09-05T21:00:15-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-09-05T21:00:15",
              "event_date": "2026-09-05",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "HOUSE OF FUNK\n\n \n\nSATURDAY SEPTEMBER 5, 2026",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$15 GA",
              "url": "https://www.ticketweb.com/event/house-of-funk-the-ritz-tickets/14291144",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-08-28T22:59:09.006281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9471e2214645",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-09-05",
              "venue_name": "De Young",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-05",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_370f909b2d9d",
              "venue_id": "venue_oakland_arena",
              "title": "BIGBANG 2026 WORLD TOUR",
              "event_time": "Sep 05 / 2026",
              "venue_name": "Oakland Arena",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "7000 Coliseum Way, Oakland, CA 94621",
              "description": "Copyright © 2026 Oakland Arena. Privacy Notice | Cookie Preferences | Your Privacy Choices | Ad Choices | Terms of Use | Accessibility / Site Map a carbon house experience",
              "event_types": [
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.theoaklandarena.com/events/detail/bigbang-2026-world-tour-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_oakland_arena",
                  "source_name": "Oakland Arena",
                  "fetched_at": "2026-08-29T00:36:48.383706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_oakland_arena|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a9a4a2b0aea8",
              "venue_id": "venue_punch_line",
              "title": "MALIK ELASSAL",
              "event_time": "Sep 5, 2026 7:00 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-05T19:00:00",
              "event_date": "2026-09-05",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Lebanese-Canadian comedian and actor Malik Elassal shares his sharp, heartfelt, and authentic storytelling about family, faith, and culture.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/malik-elassal-san-francisco-california-09-05-2026/event/1C006473BD10DDB0",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1039cba569be",
              "venue_id": "venue_punch_line",
              "title": "MALIK ELASSAL",
              "event_time": "Sep 5, 2026 9:15 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-05T21:15:00",
              "event_date": "2026-09-05",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Lebanese-Canadian comedian and actor Malik Elassal shares his sharp, heartfelt, and authentic storytelling about family, faith, and culture.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/malik-elassal-san-francisco-california-09-05-2026/event/1C006473BD14DDB8",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e875fe526122",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "RON TAYLOR",
              "event_time": "Sat Sep 5, 2026 7:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-09-05T19:00:00",
              "event_date": "2026-09-05",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Stand-up comedian and writer Ron Taylor takes the stage at Cobb's Comedy Club for an evening of live comedy.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/ron-taylor-san-francisco-california-09-05-2026/event/1C0064BA1862B65A",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d8ed9ff8fd81",
              "venue_id": "venue_san_jose_improv",
              "title": "Paul Elia",
              "event_time": "2026-09-05T19:00:00",
              "venue_name": "San Jose Improv",
              "event_start": "2026-09-05T19:00:00",
              "event_date": "2026-09-05",
              "venue_address": "62 S 2nd St, San Jose, CA 95113",
              "description": "Stand-up comedian and actor Paul Elia delivers a dynamic live set filled with clever punchlines and quick crowd work. His show highlights his charismatic stage presence and relatable storytelling.",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY NOW",
              "url": "https://improv.com/sanjose/comic/paul+elia/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_improv",
                  "source_name": "San Jose Improv",
                  "fetched_at": "2026-08-29T01:07:49.368865Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_improv|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c502bc2d4568",
              "venue_id": "venue_san_jose_improv",
              "title": "Paul Elia",
              "event_time": "2026-09-05T21:30:00",
              "venue_name": "San Jose Improv",
              "event_start": "2026-09-05T21:30:00",
              "event_date": "2026-09-05",
              "venue_address": "62 S 2nd St, San Jose, CA 95113",
              "description": "Stand-up comedian and actor Paul Elia delivers a dynamic live set filled with clever punchlines and quick crowd work. His show highlights his charismatic stage presence and relatable storytelling.",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY NOW",
              "url": "https://improv.com/sanjose/comic/paul+elia/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_improv",
                  "source_name": "San Jose Improv",
                  "fetched_at": "2026-08-29T01:07:49.368865Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_improv|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_55e9041adcaf",
              "venue_id": "venue_mr_tipples",
              "title": "DMN",
              "event_time": "2026-09-05 6:00 pm",
              "venue_name": "Mr. Tipples",
              "event_start": "2026-09-05T18:00:00",
              "event_date": "2026-09-05",
              "venue_address": "39 Fell St, San Francisco, CA 94102",
              "description": "DMN brings a piano-trio jazz set to Mr. Tipples, featuring Michael Potter on piano, Alan Jones on bass, and Micheal Mitchell on drums. The group centers on Mitchell’s dynamic drumming, with Potter and Jones providing the melodic and rhythmic interplay of a seasoned Bay Area jazz trio. Tickets: $15-20",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$15 – $30",
              "url": "https://mrtipplessf.com/calendar/dmn/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mr_tipples",
                  "source_name": "Mr. Tipples",
                  "fetched_at": "2026-08-30T10:06:37.887141Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-08-30T10:45:19.995654Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mr_tipples|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_860bc224eafd",
              "venue_id": "venue_mr_tipples",
              "title": "Shawn Myers Quintet",
              "event_time": "2026-09-05 9:00 pm",
              "venue_name": "Mr. Tipples",
              "event_start": "2026-09-05T21:00:00",
              "event_date": "2026-09-05",
              "venue_address": "39 Fell St, San Francisco, CA 94102",
              "description": "Shawn Myers Quintet brings Oakland-based drummer and composer Shawn Myers to Mr. Tipples, joined by Alan Jones on bass and Michael Potter on piano. Myers holds graduate and undergraduate degrees in jazz studies and performance, has worked as drummer for Leyla McCalla, and leads projects that move between modern jazz, Afro-pop, and broader global influences....",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$15 – $30",
              "url": "https://mrtipplessf.com/calendar/shawn-myers-quintet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mr_tipples",
                  "source_name": "Mr. Tipples",
                  "fetched_at": "2026-08-30T10:06:37.887141Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-08-30T10:45:19.995654Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mr_tipples|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fdb39704cf85",
              "venue_id": "venue_felton_music_hall",
              "title": "FLAT SUN SOCIETY X ORCHESTRA GOLD",
              "event_time": "2026-09-05T20:00:00",
              "venue_name": "Felton Music Hall",
              "event_start": "2026-09-05T20:00:00",
              "event_date": "2026-09-05",
              "venue_address": "6275 Highway 9, Felton, CA 95018",
              "description": "Enjoy an evening of laughs featuring a lineup of stand-up comedians performing live at Felton Music Hall.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_felton_music_hall",
                  "source_name": "Felton Music Hall",
                  "fetched_at": "2026-08-30T10:15:46.824711Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_felton_music_hall|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_32b8514694ad",
              "venue_id": "venue_the_setup",
              "title": "THE SETUP AT THE LOST CHURCH",
              "event_time": "2026-09-05 8:00 PM",
              "venue_name": "The Setup",
              "event_start": "2026-09-05T20:00:00",
              "event_date": "2026-09-05",
              "venue_address": "222 Hyde St, San Francisco, CA 94102",
              "description": "Immerse yourself in an underground and intimate comedy setting at the charming Lost Church in North Beach. Prepare to witness top-tier talent, including comedians who have graced the stages of The New Yorker, Netflix, Comedy Central, and HBO.",
              "event_types": [
                "comedy"
              ],
              "price_info": "GET TICKETS",
              "url": "https://setupcomedy.com/tickets-3/lost-church-saturday-september-5th-8pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_setup",
                  "source_name": "The Setup",
                  "fetched_at": "2026-08-30T11:15:30.522192Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_setup|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_826ec05a2893",
              "venue_id": "venue_humble_sea",
              "title": "Food Menu available - Tavern - Saturday",
              "event_time": "2026-09-05 11:00 AM - 8:30 PM",
              "venue_name": "Humble Sea Brewing",
              "event_start": "2026-09-05T11:00:00",
              "event_date": "2026-09-05",
              "venue_address": "820 Swift St, Santa Cruz, CA 95060",
              "description": "Enjoy the full food menu at Humble Sea Tavern this Saturday, featuring a variety of dishes paired with fresh craft beer.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_humble_sea",
                  "source_name": "Humble Sea Brewing",
                  "fetched_at": "2026-08-30T11:17:55.713362Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_humble_sea|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0dd81f197bfb",
              "venue_id": "venue_ivy_room",
              "title": "Ryan MacNeill and the Big Deal",
              "event_time": "Sep 5 7:30 PM",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-05T19:30:00",
              "event_date": "2026-09-05",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "ivy room presents - genre - americana, cosmic country, jam",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ivyroom.com/#/events/194297",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-08-31T11:55:01.170393Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_20a6b451d722",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OLIVE PANTS",
              "event_time": "Sat Sep 5 8:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-05T20:00:00",
              "event_date": "2026-09-05",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "An Evening of Singer-Songwriters",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "21+, $10.00",
              "url": "https://wl.seetickets.us/event/olive-pants/703230?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-08-31T12:12:52.447528Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a82ca54ff45f",
              "venue_id": "venue_brava_theater",
              "title": "Monica Magtoto: Journal as Artifact",
              "event_time": "September 5, 2026",
              "venue_name": "Brava Theater",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "2781 24th St, San Francisco, CA 94110",
              "description": "Come decorate and start your own journaling practice. This multimedia workshop will help you start telling your story one page at a time through writing, drawing, and collage.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.brava.org/all-events/journalasartifact",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brava_theater",
                  "source_name": "Brava Theater",
                  "fetched_at": "2026-08-31T12:29:43.593913Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brava_theater|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9dd3a77eefc2",
              "venue_id": "venue_winters",
              "title": "STEAL YOUR LABOR DAY MUSIC FESTIVAL",
              "event_time": "2026-09-05T13:00:00",
              "venue_name": "Winters",
              "event_start": "2026-09-05T13:00:00",
              "event_date": "2026-09-05",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "",
              "event_types": [
                "festival",
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-08-31T12:39:12.063314Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_winters|2026-09-05",
              "run_id": "run_deb52fa4f370",
              "run_label": "STEAL YOUR LABOR DAY MUSIC FESTIVAL, Sep 5 – Sep 6",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_9f4323023043",
              "venue_id": "venue_piedmont_center",
              "title": "For the Love of Art Exhibition",
              "event_time": "2026-09-05T11:00:00",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-09-05T11:00:00",
              "event_date": "2026-09-05",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "Exhibition featuring various artists. Weekends 8/9 - 9/20 (except 8/22 & 8/30).",
              "event_types": [
                "art"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-08-31T13:20:32.956554Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-09-05",
              "run_id": "run_17625c4204a3",
              "run_label": "For the Love of Art Exhibition, Aug 8 – Sep 20",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3355b23536f5",
              "venue_id": "venue_piedmont_center",
              "title": "Autumn Leaves Fall Celebration",
              "event_time": "2026-09-05T16:30:00",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-09-05T16:30:00",
              "event_date": "2026-09-05",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "Featuring Bill Jacksohn and Albert Brooks in the In the Tradition Jazz & Pop Piano Trio celebrating the Fall Equinox and Mexican Independence Day.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$30 at the door, or $26.44 in advance",
              "url": "https://ticketsignup.io/leaves",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-08-31T13:20:32.956554Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e4ad3c087f7f",
              "venue_id": "venue_cornerstone",
              "title": "Internet Kid",
              "event_time": "2026-09-05T19:00:00",
              "venue_name": "Cornerstone",
              "event_start": "2026-09-05T19:00:00",
              "event_date": "2026-09-05",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "FunkyFrogBait brings their Internet Kid comedy tour to Cornerstone in Berkeley.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Open",
              "url": "https://dothebay.com/events/2026/9/5/funkyfrogbait-presents-internet-kid-the-comedy-tour-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-08-31T14:04:10.183515Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cornerstone|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_ab921618f866",
              "venue_id": "venue_dna_lounge",
              "title": "PETAL\nARIANA GRANDE TRIBUTE PARTY",
              "event_time": "Sat Sep 5",
              "venue_name": "DNA Lounge",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "Petal: Ariana Grande Tribute Party!\n\tPop! It's time to bloom... Petal has arrived! Calling all\n\tArianators! DJ Cip & DJ Bit will be spinning Ariana All Night\n\tLong -- All the hits, deep cuts, and your favorite sing-along\n\tanthems! Get ready for fierce, ponytail flipping drag performances!\n\tCompete in the midnight contest to prove you're the biggest Ari fan\n\tin the Bay! Come dressed in your best Ariana era -- we're talking\n\tponytails, pink, sparkles, oversized hoodies, or full pop diva\n\tfantasy!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.dnalounge.com/calendar/2026/09-05.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dna_lounge",
                  "source_name": "DNA Lounge",
                  "fetched_at": "2026-08-31T14:15:19.938818Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6a627f09ed30",
              "venue_id": "venue_ashkenaz",
              "title": "See What Love Can Do",
              "event_time": "09/05/2026 7:30 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-09-05T19:30:00",
              "event_date": "2026-09-05",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "Grateful Dead Night",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/196052",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-08-31T14:45:33.243069Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_affc0509a39b",
              "venue_id": "venue_yerba_buena_center",
              "title": "GaHee Park: Behind the Curtain",
              "event_time": "2026-09-05",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Park invites us to peek behind the curtain, as she lays claim to her own power as a surrealist painter working across fantasy and intimacy.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/gahee-park-behind-the-curtain/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-05",
              "run_id": "run_5353f80886f6",
              "run_label": "GaHee Park: Behind the Curtain, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2f8395b0e276",
              "venue_id": "venue_yerba_buena_center",
              "title": "Ensambles Ballet Folklórico: 30 Years",
              "event_time": "2026-09-05T19:00:00",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-05T19:00:00",
              "event_date": "2026-09-05",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Join us on an enchanting journey spanning 500 years of Mexican folkloric dance, culture and tradition.",
              "event_types": [
                "dance"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/ensambles-ballet-folklorico-de-san-francisco-celebrates-30-years/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_da66b37cac66",
              "venue_id": "venue_yerba_buena_center",
              "title": "Querelle",
              "event_time": "Saturday, September 5, 2026, 2 PM",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-05T14:00:00",
              "event_date": "2026-09-05",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "See Rainer Werner Fassbinder’s “Querelle (1982) as part of a weekly film series exploring voyeurism and theatricality, cocktail charm and social taboos.",
              "event_types": [
                "film"
              ],
              "price_info": "Tickets: $15",
              "url": "https://ybca.org/event/querelle-through-an-open-window-film-series/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3fd3e0290860",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dream",
              "event_time": "2026-09-05",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public art installation commissioned by YBCA and co-sponsored by San Francisco Public Works.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dream-public-art/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-05",
              "run_id": "run_b6a5ba4e8809",
              "run_label": "Dream, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9d1d82608d6c",
              "venue_id": "venue_yerba_buena_center",
              "title": "SoMa Mahal Kita",
              "event_time": "2026-09-05",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A message of love for the SoMa neighborhood and community, inspired by weaving practices in the Phillipines and the colors of the Filipino flag.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/soma-mahal-kita-soma-i-love-you-ciriaco-sayoc/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-05",
              "run_id": "run_0c5141fff335",
              "run_label": "SoMa Mahal Kita, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fdfdb98cb1c9",
              "venue_id": "venue_yerba_buena_center",
              "title": "We Rooted in Flight",
              "event_time": "2026-09-05",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public artwork inviting passerbyers to join in the journey of collective flight",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/we-fly-for-a-liberated-we-we-rooted-in-flight/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-05",
              "run_id": "run_1d34139aedcf",
              "run_label": "We Rooted in Flight, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c1c819eb7567",
              "venue_id": "venue_hammer_theater",
              "title": "Candlelight: Coldplay & Imagine Dragons",
              "event_time": "Sat, 9/5/2026 @ 5:30 PM",
              "venue_name": "Hammer Theatre",
              "event_start": "2026-09-05T17:30:00",
              "event_date": "2026-09-05",
              "venue_address": "101 Paseo De San Antonio , San Jose, CA 95113",
              "description": "Discover the music of Coldplay and Imagine Dragons at Hammer Theatre Center under the gentle glow of candlelight.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Order Now!",
              "url": "https://feverup.com/m/262152",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hammer_theater",
                  "source_name": "Hammer Theatre",
                  "fetched_at": "2026-08-31T15:49:23.969939Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hammer_theater|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_186ad6908c6b",
              "venue_id": "venue_hammer_theater",
              "title": "Candlelight: The Best of Joe Hisaishi",
              "event_time": "Sat, 9/5/2026 @ 7:45 PM",
              "venue_name": "Hammer Theatre",
              "event_start": "2026-09-05T19:45:00",
              "event_date": "2026-09-05",
              "venue_address": "101 Paseo De San Antonio , San Jose, CA 95113",
              "description": "Fever presents Candlelight: The Best of Joe Hisaishi",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Order Now!",
              "url": "https://feverup.com/m/353164",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hammer_theater",
                  "source_name": "Hammer Theatre",
                  "fetched_at": "2026-08-31T15:49:23.969939Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hammer_theater|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7542a9fc73b8",
              "venue_id": "venue_maxs_of_burlingame",
              "title": "Denny Berthiaume - Pianist-Composer-Arranger",
              "event_time": "2026-09-05",
              "venue_name": "Max's of Burlingame",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "1250 Old Bayshore Blvd, Burlingame, CA 94010",
              "description": "Experience the enchanting sounds of live romantic piano with the incredibly talented Denny Berthiaume. A masterful jazz pianist and composer, Denny brings his passion and artistry to create a captivating ambiance, perfect for unwinding or sharing a special evening.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://maxsofburlingame.com/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_maxs_of_burlingame",
                  "source_name": "Max's of Burlingame",
                  "fetched_at": "2026-08-31T16:03:10.803244Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_maxs_of_burlingame|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d03df7fdf016",
              "venue_id": "venue_biscuits__blues",
              "title": "Big Daddy Cade's Tribute to B.B. King",
              "event_time": "2026-09-05 September 5, 2026",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-08-31T16:25:33.031111Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-09-05",
              "run_id": "run_c1c5cf35f46d",
              "run_label": "Big Daddy Cade's Tribute to B.B. King, Sep 4 – Sep 6",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_0f5f9f3186f6",
              "venue_id": "venue_chase_center",
              "title": "Community Events",
              "event_time": "2026-09-05",
              "venue_name": "Chase Center",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "Thrive City has announced its 2026 fall programming schedule, which features free family-friendly events from September through November. Highlights include the Hoop It Up 3x3 Basketball Tournament, Thrill-O-Ween, live music and classes, sports viewings, and more. Guests are encouraged to RSVP for upcoming events at ThriveCity.com. Upcoming Thrive City events include: Big Game Viewings - Following the success of the Summer Soccer Viewings (which attracted over 25,000 guests), Big Game Viewings continue at Thrive City, including select Premier League matches (beginning today at 12 p.m.). Big Game Viewings also include select Valkyries road games, baseball games, Football Sundays, starting on Sunday, October 25, and more. The full schedule of upcoming viewings can be found at chasecenter.com/thrive-city-big-game-viewings/. Hoop It Up 3x3 Basketball Tournament – Hoop It Up, the popular 3x3 basketball tournament created by NBA legend Kevin Garnett, returns to Thrive City on Saturday, September 5. The tournament will feature recreational divisions for ages 10 to 18+ and adult divisions at all levels of competition, including Pro-Am, with each team guaranteed at least four games. Blankets & Blockbusters – Thrive City will continue its Blankets & Blockbusters series this fall with a screening of “The Lion King” on Sunday, September 13, from 12 to 3 p.m. and “Toy Story 5” on Sunday, November 8, from 12 to 3 p.m. In addition to the films, guests can enjoy themed activities, arts & crafts, photo opportunities, and more. Weekend Wellness, presented by Kaiser Permanente – Refresh and reset at Thrive City’s Weekend Wellness, presented by Kaiser Permanente. On Sunday, September 20 from 10 a.m. to 1 p.m., guests can start the day with three different fitness classes by Vennu Yoga: Kickboxing Pilates, Hip Hop Zumba, and Zen Yoga Flow. Following the classes, guests can enjoy a farmer’s market with fresh produce and more. Lucha Libre Wrestling Night – Hosted by West Coast Pro Wrestli",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://chasecenter.com/thrive-city/#tc-events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-08-31T17:38:13.687686Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-09-05",
              "run_id": "run_9bed8ee309e6",
              "run_label": "Community Events, Sep 1 – Sep 5",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_794b91535d36",
              "venue_id": "venue_august_hall",
              "title": "Valerie: A Tribute to Amy Winehouse",
              "event_time": "SEPTEMBER 05, 2026",
              "venue_name": "August Hall",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.augusthallsf.com/tm-event/valerie-a-tribute-to-amy-winehouse-w-special-guest-huney-knuckles/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-08-31T17:47:21.031442Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ae7e6a420b4e",
              "venue_id": "venue_tupelo",
              "title": "DJ Kevey Kev & Black Diamond",
              "event_time": "Saturday September 5th 9:00PM - 1:30AM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-05T21:00:00",
              "event_date": "2026-09-05",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "Funky Grooves and booty shaking tunes from some of San Francisco’s sickest musicians. DJ Kevey Kev at 9, BD at 10. $5 cover",
              "event_types": [
                "live_music",
                "dj_party"
              ],
              "price_info": "$5 cover",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bccd2bd9d8ca",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Cristina Mariani",
              "event_time": "2026-09-05 2026-09-04T21:45:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show featuring Cristina Mariani with Johnny Taylor Jr. and Patrick Fishman.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Price not found in the specific listing.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/135567",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-08-31T18:20:03.865483Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-09-05",
              "run_id": "run_aad7bd148cae",
              "run_label": "Cristina Mariani, Sep 4 – Sep 5",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_a37a98e26b8a",
              "venue_id": "venue_the_knockout",
              "title": "KXSF Matinee Fundraiser Show",
              "event_time": "Sat 5 Sep ― 5:00pm",
              "venue_name": "The Knockout",
              "event_start": "2026-09-05T17:00:00",
              "event_date": "2026-09-05",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "SWEATER FUNK RARE BOOGIE DANCE PARTY! THE GRAND-DADDY OF ‘EM ALL! RARE BOOGIE! CLASSIC FUNK! TWO STEPPER DANCE JAMS! MODERN SOUL! ALL VINYL SELECTIONS! IF YOU WANNA DANCE THE NIGHT AWAY, THIS IS THE PLACE TO DO IT! • 10PM TO CLOSE • $5 • 21+",
              "event_types": [
                "community",
                "live_music"
              ],
              "price_info": "$17",
              "url": "https://link.dice.fm/wffd419787c3?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-09-02T10:33:16.877437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6f1d7b8bbc39",
              "venue_id": "venue_the_knockout",
              "title": "Sweater Funk Boogie Dance Party",
              "event_time": "Sat 5 Sep ― 10:00pm",
              "venue_name": "The Knockout",
              "event_start": "2026-09-05T22:00:00",
              "event_date": "2026-09-05",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "SWEATER FUNK RARE BOOGIE DANCE PARTY! THE GRAND-DADDY OF ‘EM ALL! RARE BOOGIE! CLASSIC FUNK! TWO STEPPER DANCE JAMS! MODERN SOUL! ALL VINYL SELECTIONS! IF YOU WANNA DANCE THE NIGHT AWAY, THIS IS THE PLACE TO DO IT! • 10PM TO CLOSE • $5 • 21+",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$5.67",
              "url": "https://link.dice.fm/e60fd82ac251?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-09-02T10:33:16.877437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f639d4e711aa",
              "venue_id": "venue_choquets",
              "title": "Dewayne Oakley and Ralph Nelson",
              "event_time": "September 5 @ 12:00 pm - 4:00 pm",
              "venue_name": "Choquet's",
              "event_start": "2026-09-05T12:00:00",
              "event_date": "2026-09-05",
              "venue_address": "2500 Washington St, San Francisco, CA 94115",
              "description": "Transport yourself to the Rive Gauche without leaving Fillmore Street. Chouquet's invites you to experience \"Jazz on the Patio,\" a long-standing neighborhood tradition that pairs world-class live music with the breezy elegance of a classic French bistro. Set against the backdrop of one of San Francisco’s most iconic shopping corridors, this event offers a high-fidelity...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/dewayne-oakley-and-ralph-nelson/2026-09-05/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:41.529093Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_choquets|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_65b2aeff193a",
              "venue_id": "venue_red_window",
              "title": "Magic School Busk",
              "event_time": "September 5 @ 1:00 pm - 5:00 pm",
              "venue_name": "Red Window",
              "event_start": "2026-09-05T13:00:00",
              "event_date": "2026-09-05",
              "venue_address": "500 Columbus Ave, San Francisco, CA 94133",
              "description": "Experience the ultimate \"living theater\" of North Beach as The Magic School Busk takes up their weekly residency directly in front of The Red Window. Positioned at the vibrant, sun-soaked corner of Stockton and Columbus, this high-energy busking collective captures the spontaneous spirit of the neighborhood. The performance is a masterclass in Street Swing and...",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/magic-school-busk-5/2026-09-05/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:41.529093Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_red_window|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_d50e13c77b01",
              "venue_id": "venue_the_saloon",
              "title": "The Orphans",
              "event_time": "September 5 @ 4:00 pm - 8:00 pm",
              "venue_name": "The Saloon",
              "event_start": "2026-09-05T16:00:00",
              "event_date": "2026-09-05",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "The Orphans perform at the Saloon. Jon Lawton is one of the best Folk, Blues, Americana singer/songwriters you’ve never heard of. He has been writing, recording and performing for decades. Jon plays an always interesting blend of original and traditional blues, country and folk music. Big Bill Broonzy, Brownie McGhee, John Lee Hooker, Hank Snow,...",
              "event_types": [
                "live_music",
                "rock",
                "folk"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/the-orphans-3-2/2026-09-05/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:41.529093Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_saloon|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_2021575692bc",
              "venue_id": "venue_the_grove",
              "title": "Sami Stevens",
              "event_time": "September 5 @ 5:00 pm - 8:00 pm",
              "venue_name": "The Grove",
              "event_start": "2026-09-05T17:00:00",
              "event_date": "2026-09-05",
              "venue_address": "690 Mission St, San Francisco, CA 94105",
              "description": "Sami Stevens is a Brooklyn-based singer-songwriter and pianist appearing at The Grove, drawing on jazz, soul, folk, and indie rock influences to deliver intimate original music rooted in the tradition of classic American singer-songwriters of the 1960s and 70s. She released her debut solo album Morning on Sunnyside Records in 2023 and has toured extensively...",
              "event_types": [
                "live_music",
                "jazz",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/sami-stevens-2/2026-09-05/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:41.529093Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_grove|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_1d301536871a",
              "venue_id": "venue_scopo_divino",
              "title": "Helene’s Jazz Trio",
              "event_time": "September 5 @ 6:00 pm - 9:00 pm",
              "venue_name": "Scopo Divino",
              "event_start": "2026-09-05T18:00:00",
              "event_date": "2026-09-05",
              "venue_address": "2800 California St, San Francisco, CA 94115",
              "description": "Scopo Divino welcomes Helene’s Jazz Trio — celebrating Black American musical traditions with an evening of bebop, blues, standards, and beyond in a relaxed, outdoor setting on the front patio....",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/helenes-jazz-trio/2026-09-05/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:41.529093Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scopo_divino|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_421a2426d55b",
              "venue_id": "venue_club_deluxe",
              "title": "Caribérico",
              "event_time": "September 5 @ 6:00 pm - 9:00 pm",
              "venue_name": "The DeLuxe",
              "event_start": "2026-09-05T18:00:00",
              "event_date": "2026-09-05",
              "venue_address": "1511 Haight St, San Francisco, CA 94117",
              "description": "Caribérico at The Deluxe brings a Latin‑infused, groove‑heavy sound into Haight Street’s cozy neighborhood bar, turning the room into a lively, dance‑friendly space for rhythms and melodies from across the Caribbean and Iberian worlds. Leaning into a mix of Latin jazz, salsa‑tinged tunes, and soulful, guitar‑ and horn‑driven arrangements, the band’s warm tone and tight...",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$10",
              "url": "https://offbeatsf.com/event/cariberico/2026-09-05/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:41.529093Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_deluxe|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_74e42596e1a3",
              "venue_id": "venue_comstock_saloon",
              "title": "Cliff Meyers & Friends",
              "event_time": "September 5 @ 8:00 pm - 11:00 pm",
              "venue_name": "Comstock Saloon",
              "event_start": "2026-09-05T20:00:00",
              "event_date": "2026-09-05",
              "venue_address": "155 Columbus Ave, San Francisco, CA 94133",
              "description": "Cliff Meyers & Friends is a jazz-funk and soul-jazz ensemble appearing at the Comstock Saloon from 8 pm to 11 pm. Led by Meyers with a rotating cast of Bay...",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/cliff-meyers-friends-4/2026-09-05/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:41.529093Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_comstock_saloon",
                  "source_name": "Comstock Saloon",
                  "fetched_at": "2026-09-03T14:26:10.425617Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_comstock_saloon|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_fc1d80ae3be3",
              "venue_id": "venue_lions_den",
              "title": "Rotating Bands at the Lion’s Den",
              "event_time": "September 5 @ 8:00 pm - 11:00 pm",
              "venue_name": "Lion's Den",
              "event_start": "2026-09-05T20:00:00",
              "event_date": "2026-09-05",
              "venue_address": "57 Wentworth Pl, San Francisco, CA 94108",
              "description": "Experience the resurgence of San Francisco’s historic Chinatown nightlife at the Lion’s Den.  Tucked away on Wentworth Place, this bi-level lounge and performance space blends modern cocktail culture with the East meets West spirit of the Chinatown’s golden age. Every week, the venue transforms into a unique destination for live music, featuring a rotating roster...",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/live-music-at-the-lions-den-2-2/2026-09-05/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:41.529093Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_lions_den|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_fc63cde59761",
              "venue_id": "venue_local_edition",
              "title": "Oakland Jazz Funk Project",
              "event_time": "September 5 @ 8:30 pm - 11:30 pm",
              "venue_name": "Local Edition",
              "event_start": "2026-09-05T20:30:00",
              "event_date": "2026-09-05",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "OAKLAND JAZZ FUNK PROJECT8:30pm - 12:30amThe Oakland Jazz Funk Project believes  jazz is a living language that continues to grow and evolve.  Jazz didn't die in 1959.  It lives on in funk, neo-soul, R&B, fusion,  jazz-funk and so much more. OJFP honors and plays it all, from straight-ahead jazz to 70's funk to contemporary neo-soul.  Jazz lives on and OJFP  keeps it alive and relevant!  Their music  will warm your heart, speak to your soul and is sure to get you off your feet and dancing!",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/oakland-jazz-funk-project/2026-09-05/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:41.529093Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-09-03T12:59:31.047351Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_8bf26a5d2cc7",
              "venue_id": "venue_the_saloon",
              "title": "My Blue Soul",
              "event_time": "September 5 @ 9:30 pm - 1:30 am",
              "venue_name": "The Saloon",
              "event_start": "2026-09-05T21:30:00",
              "event_date": "2026-09-05",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "My Blue Soul is a vibrant San Francisco band specializing in soul, blues, and funk with a monthly residence at the Saloon. Formed in 2010, they gained a strong local...",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/my-blue-soul-8-2/2026-09-05/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:44.081024Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_saloon|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_b38a0e3b0eb3",
              "venue_id": "venue_the_midway",
              "title": "Electroluxx Block Party",
              "event_time": "09/05/2026 3:00 PM",
              "venue_name": "The Midway",
              "event_start": "2026-09-05T15:00:00",
              "event_date": "2026-09-05",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "INDOORS & OUTDOORS",
              "event_types": [
                "dj_party",
                "festival"
              ],
              "price_info": "TICKETS",
              "url": "https://www.tixr.com/groups/midwaysf/events/electroluxx-block-party-purple-disco-machine-rupaul-more-188276",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-09-02T11:30:22.920988Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d6362b6adbd4",
              "venue_id": "venue_the_midway",
              "title": "DJ Holographic",
              "event_time": "09/05/2026 10:00 PM",
              "venue_name": "The Midway",
              "event_start": "2026-09-05T22:00:00",
              "event_date": "2026-09-05",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "FULL VENUE",
              "event_types": [
                "dj_party"
              ],
              "price_info": "TICKETS",
              "url": "https://www.tixr.com/groups/midwaysf/events/dj-holographic-at-the-midway-203909",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-09-02T11:30:22.920988Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c3e4f268637c",
              "venue_id": "venue_cow_palace",
              "title": "Cardshow Con – The World of Sports Show",
              "event_time": "2026-09-05T10:00:00",
              "venue_name": "Cow Palace",
              "event_start": "2026-09-05T10:00:00",
              "event_date": "2026-09-05",
              "venue_address": "2600 Geneva Ave, Daly City, CA 94014",
              "description": "CARD SHOW CON at the Cow Palace brings together collectors and vendors for buying, selling, and trading sports cards, TCGs, and pop culture memorabilia. Attendees can browse hundreds of dealer tables, connect with fellow enthusiasts, and meet featured autograph guests.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cow_palace",
                  "source_name": "Cow Palace",
                  "fetched_at": "2026-09-02T11:32:56.966259Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cow_palace|2026-09-05",
              "run_id": "run_c7e29f604a56",
              "run_label": "Cardshow Con – The World of Sports Show, Sep 5 – Sep 6",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_dbb0e1c2519e",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy",
              "event_time": "2026-09-05T19:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-09-05T19:45:00",
              "event_date": "2026-09-05",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "Stand-up comedy show at Shelton Theater. Listing says each show features five to six hand-picked, experienced comedians and an occasional guest drop-in.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$25.00",
              "url": "https://tickets.cttcomedy.com/events/2552/cheaper-than-therapy-stand-up-comedy-sat-sep-5-7-45-pm/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-09-02T11:40:03.690341Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_b11cdf435d3f",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy",
              "event_time": "2026-09-05T21:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-09-05T21:45:00",
              "event_date": "2026-09-05",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "Stand-up comedy show at Shelton Theater. Listing says each show features five to six hand-picked, experienced comedians and an occasional guest drop-in.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$25.00",
              "url": "https://tickets.cttcomedy.com/events/2553/cheaper-than-therapy-stand-up-comedy-sat-sep-5-9-45-pm/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-09-02T11:40:03.690341Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_57ead02f6a48",
              "venue_id": "venue_madrone_art_bar",
              "title": "Madrone x Gamescape: Game Night",
              "event_time": "September 5 @ 4:00 pm - 7:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-05T16:00:00",
              "event_date": "2026-09-05",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Join us for the first of our monthly Game Nights with Gamescape! 🎲♟️ Come solo or bring friends and choose from a mix of party games, strategy games, chess, puzzles, and more. The Gamescape crew will be on hand to help you find a game and get started. Free, 21+, and outside food is welcome! [&hellip;]",
              "event_types": [
                "sports"
              ],
              "price_info": "Free",
              "url": "https://madroneartbar.com/event/madrone-x-gamescape-game-night/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9e1133b49ec9",
              "venue_id": "venue_madrone_art_bar",
              "title": "Pop Life",
              "event_time": "September 5 @ 9:00 pm - 1:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-05T21:00:00",
              "event_date": "2026-09-05",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Have fun with your friends at POP LIFE - the music video party. Every first Saturday of the month! Disco, Soul, Top 40 Pop Hits, Party Anthems, Hip-Hop, One Hit Wonders, Guilty Pleasures, and more $10 at the door / 9pm-1:45am / 21+ / no dress code, dress how ya like! Guarantee your spot!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10 at the door",
              "url": "https://madroneartbar.com/event/the-pr-mj-experience-2026-02-07-2026-07-04-2026-09-05/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_dc86c4662124",
              "venue_id": "venue_piedmont_piano_company",
              "title": "Ali Ryerson Quartet",
              "event_time": "2026-09-05T17:30:00",
              "venue_name": "Piedmont Piano Co",
              "event_start": "2026-09-05T17:30:00",
              "event_date": "2026-09-05",
              "venue_address": "1728 San Pablo Ave, Oakland, CA 94612",
              "description": "Internationally renowned jazz flutist, Ali Ryerson, is excited to return to Piedmont Piano Company to celebrate the release of her latest CD, \"The Ali Ryerson Quartet\", recorded with Ali's east coast quartet and released on ACR Music (2026). For this special event, Ryerson will be joined her longtime colleagues, Steve Rudolph on piano, John Wiitala on bass, and Akira Tana on drums.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "General Admission: $25 in advance / $30 at the door",
              "url": "https://piedmontpiano.com/calendar/2026/9/5/ali-ryerson-quartet",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_piano_company",
                  "source_name": "Piedmont Piano Co",
                  "fetched_at": "2026-09-03T10:22:09.546608Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_piedmont_piano_company|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_0f4855815168",
              "venue_id": "venue_moes_alley",
              "title": "Clinton Fearon & Boogie Brown Band",
              "event_time": "2026-09-05T21:00:00",
              "venue_name": "Moe's Alley",
              "event_start": "2026-09-05T21:00:00",
              "event_date": "2026-09-05",
              "venue_address": "1535 Commercial Way, Santa Cruz, CA 95065",
              "description": "Show: 9:00 PM",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_moes_alley",
                  "source_name": "Moe's Alley",
                  "fetched_at": "2026-09-03T10:23:10.512238Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_moes_alley|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_13f88495b9b4",
              "venue_id": "venue_black_cat",
              "title": "Max Haymer Power Trio",
              "event_time": "2026-09-05T19:00:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-05T19:00:00",
              "event_date": "2026-09-05",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30, $40 , $50 , $60 \n\n(price includes $5.50 processing and ticketing fee)\n\n \n\n7:00 show: Doors @ 6:00\n\n9:30 show: Bar @ 6:00, Doors @ 8:45\n\n\n\n\nHigh-impact “athletic jazz” driven by power, precision, Afro-Cuban fire, and serious piano virtuosity.\n\n\n\n\nGrammy-nominated pianist Max Haymer makes his Black Cat debut with a trio built for drama, momentum, and explosive live interplay. Known for his decade as pianist and musical director for 10-time Grammy winner Arturo Sandoval, Haymer also collaborates with acclaimed vocalist Jane Monheit.\n\n\n\n\nHis sets move from striking original compositions to reimagined Broadway and jazz standards, all charged with rhythmic intensity, emotional weight, and flashes of Afro-Cuban heat. A recent South Arts Jazz Road Award recipient, Haymer brings a muscular, cinematic sound that lands hard in the room. \n\n\n\n\nBand Lineup:\n\nMax Haymer, piano\n\nNick Campbell, bass\n\nRick Montalbano, drums",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $30, $40 , $50 , $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/12431/2026-09-05",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e021fa11db9e",
              "venue_id": "venue_black_cat",
              "title": "Max Haymer Power Trio",
              "event_time": "2026-09-05T21:30:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-05T21:30:00",
              "event_date": "2026-09-05",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30, $40 , $50 , $60 \n\n(price includes $5.50 processing and ticketing fee)\n\n \n\n7:00 show: Doors @ 6:00\n\n9:30 show: Bar @ 6:00, Doors @ 8:45\n\n\n\n\nHigh-impact “athletic jazz” driven by power, precision, Afro-Cuban fire, and serious piano virtuosity.\n\n\n\n\nGrammy-nominated pianist Max Haymer makes his Black Cat debut with a trio built for drama, momentum, and explosive live interplay. Known for his decade as pianist and musical director for 10-time Grammy winner Arturo Sandoval, Haymer also collaborates with acclaimed vocalist Jane Monheit.\n\n\n\n\nHis sets move from striking original compositions to reimagined Broadway and jazz standards, all charged with rhythmic intensity, emotional weight, and flashes of Afro-Cuban heat. A recent South Arts Jazz Road Award recipient, Haymer brings a muscular, cinematic sound that lands hard in the room. \n\n\n\n\nBand Lineup:\n\nMax Haymer, piano\n\nNick Campbell, bass\n\nRick Montalbano, drums",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $30, $40 , $50 , $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/12431/2026-09-05",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e9255146a2b3",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Larry Vuckovich: Hector Lugo Jazz/Latin Trio",
              "event_time": "Saturday, September 5, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-05T19:00:00",
              "event_date": "2026-09-05",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Saturday, September 5, 2026 @ 7pm",
              "event_types": [
                "live_music",
                "jazz",
                "latin_world"
              ],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/larry-vuckovich-hector-lugo-jazz-latin-trio-3/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6de786c2c66f",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Fred Ross",
              "event_time": "Saturday, September 5, 2026 @ 9pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-05T21:00:00",
              "event_date": "2026-09-05",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Saturday, September 5, 2026 @ 9pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/fred-ross/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f904f92b08c4",
              "venue_id": "venue_z_space",
              "title": "San Francisco Hysterical Historium",
              "event_time": "2026-09-05T19:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-09-05T19:00:00",
              "event_date": "2026-09-05",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "Killing My Lobster & Z Space present: San Francisco Hysterical Historium, a Co-Production with Red Barn Productions. Sketch comedy that ain't fool's gold!",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-09-03T10:55:35.787344Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_z_space|2026-09-05",
              "run_id": "run_6cdec2f9a529",
              "run_label": "San Francisco Hysterical Historium, Sep 4 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1340b18dd318",
              "venue_id": "venue_brick_and_mortar",
              "title": "RAININGLOL & 2FACEDLON W/ JAY ARMANI",
              "event_time": "9.5 Show: 8:00PM",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-09-05T20:00:00",
              "event_date": "2026-09-05",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Event Details L7CK Entertainment, Bayzlive, & 415Fest Presents Raininglol & 2FacedLon w/ Jay Armani with 2FacedLon , Jay Armani , RatedR , JJ September 5, 2026 8:00 pm PDT (Doors: 7:00 pm ) Brick and Mortar Music Hall , 1710 Mission Street , San Francisco, CA ( map ) $27.58 Buy Tickets + Google Calendar Anyone under 21 years old must pay an additional $5 at the door Raininglol 2FacedLon Jay Armani RatedR JJ JUST ANNOUNCED Felukah — HibisKiss Tour October 28, 2026 Thoughts on Bowling November 27, 2026 BIIRD (Night 2) September 20, 2026 MoneyHillCasino October 11, 2026 Hayden Everett October 29, 2026 Follow us on Instagram Join the Brick & Mortar Newsletter",
              "event_types": [
                "live_music"
              ],
              "price_info": "$27.58",
              "url": "https://www.brickandmortarmusic.com/tm-event/raininglol-2facedlon-w-jay-armani/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-09-03T11:13:51.689688Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6beea0e25f0d",
              "venue_id": "venue_pacific_film_archive",
              "title": "Breathless",
              "event_time": "Sep 05, 2026 4:30 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-05T16:30:00",
              "event_date": "2026-09-05",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Jean Seberg and Jean-Paul Belmondo star in the jazzy genre pastiche that launched Jean-Luc Godard’s career and embodied the breathless bravado of the French New Wave.",
              "event_types": [
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/breathless",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_da0754d5ee0e",
              "venue_id": "venue_pacific_film_archive",
              "title": "Mean Streets",
              "event_time": "Sep 05, 2026 7 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-05T19:00:00",
              "event_date": "2026-09-05",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Set during the Feast of San Gennaro in the Italian neighborhood where Martin Scorsese grew up, and populated with characters and situations based on the neighborhood’s inhabitants, Mean Streets is a brilliant distillation of the themes that would define the director’s career.",
              "event_types": [
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/mean-streets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6b3208c6a7b9",
              "venue_id": "venue_4_star_theater",
              "title": "CatVideoFest 2026",
              "event_time": "5 September 2026 10:00 AM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-05T10:00:00",
              "event_date": "2026-09-05",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Oscilloscope Laboratories presents CatVideoFest 2026, a compilation of the latest and best cat videos culled from countless hours of unique submissions and sourced animations, music videos, and classic internet powerhouses. Each year, across the country, local theaters partner with nearby cat-focused charities, animal welfare associations and shelters alike — a portion of proceeds from every show goes directly to local cats in need.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/catvideofest-sat",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b687adf60a9c",
              "venue_id": "venue_4_star_theater",
              "title": "The Innermost Limits of...",
              "event_time": "5 September 2026 1:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-05T13:00:00",
              "event_date": "2026-09-05",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Ocean Beach Surf Film Festival presents:    Jack Johnson: SURFILMUSIC   An intimate documentary following Johnson's journey from surfer to filmmaker to world-renowned musician through rare archives and present-day reflections on how experience, friendship, and exploration shaped his sound and storie",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/obsurf-surfilmusic",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ea22a0640dd5",
              "venue_id": "venue_pier_23",
              "title": "GUILIA MARIE TRIO",
              "event_time": "Saturday, September 5, 2026 4:00 PM\n              \n              7:00 PM",
              "venue_name": "Pier 23",
              "event_start": "2026-09-05T16:00:00",
              "event_date": "2026-09-05",
              "venue_address": "23 The Embarcadero,San Francisco, CA 94111",
              "description": "Latin Jazz is here! Join us for a night with the Guilia Marie Trio. Stay for a bite, a specialty cocktail and a bay view! Bring a friend.",
              "event_types": [
                "live_music",
                "jazz",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.pier23cafe.com/events/2026/7/18/guilia-marie-trio-6kh4p",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pier_23",
                  "source_name": "Pier 23",
                  "fetched_at": "2026-09-03T13:40:31.659066Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pier_23|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4e371ccdb1f8",
              "venue_id": "venue_caravan_lounge",
              "title": "Skool Of Sharks",
              "event_time": "09/05/2026",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "Welcome to The Caravan Lounge THE CARAVAN LOUNGE is a friendly, owner-operated bar located in the heart of downtown San Jose. As well as being one of San Jose’s oldest live music venues, the Caravan provides other fun activities such as karaoke, comedy, burlesque, pool table, and DJ nights. The Caravan is also extremely affordable for those trying to stretch a budget. And let’s not forget the music! All the shows at the Caravan are FREE! Open 7 days a week 2pm – Close “Aside from the obvious draw of affordable libations poured by heavy-handed barkeeps, The Caravan sets itself apart from other no-frills bars as the place to go to see up-and-coming bands. The bar has hosted plenty of local bands’ first shows, and regularly features smaller touring acts. If you’re a music fan always on the lookout for your new favorite group, make sure to pay attention to who is coming to Caravan.” -Metro FEATURED VIDEOS – Go to our YouTube Channel by clicking here to see more… SEPTEMBER 2026 TUES. SEPT 1st- Karaoke with Ronnie Roach WED. SEPT 2nd – The Caravan Lounge Comedy Show hosted by Chelsea Costanza THURS. SEPT 3rd – SWEAT with DJ SNAQ FRI. SEPT 4th – Rebelskamp, Magick Blues Band, TBA SAT. SEPT 5th – Skool Of Sharks TUES. SEPT 8th- Karaoke with Ronnie Roach WED. SEPT 9th – The Caravan Lounge Comedy Show Hosted by Nyoki THURS. SEPT 10th – Shrine Goth DJ Night with Hex Embrace, C_Death, and Owen FRI. SEPT 11th – Circus Of Sin 10 Year Sinnaversary! Hosted By Some Guy SAT. SEPT. 12th – CaveFest II We Love You Curtis Castro! Abysmal Piss, Ominous Ruin, Lost To The Void TUES. SEPT 15th – Karaoke with Ronnie Roach WED. SEPT 16th -The Caravan Lounge Comedy Show Hosted by Ato Walker THURS. SEPT 17th – TBA FRI. SEPT 18th – TBA SAT. SEPT 19th – Facekicker, American Standard, 12 Steps To Nothing TUES. SEPT 22nd – Karaoke with Ronnie Roach WED. SEPT 23rd- The Caravan Lounge Comedy Show hosted by Matt Kennedy THURS. SEPT 24th – Sweethearts DJ Night FRI. SEPT 25th – Ding Mao, Diamantide, Clou",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "FREE",
              "url": "http://s172518151.onlinehome.us/caravan/site/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-09-03T14:20:40.572990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8f9c74a62052",
              "venue_id": "venue_poor_house_bistro",
              "title": "Garcia Brothers",
              "event_time": "2026-09-05T18:00:00",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-09-05T18:00:00",
              "event_date": "2026-09-05",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-09-04T10:11:13.938872Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1ec8eed4954e",
              "venue_id": "venue_sailing_goat",
              "title": "Honey Disposition",
              "event_time": "2026-09-05T17:00:00",
              "venue_name": "Sailing Goat",
              "event_start": "2026-09-05T17:00:00",
              "event_date": "2026-09-05",
              "venue_address": "1900 Stenmark Dr, Richmond, CA 94801",
              "description": "Honey Disposition Sat, Sep 05 | Sailing Goat at Point San Pablo Harbor Original folk, jazz, rock, and pop Time & Location Sep 05, 2026, 5:00 PM – 8:00 PM Sailing Goat at Point San Pablo Harbor, 1900 Stenmark Dr, Richmond, CA 94801, USA About the event Honey Disposition, the passion project of singer/songwriters Elizabeth Boaz and Alex Michels, is a San Francisco based band rooted in the profound connection of friendship and a shared passion for music. Despite their contrasting musical upbringings, with Alex immersing himself in classical trumpet and rock & roll guitar and Elizabeth exploring the realms of musical theater from an early age, the two artists discovered common ground in their shared dedication to original songwriting. Their paths crossed in 2018, and it became evident that their collaboration held the potential for something remarkable. In the years that followed, Honey Disposition evolved into an iconic duo — with a rotating assortment of fun musical guests! — committed to making a meaningful impact on both local and global communities through their music. Elizabeth's perceptive lyrics and distinctive vocal arrangements seamlessly blend with Alex's catchy melodies and soulful trumpet playing, creating a signature sound that resonates with authenticity. Pulling from genres such as folk, jazz, rock, and pop, their original music and cover song selections appeal to a wide range of listeners. This dynamic duo extends their influence beyond the stage, recording their original music in their home studio, leading educational music camps and masterclasses, and touring frequently all around the United States. Their commitment to spreading joy and empowerment is evident in every note they compose and every stage they grace. As Honey Disposition continues to shape the musical landscape, Elizabeth Boaz and Alex Michels stand as a testament to the transformative power of collaboration, proving that the convergence of diverse backgrounds can give rise to a harmoniou",
              "event_types": [
                "live_music",
                "folk",
                "jazz",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://www.sailinggoatrestaurant.com/event-details/honey-disposition",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sailing_goat",
                  "source_name": "Sailing Goat",
                  "fetched_at": "2026-09-04T10:13:07.105977Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sailing_goat|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_21d9f3dba0a8",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-09-05",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "Music by Marc Shaiman & Thomas Meehan. Lyrics by Mark Shaiman & Scott Wittman. A 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to change her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "On Stage Now",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-09-04T10:15:07.852694Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-05",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7fb407a5f3f7",
              "venue_id": "venue_swedish_american",
              "title": "Private Event",
              "event_time": "9/5/2026 12:00 am",
              "venue_name": "Swedish American Hall",
              "event_start": "2026-09-05T00:00:00",
              "event_date": "2026-09-05",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously. Cookie Duration Description cookielawinfo-checkbox-analytics 11 months This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category \"Analytics\". cookielawinfo-checkbox-functional 11 months The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category \"Functional\". cookielawinfo-checkbox-necessary 11 months This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category \"Necessary\". cookielawinfo-checkbox-others 11 months This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category \"Other. cookielawinfo-checkbox-performance 11 months This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category \"Performance\". viewed_cookie_policy 11 months The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.",
              "event_types": [
                "community"
              ],
              "price_info": "enquire",
              "url": "https://cafedunord.com/tm-event/private-event-26/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cafe_du_nord_and_swedish_american_hall",
                  "source_name": "Cafe Du Nord and Swedish American Hall",
                  "fetched_at": "2026-09-04T10:21:43.132381Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_swedish_american|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_f61627d8be06",
              "venue_id": "venue_roxy",
              "title": "CatVideoFest 2026",
              "event_time": "Saturday, September 5, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "Oscilloscope Laboratories presents CatVideoFest 2026, a compilation of the latest and best cat videos culled from countless hours of unique submissions and sourced animations, music videos, and classic internet powerhouses. Each year, across the country, local theaters partner with nearby cat-focused charities, animal welfare associations and shelters alike — a portion of ticket proceeds from every show goes directly to local cats in need.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/catvideofest-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-09-04T10:24:35.292955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c7cccd97c793",
              "venue_id": "venue_roxy",
              "title": "American Doctor",
              "event_time": "Saturday, September 5, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "From Oscar®-nominated and Emmy® Award-winning filmmaker Poh Si Teng, American Doctor follows three American physicians— Palestinian, Jewish, and Zoroastrian—united by a single oath to save lives. After volunteering in besieged hospitals in Gaza, they return home determined to fight for the patients and colleagues they left behind, taking their battle from the front lines of war to the halls of Congress.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/american-doctor/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-09-04T10:24:35.292955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8f0f0e90bdec",
              "venue_id": "venue_roxy",
              "title": "Mary Oliver: Saved by the Beauty of the World",
              "event_time": "Saturday, September 5, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "If poetry had a pop icon, Mary Oliver would be it. Celebrated best-selling poet, Pulitzer Prize-winner, lover of dogs and long walks in the woods, openly queer but intensely private, Oliver was America’s unlikely contemporary mystic, stalking the ponds and forests of Cape Cod for nearly fifty years in order to open herself – and her readers – to the known and unknowable world. From a lonely childhood to literary fame, Oliver’s life was shaped by devotion to nature, paying attention, and the long journey toward learning to love and to be loved. Her poems inspire liberals and conservatives, atheists and believers, naturalists and urbanites, speaking directly to contemporary anxieties about attention, presence, and the human relationship with the natural world – issues that feel especially pressing in an era of climate crisis, digital distraction, and social fragmentation.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/mary-oliver-saved-by-the-beauty-of-the-world/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-09-04T10:24:35.292955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8e1995d6160e",
              "venue_id": "venue_roxy",
              "title": "The Samurai and the Prisoner",
              "event_time": "Saturday, September 5, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "Celebrated Japanese horror director Kiyoshi Kurosawa ( Cure , Serpent’s Path ) explores a new path in this lush treatment of Honobu Yonezawa’s prizewinning historical novel, detailing palace intrigue in the court of a samurai nobleman during the Azuchi era at the end of the 16th century. Turning against Oda Nobunaga, the ruthless, power-hungry warlord he previously served, Araki Murashige (Masahiro Motoki, of Departures ) is besieged by Oda’s forces and bedevilled by a series of inexplicable crimes in his household. As tension rises and loyalties fray, Murashige is forced to strategize with Kuroda Kanbei (Masaki Suda, of Kurosawa’s 2024 thriller Cloud ), a samurai envoy sent by Oda and imprisoned by Murashige, while his wife Chiyoho (Yuriko Yoshitaka) and loyalists fight to preserve order.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/the-samurai-and-the-prisoner/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-09-04T10:24:35.292955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bde8da3e535d",
              "venue_id": "venue_kilowatt",
              "title": "Cronkite, Cadmium & Swing Batter",
              "event_time": "Sat 5 Sep ― 1:00pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-05T13:00:00",
              "event_date": "2026-09-05",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "**Cronkite:** https://www.instagram.com/cronkitetheband/\n\n**Cadmium:** https://www.instagram.com/cadmiumrockband/\n\n**Swing Batter:** https://www.instagram.co...",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/rc5e7e994d88?pid=ff10e59d",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-09-04T10:33:38.052132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_adbe4eb4db46",
              "venue_id": "venue_kilowatt",
              "title": "Cronkite, Cadmium and Swing Batter",
              "event_time": "Sat 5 Sep ― 6:00pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-05T18:00:00",
              "event_date": "2026-09-05",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "**Cronkite:** https://www.instagram.com/cronkitetheband/\n\n**Cadmium:** https://www.instagram.com/cadmiumrockband/\n\n**Swing Batter:** https://www.instagram.co...",
              "event_types": [
                "live_music",
                "rock",
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/Mbec54cf7a53?pid=ff10e59d",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-09-04T10:33:38.052132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2bc348216755",
              "venue_id": "venue_kilowatt",
              "title": "DJ Feedbag",
              "event_time": "Sat 5 Sep ― 10:00pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-05T22:00:00",
              "event_date": "2026-09-05",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "**Cronkite:** https://www.instagram.com/cronkitetheband/\n\n**Cadmium:** https://www.instagram.com/cadmiumrockband/\n\n**Swing Batter:** https://www.instagram.co...",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/Yb84a92396da?pid=ff10e59d",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-09-04T10:33:38.052132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d540da26193d",
              "venue_id": "venue_oracle_park",
              "title": "DroneArt Show: Harry Potter™",
              "event_time": "2026-09-05",
              "venue_name": "Oracle Park",
              "event_start": "2026-09-05",
              "event_date": "2026-09-05",
              "venue_address": "24 Willie Mays Plaza, San Francisco, CA 94107",
              "description": "Prepare for a spellbinding evening of DroneArt Show: Harry Potter™ in San Francisco, a one-night-only event celebrating the 25th anniversary of the Harry Potter™ films at the iconic Oracle Park. Watch 1,200 illuminated drones recreate your favorite characters and most beloved movie moments, synchronized with the legendary music from the soundtrack and dialogue from the films.",
              "event_types": [
                "art",
                "film"
              ],
              "price_info": "See website for pricing",
              "url": "https://www.mlb.com/giants/tickets/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_oracle_park",
                  "source_name": "Oracle Park",
                  "fetched_at": "2026-09-04T10:45:44.789648Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_oracle_park|2026-09-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-09-06": {
          "date": "2026-09-06",
          "updated_at": "2026-09-04T10:39:45.094064Z",
          "events": [
            {
              "event_id": "evt_c307a9de02cf",
              "venue_id": "venue_audio",
              "title": "Daft Disko",
              "event_time": "2026-09-06T21:00:00",
              "venue_name": "Audio",
              "event_start": "2026-09-06T21:00:00",
              "event_date": "2026-09-06",
              "venue_address": "316 11th St, San Francisco, CA 94103",
              "description": "Daft Punk ⋅ Stardust ⋅ Breakbot ⋅ Justice ⋅ Cassius ⋅ Uffie ⋅ Giorgio Moroder ⋅ Chic ⋅ Yuksek ⋅ Modjo ⋅ Phoenix ⋅ Mr. Oizo ⋅ Modjo ⋅ Purple Disco Machine ⋅ Soulwax ⋅ Etienne De Crecy ⋅ Kavinsky ⋅ Fred Falke ⋅ Boston Bun ⋅ Le Knight Club ⋅ Armand Van Helden ⋅ DJ Falcon ⋅ Vitalic ⋅ Alex Gopher ⋅ DJ Mehdi ⋅ Mylo ⋅ Boys Noize ⋅ The Bucketheads ⋅ Parcels ⋅ Dimitri From Paris ⋅ Duck Sauce & Many More",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free with RSVP",
              "url": "https://www.eventbrite.com/e/daft-disko-san-francisco-labor-day-sunday-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audio",
                  "source_name": "Audio",
                  "fetched_at": "2026-06-28T05:34:16.740381Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-06-29T13:04:25.374124Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_eventbrite_sf",
                  "source_name": "Eventbrite SF",
                  "fetched_at": "2026-08-02T12:35:52.528605Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_eventbrite_oak",
                  "source_name": "Eventbrite OAK",
                  "fetched_at": "2026-08-11T12:08:52.195132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_audio|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ddf66ed48496",
              "venue_id": "venue_the_ritz",
              "title": "Pallbearer, Ordh",
              "event_time": "sep 6 7pm",
              "venue_name": "The Ritz",
              "event_start": "2026-09-06T19:00:00",
              "event_date": "2026-09-06",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "PALLBEARER\nORDH\nCHROME GHOST\n\n \n\nSUNDAY SEPTEMBER 6, 2026",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$31.34",
              "url": "https://www.ticketweb.com/event/pallbearer-the-ritz-tickets/14223234",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-12T11:45:29.263581Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-07-12T11:49:06.462632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3524a4c683ac",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Helms Alee, Disastroid, Thornpusher",
              "event_time": "Sunday September 6\n          2026 3:00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-06T15:00:00",
              "event_date": "2026-09-06",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "The 2nd Annual Michael Madfes Memorial BBQ - Post-Rock, Sludge Metal, sludgy, grunge-infused stoner rock, doom metal",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20 in advance / $25 at the door",
              "url": "http://www.bottomofthehill.com/20260906.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-07-20T11:17:58.345550Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_be1ce9e6d7ba",
              "venue_id": "venue_siesta_valley_bowl",
              "title": "Talib Kweli",
              "event_time": "September 6, 2026 8:00 PM",
              "venue_name": "Siesta Valley Bowl",
              "event_start": "2026-09-06T20:00:00",
              "event_date": "2026-09-06",
              "venue_address": "100 Gateway Blvd, Orinda, CA 94563",
              "description": "The Brooklyn-based MC earned his stripes as one of the most lyrically-gifted, socially aware and politically insightful rappers to emerge in the last 20 years. “I’m a touring artist. I’m an artist that’s internationally known. I’m not just a local artist at this point in my career. I’m cognizant of the fact that what I do is beyond where it started. I’m trying to reach the apex of where I am now, but without turning my back on or dismissing what I’ve done before.” After nearly 20 years of releasing mesmerizing music, Talib Kweli stands as one of the world’s most talented and most accomplished Hip Hop artists. Whether working with Mos Def as one-half of Black Star, partnering with producer Hi-Tek for Reflection Eternal, releasing landmark solo material or collaborating with Kanye West, Pharrell Williams, Just Blaze, J Dilla, or Madlib, Kweli commands attention by delivering top-tier lyricism, crafting captivating stories and showing the ability to rhyme over virtually any type of instrumental. In 2011, Kweli founded Javotti Media, which is self-defined as “a platform for independent thinkers and doers.” Kweli has set out to make Javotti Media (which released his 2011 album, Gutter Rainbows, and is named after his paternal grandmother) into a media powerhouse that releases music, films and books.‍",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$40.25 - $60.85 (fees included)",
              "url": "https://www.ticketmaster.com/event/1C0064F00561A4C4",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_siesta_valley_bowl",
                  "source_name": "Siesta Valley Bowl",
                  "fetched_at": "2026-07-22T11:13:17.785684Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-24T10:42:11.416886Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_siesta_valley_bowl|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_69271f9733c3",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "Unreal: Gravedgr, Johannes Schuster & NOVAH",
              "event_time": "2026-09-06T22:00:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-09-06T22:00:00",
              "event_date": "2026-09-06",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "Electronic music event presented by Unreal, Insomniac, and NPU Live featuring Fantasm, GRAVEDGR, Johannes Schuster, KUKO, Miss Crafty, and Novah.",
              "event_types": [
                "electronic",
                "live_music"
              ],
              "price_info": "$59.55-121.72 | 21+",
              "url": "https://www.axs.com/events/unreal",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-08-12T11:14:42.836547Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-20T13:04:21.299441Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_resident_advisor_sf_ra",
                  "source_name": "Resident Advisor SF (RA)",
                  "fetched_at": "2026-08-28T22:15:14.237667Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4ff7de78286a",
              "venue_id": "venue_ivy_room",
              "title": "Mr Cindy & The Secret Emchy Society",
              "event_time": "Sunday Sep 6 2:30 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-06T14:30:00",
              "event_date": "2026-09-06",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "ivy room presents - genre - country, americana, folk rock, honky tonk",
              "event_types": [
                "dj_party"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/193487",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-08-15T10:22:49.486130Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1c751df0c6db",
              "venue_id": "venue_revolution_cafe_oak",
              "title": "Baby On A Rampage",
              "event_time": "sep 6 1:23pm",
              "venue_name": "Revolution Cafe",
              "event_start": "2026-09-06T13:23:00",
              "event_date": "2026-09-06",
              "venue_address": "1610 7th Street, Oakland, CA 94607",
              "description": "all ages; mosh pit warning",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15/$20",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_revolution_cafe_oak|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_f043c1fb5395",
              "venue_id": "venue_kilowatt",
              "title": "Casino Youth, Mommy Mommy & Pro-Pain",
              "event_time": "sep 6 7pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-06T19:00:00",
              "event_date": "2026-09-06",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Keep track of what’s coming up by saving events, sharing them with friends, or even listening to new music in the app.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "free",
              "url": "https://link.dice.fm/o45e91c26b38?pid=ff10e59d",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-08-29T00:03:32.996598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_fdc532e171ac",
              "venue_id": "venue_public_works",
              "title": "HARDWARE",
              "event_time": "2026-09-06T22:00:00",
              "venue_name": "Public Works",
              "event_start": "2026-09-06T22:00:00",
              "event_date": "2026-09-06",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "Labor Day Weekend techno night featuring Tommy Hart, Nark, OZA, Fawks, and Transsexual Tio across two floors at Public Works.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$24.47-75.13 | 21+",
              "url": "https://tixr.com/groups/publicsf/hardware2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-08-17T10:45:28.908286Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_public_works|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8c6e0c63caa3",
              "venue_id": "venue_tupelo",
              "title": "Sunday Artist Series",
              "event_time": "Sunday September 6th 8:00PM - 12:00AM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-06T20:00:00",
              "event_date": "2026-09-06",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "A weekly live music dance party throw down hosted by Shawn Stein with an all-pro house band and different guest vocalists each week. This is the perfect way to cap off your weekend!",
              "event_types": [
                "live_music",
                "dance"
              ],
              "price_info": "Free",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-17T11:00:47.077832Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-08-30T10:45:22.632159Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c4edc721a99c",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Twango SF",
              "event_time": "September 6 @ 6:00 pm - 9:00 pm",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-06T18:00:00",
              "event_date": "2026-09-06",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Twango SF plays vibrant gypsy jazz and hot swing in the enduring style of Django Reinhardt. Enjoy an evening of acoustic guitar swing paired with wine and small bites.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/twango-sf/2026-09-06/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-08-17T15:04:14.240114Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-08-30T10:45:22.632159Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_98dcfcf96c06",
              "venue_id": "venue_sap_center",
              "title": "Monster Jam",
              "event_time": "2026-09-06 2026-09-05T13:00:00",
              "venue_name": "SAP Center",
              "event_start": "2026-09-06",
              "event_date": "2026-09-06",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://www.sapcenter.com/events/monster-jam",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-08-20T12:59:28.269789Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sap_center|2026-09-06",
              "run_id": "run_f93879bfa6c1",
              "run_label": "Monster Jam, Sep 4 – Sep 6",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_ad4d1d1c5231",
              "venue_id": "venue_the_riptide",
              "title": "Nashville Honeymoon",
              "event_time": "Sunday, September 6 7:30 PM - 10:30 PM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-06T19:30:00",
              "event_date": "2026-09-06",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "NASHVILLE HONEYMOON FEATURING JOE GOLDMARK \n\nNashville Honeymoon was born in Berkeley and nurtured in live music venues on both sides of the Bay, Nashville Honeymoon is a honkytonk band that plays their own special brand of California country.  Hank and Lynne started performing together almost accidentally - a happy accident, as it turns out, because it sparked a musical collaboration that has produced three albums and brought them to venues ranging from the iconic Ivy Room to San Francisco’s Great American Music Hall. \n\nJoe Goldmark, the pedal steel visionary, will be featured each month so that 1st Sunday vibe he has created at the Riptide keeps rolling along.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0b1e49cfcde1",
              "venue_id": "venue_rio_theatre_sc",
              "title": "Stephen Malkmus",
              "event_time": "2026-09-06",
              "venue_name": "Rio Theatre",
              "event_start": "2026-09-06T20:00:00",
              "event_date": "2026-09-06",
              "venue_address": "1205 Soquel Ave, Santa Cruz, CA 95062",
              "description": "Stephen Malkmus is a singer and guitarist in the groups Pavement, The Jicks, and the Hard Quartet and was a member of Silver Jews. A graduate of the University of Virginia and a tennis enthusiast, he lives in Chicago.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n  \n\n\n\n\n\n\n  Show time: 8:00 PM, doors 7:00 PMTickets: $55Advance tickets: www.folkyeah.comEvent website: www.folkyeah.com",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.riotheatre.com/events-2/2026/9/6/stevenmalkmus",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rio_theatre_sc",
                  "source_name": "Rio Theatre",
                  "fetched_at": "2026-08-22T11:37:08.858495Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rio_theatre_sc|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_23f6fb1c4f7d",
              "venue_id": "venue_crepe_place",
              "title": "Stephen Malkmus",
              "event_time": "2026-09-06",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-06T20:00:00",
              "event_date": "2026-09-06",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "Grateful Sundays at the Crepe Place take place in the beautiful garden. Full meals are available, and the Garden Bar is open for service! For the past number of years, Matt has hosted the highly successful series \"Grateful Sundays\". This ongoing residency has attracted the finest musicians in the Grateful Dead music genre. While constantly in-demand as a stage and session player throughout the Bay Area, Hartle is also a founding member and musical linchpin of no less than four, Santa Cruz-based bands: Shady Groove - the funky blues, jazz-rock and R&B outfit (a Bay Area favorite going strong since 2001); Painted Mandolin - an acoustic quartet featuring multi-instrumental wizard Joe Craven, of The Jerry Garcia Acoustic Band and David Grisman Quintet; Spirit of 76 - a premier collection of Grateful Dead players, focusing on the jazzy, mid-'70's incarnation of the Dead; and Matt is also renowned as the firebrand lead guitarist of The China Cats, the highly respected Grateful Dead tribute act, a Bay Area favorite.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "https://thecrepeplace.com/shows-list/wk9x6a4lp5em6sf6ybbmhgsrfx4ez3",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cb36a517e5a3",
              "venue_id": "venue_abbott_square",
              "title": "THE TROLLEY DROPS - 1ST SUNDAYS",
              "event_time": "Sunday, September 6, 2026 1:00 PM - 3:00 PM",
              "venue_name": "Abbott Square Market",
              "event_start": "2026-09-06T13:00:00",
              "event_date": "2026-09-06",
              "venue_address": "725 Front St, Santa Cruz, CA 95060",
              "description": "The Trolley Drops play hokum blues and novelty tunes from the 20s and 30s. Vocally rich, carefree, and infectiously fun, this good time dance music, often known as Jug Band Music, blends the call and response of gospel with the drive of the delta blues and the ruckus sounds of New Orleans Jazz. The line up currently includes bass, banjo, guitar, clarinet, trumpet, and trombone with kazoo, washboard and jug players occasionally sitting in...our motto is: The more the merrier… Jug till you Drop…..",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://www.abbottsquaremarket.com/events/the-trolley-drops-1st-sundays-6d9wc",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_abbott_square",
                  "source_name": "Abbott Square Market",
                  "fetched_at": "2026-08-22T12:39:51.694804Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_abbott_square|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_195decf036f2",
              "venue_id": "venue_abbott_square",
              "title": "SALSA BY THE SEA AFTERPARTY",
              "event_time": "Sunday, September 6, 2026 6:00 PM - 9:00 PM",
              "venue_name": "Abbott Square Market",
              "event_start": "2026-09-06T18:00:00",
              "event_date": "2026-09-06",
              "venue_address": "725 Front St, Santa Cruz, CA 95060",
              "description": "Every Sunday evening join us for the Salsa by The Sea Afterparty. Featuring various local DJ’s.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.abbottsquaremarket.com/events/salsa-by-the-sea-afterparty-1-jb89k-k8j3p-5ace6",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_abbott_square",
                  "source_name": "Abbott Square Market",
                  "fetched_at": "2026-08-22T12:39:51.694804Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_abbott_square|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0b7c615fe146",
              "venue_id": "venue_colligan_theater",
              "title": "Puccini's Girl of the Golden West",
              "event_time": "Sunday, September 6 2 – 5pm",
              "venue_name": "Colligan Theater",
              "event_start": "2026-09-06T14:00:00",
              "event_date": "2026-09-06",
              "venue_address": "1010 River St, Santa Cruz, CA 95060",
              "description": "2pm to 5pm, Puccini's Girl of the Golden West, Calendar: Colligan Events, No location, September 6, 2026",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_colligan_theater",
                  "source_name": "Colligan Theater",
                  "fetched_at": "2026-08-22T12:44:15.808279Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_colligan_theater|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a70110a795d0",
              "venue_id": "venue_thee_stork_club",
              "title": "Late to the Party — 1960’s DJ/Dance Night 9/6",
              "event_time": "September 06, 2026 9:00PM",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-09-06T21:00:00",
              "event_date": "2026-09-06",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Sun., 9/6/26 Late to the Party — 1960’s DJ/Dance Night 9pm, $10 adv/door Oakland, you ready? The 1960’s dance night that everyone is talking about is back! I’m excited to announce the next Late To The Party! At the legendary Thee Stork Club. Labor Day Weekend, September 6th. Let’s get wild. The lineup is stacked! Nick Aguilar aka DJ Nick At Nite (Frankie and The Witch Fingers) is coming out from Long Beach! East Bay Soul/R&B aficionado La Garza (Shakedown ‘66, Soul & Steady) will also be joining us on the decks! Top DJ’s spinning only choice 45’s. Let’s not forget our Go-Go, local legend Szandora! She’ll be shakin it up to keep the party rollin. Dress to impress, bring your friends, buy your tickets, and remember.. Don’t Be Late! Players: Hi-Tone https://www.instagram.com/djhitone45?igsh=NTc4MTIwNjQ2YQ%3D%3D&utm_source=qr DJ Kevin Arnold https://www.instagram.com/djkevinarnold?igsh=NTc4MTIwNjQ2YQ== DJ Nick at Nite https://www.instagram.com/nickguyone?igsh=NTc4MTIwNjQ2YQ==",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://wl.seetickets.us/event/late-to-the-party-1960s-djdance-night-96/701030?afflky=TheeStorkClub",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-08-22T14:35:18.029489Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_240997fb9b0f",
              "venue_id": "venue_verdi_club",
              "title": "SF Daytime Social - Salsa & Bachata",
              "event_time": "2026-09-06T15:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-09-06T15:00:00",
              "event_date": "2026-09-06",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "SF DAYTIME SOCIAL - SALSA & BACHATA",
              "event_types": [
                "latin_world",
                "dance",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.verdiclub.net/events-calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-08-22T14:55:24.428239Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_verdi_club|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f86d29a7e9be",
              "venue_id": "venue_bayfront_theater",
              "title": "Spontaneous Broadway",
              "event_time": "2026-09-06",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-09-06",
              "event_date": "2026-09-06",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "BATS Improv presents: Spontaneous Broadway",
              "event_types": [
                "comedy"
              ],
              "price_info": "Not specified",
              "url": "https://www.improv.org/shows",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-08-22T15:11:24.975133Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-09-06",
              "run_id": "run_770a2611a1ad",
              "run_label": "Spontaneous Broadway, Sep 5 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6b00e6d474ee",
              "venue_id": "venue_crows_nest_sc",
              "title": "SAN FRANCISCO COMEDY COMPETITION",
              "event_time": "Sunday September 6th 04:00 PM",
              "venue_name": "The Crow's Nest",
              "event_start": "2026-09-06T16:00:00",
              "event_date": "2026-09-06",
              "venue_address": "2218 East Cliff Dr, Santa Cruz, CA 95062",
              "description": "Sunday September 6th Live Comedy 15 live comics Age 21+ 9:00pm $10 cover Happy Hour from 7pm Starts at 04:00 PM",
              "event_types": [
                "comedy"
              ],
              "price_info": "$10 cover",
              "url": "https://thecomedyunderground.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crows_nest_sc",
                  "source_name": "The Crow's Nest",
                  "fetched_at": "2026-08-22T15:19:13.909618Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crows_nest_sc|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8b4b9ca3ff5b",
              "venue_id": "venue_woodhouse_brewing",
              "title": "AMR 30 YEARS",
              "event_time": "Sunday, September 6, 2026 3:00 PM",
              "venue_name": "Woodhouse Blending & Brewing",
              "event_start": "2026-09-06T15:00:00",
              "event_date": "2026-09-06",
              "venue_address": "119 Madrone St, Santa Cruz, CA 95060",
              "description": "SOLD OUT!\n\nSURPRISE!!!!!\nSLOW GHERKIN, MU330, HONOR SYSTEM, SHINOBU:\nadding a 5th show in SANTA CRUZ on SUN SEPT 6th.  \n\nTICKETS ARE LIVE NOW.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.woodhousebrews.com/events/2026/9/6/amr-30-years",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_woodhouse_brewing",
                  "source_name": "Woodhouse Blending & Brewing",
                  "fetched_at": "2026-08-22T15:55:04.316453Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_woodhouse_brewing|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_02cbdb84e817",
              "venue_id": "venue_roaring_camp",
              "title": "MOONLIGHT DINNER PARTY",
              "event_time": "2026-09-06 September 6 @ 6:00 pm - 10:00 pm",
              "venue_name": "Roaring Camp Railroads",
              "event_start": "2026-09-06T18:00:00",
              "event_date": "2026-09-06",
              "venue_address": "5401 Graham Hill Rd, Felton, CA 95018",
              "description": "Treat yourself to an evening of fun and relaxation at Roaring Camp's Moonlight Steam Train Dinner Party. Start with a hearty BBQ dinner followed by a leisurely train ride aboard vintage railway cars.",
              "event_types": [
                "community"
              ],
              "price_info": "Buy Tickets",
              "url": "https://fareharbor.com/embeds/book/roaringcamp/items/85802/?full-items=yes&flow=77335",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roaring_camp",
                  "source_name": "Roaring Camp Railroads",
                  "fetched_at": "2026-08-22T16:13:37.587446Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_visit_santa_cruz_county",
                  "source_name": "Visit Santa Cruz County",
                  "fetched_at": "2026-08-22T18:34:05.859446Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roaring_camp|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9e9e579f5f18",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Alice for Wonderland",
              "event_time": "2026-09-06",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-06",
              "event_date": "2026-09-06",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-06",
              "run_id": "run_304a2c902844",
              "run_label": "Alice for Wonderland, Aug 22 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_b2734c226dbe",
              "venue_id": "venue_scpl_downtown",
              "title": "Dungeons and Dragons for Adults @ Downtown",
              "event_time": "September 06 2026 1:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-06T13:00:00",
              "event_date": "2026-09-06",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Come join the magical world of D&D storytelling, where you can be a bard, a wizard, or a barbarian for a few hours and let your creativity run free.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16205626",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0524b3aecb22",
              "venue_id": "venue_scpl_downtown",
              "title": "In-person Tech Help @ Downtown",
              "event_time": "September 06 2026 1:00pm - 3:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-06T13:00:00",
              "event_date": "2026-09-06",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Are you stuck with a technology question? You can make a free appointment with a tech savvy library staff member!",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17060661",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5d6f1b1f69b9",
              "venue_id": "venue_the_lab",
              "title": "Shuffle & Flow Sundays",
              "event_time": "2026/09/06 Sun: Sep 6 (12pm-1:30am)",
              "venue_name": "The Lab",
              "event_start": "2026-09-06T12:00:00",
              "event_date": "2026-09-06",
              "venue_address": "2948 16th St, San Francisco, CA 94103",
              "description": "multigenre EDM",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$8 | All ages",
              "url": "https://www.instagram.com/p/DaRllOZv0ly/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_lab|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_f6a6f0a7ea24",
              "venue_id": "venue_discovery_meadow_sj",
              "title": "Alan Walker",
              "event_time": "2026/09/06 Sun: Sep 6 (3pm-10pm)",
              "venue_name": "Discovery Meadow",
              "event_start": "2026-09-06T15:00:00",
              "event_date": "2026-09-06",
              "venue_address": "180 Woz Way, San Jose, CA 95110",
              "description": "EDM, big room, house",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$61.80-74.16 | 18+",
              "url": "https://www.tixr.com/groups/npulive/events/alan-walker-ian-asher-lavern-more-at-discovery-meadow-193280",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_discovery_meadow_sj|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_0659876478c5",
              "venue_id": "venue_dna_lounge",
              "title": "Venjent, Oktae",
              "event_time": "2026/09/06 Sun: Sep 6 (7pm)",
              "venue_name": "DNA Lounge",
              "event_start": "2026-09-06T19:00:00",
              "event_date": "2026-09-06",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "Venjent is all about massive basslines, cheeky remixes, and unfiltered vibes. With tracks like Open The Door and Rave to Love, his sound blends humor, heart, and pure drum & bass chaos. Think every day sounds flipped into dancefloor anthems, wrapped in a signature London swagger. It's all energy, all fun, all the time - a proper rave with a twist. Don't miss the chance to join the vibe tribe. The bass is calling!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$25-36 | All ages",
              "url": "https://www.dnalounge.com/calendar/2026/09-06.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_ae24cb4cb8e1",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Crucial Reggae Sundays",
              "event_time": "September 06, 2026  4:30 pm – 7:30 pm",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-09-06T16:30:00",
              "event_date": "2026-09-06",
              "venue_address": "San Francisco, CA 94118",
              "description": "Crucial Reggae Sunday featuring resident DJs Irie Dole, DJ Guidance, DJ Sep, and special guest Roommate.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://illuminate.org/event/crucial-reggae-sundays-september-6/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_illuminate",
                  "source_name": "Illuminate",
                  "fetched_at": "2026-08-22T21:28:37.918625Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_illuminate_bandshell",
                  "source_name": "Illuminate Bandshell",
                  "fetched_at": "2026-08-26T11:52:22.692932Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-08-30T10:14:46.192640Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_05cedaeb7182",
              "venue_id": "venue_beauregard_vineyards",
              "title": "Girasol Pizza in the Redwoods",
              "event_time": "2026-09-06 Sunday, September 6, 2026",
              "venue_name": "Beauregard Vineyards",
              "event_start": "2026-09-06",
              "event_date": "2026-09-06",
              "venue_address": "10 Pine Flat Rd, Santa Cruz, CA 95060",
              "description": "Enjoy freshly baked artisan pizzas crafted by Girasol paired with estate wines beneath the towering redwood canopy at Beauregard Vineyards.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_beauregard_vineyards",
                  "source_name": "Beauregard Vineyards",
                  "fetched_at": "2026-08-22T22:01:13.013350Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_beauregard_vineyards|2026-09-06",
              "run_id": "run_47f3734b9d2e",
              "run_label": "Girasol Pizza in the Redwoods, Sep 5 – Sep 6",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7f45a154c05a",
              "venue_id": "venue_castro_theater",
              "title": "STAR TREK IV: THE VOYAGE HOME",
              "event_time": "Sunday, September 06, 2026\nDoors: 1:00 pm | Show: 2:00 pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-06T14:00:00",
              "event_date": "2026-09-06",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "We strongly believe that if we do everything we can to treat everyone as we ourselves would wish to be treated, we can succeed in our efforts to “turn everyone on” to the magic of the live music experience. That said, everyone’s case is individual and each venue and show has its own unique challenge. We encourage you to reach out to us directly to purchase tickets and make requests for special accommodations or needs for any event at any venue we present. We will do our very best to accommodate you with an ease of service that will exceed all expectations.",
              "event_types": [
                "film"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/star-trek-260906",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-08-26T11:11:53.167543Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-08-28T18:01:37.988102Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c33afd7e4834",
              "venue_id": "venue_the_freight__salvage",
              "title": "Elizabeth Mitchell",
              "event_time": "2026-09-06T10:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-06T10:00:00",
              "event_date": "2026-09-06",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Acclaimed folk artist Elizabeth Mitchell performs heartwarming, gentle acoustic music and folk songs for audiences of all ages.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$39/$44\n(INCLUDES ALL FEES)",
              "url": "https://secure.thefreight.org/15996/15997",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f4c112db3608",
              "venue_id": "venue_the_freight__salvage",
              "title": "Tribute to Gram Parsons & Emmylou Harris",
              "event_time": "2026-09-06T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-06T19:00:00",
              "event_date": "2026-09-06",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Login View Cart Time remaining: 00:00 Activate Code Your cart has expired Your order contained expired items and your shopping cart has been emptied. Close Details Sunday, September 6, 2026 8:00PM A Tribute to Gram Parsons & Emmylou Harris 2026 Gram Parsons & Emmylou H. A musical tribute to the king and queen of Americana Music Gram Parsons and Emmylou Harris. Featuring many beloved Bay Area Americana performers, including Jill Rogers & Myles Boisen from Crying Time, Loralee Christensen & Paul Olguin from the Loralee Combo, Candy Girard , David Phillips , Gary Vogensen , Kevin Russell and Tim Gahagan from The Familiar Strangers. Ingram Cecil Connor III (November 5, 1946 – September 19, 1973), known professionally as Gram Parsons, was an American singer, songwriter, guitarist, and pianist. He recorded as a solo artist and with the International Submarine Band, the Byrds, and the Flying Burrito Brothers, popularizing what he called \"Cosmic American Music\", a hybrid of country, rhythm and blues, soul, folk, and rock. Emmylou Harris (born April 2, 1947)is an American singer, songwriter, musician, bandleader, and activist. A highly regarded figure in contemporary music, she is known for having a consistent artistic direction. Harris is considered one of the leading music artists behind the country rock genre in the 1970s and the Americana genre in the 1990s. Her music united both country and rock audiences in live performance settings. Her characteristic voice, musical style and songwriting have been acclaimed by critics and fellow recording artists. Gram Parsons and Emmylou Harris had a powerful musical partnership, deeply influencing the country and rock music landscape. Their collaboration, though tragically cut short by Parsons' death in 1973, left a lasting legacy, and Harris has continued to honor his influence throughout her career. Read More Hide View Full Calendar Please Note: Donor discount applied at checkout. Interested in donating? Click here. Advance Ticket",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$39/$44\n(INCLUDES ALL FEES)",
              "url": "https://secure.thefreight.org/16016/16018",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_223ca4e93f97",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "No Kings No Queens Chess Club",
              "event_time": "2026-09-06 4:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-09-06T16:00:00",
              "event_date": "2026-09-06",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "No Kings, No Queens Chess Club is the super-chill community chess club that gathers the 1st Sunday of every month in the galeria. Hosted by Danny Cao, all ages and skill levels are encouraged to come. Never played chess? We'll teach you! Come hang out, talk chess and play a few games.",
              "event_types": [
                "sports",
                "community"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/6kx773xfrbcwl83f2h2ll6r6djbwad",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-08-28T14:05:33.197491Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_481206908670",
              "venue_id": "venue_temescal_arts_center",
              "title": "Improvisation Workshop - First Tuesdays",
              "event_time": "2026-09-06T20:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-09-06T20:00:00",
              "event_date": "2026-09-06",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Improvisation is the key - hosted by Lewis Jordan. Open Workshop and Playground in free improvisation. Spontaneously Assembled Small Groups will collaborate. Come to listen, to be heard, to see, to move. Inviting musicians, poets, dancers, to a non-hierarchical setting to improvise together. Spontaneously composing or conducting, we'll be on a quest for fire.",
              "event_types": [
                "workshop",
                "experimental"
              ],
              "price_info": "Donations encouraged",
              "url": "https://www.temescalartcenter.org/tacmusic.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-08-28T14:09:19.773505Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-09-06",
              "run_id": "run_16a4ae4ccea6",
              "run_label": "Improvisation Workshop - First Tuesdays, Sep 1 – Dec 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_60b6c0234837",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-09-06",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-09-06",
              "event_date": "2026-09-06",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-09-06",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0463557563a5",
              "venue_id": "venue_the_cats",
              "title": "Mark Van Haren",
              "event_time": "2026-09-06 6:00 PM – 8:30 PM",
              "venue_name": "The Cats",
              "event_start": "2026-09-06T18:00:00",
              "event_date": "2026-09-06",
              "venue_address": "17533 Santa Cruz Hwy, Los Gatos, CA 95033",
              "description": "« All Events Mark Van Haren September 6 @ 6:00 PM – 8:30 PM As a ’70s kid on a banana-seat Schwinn, Mark Van Haren carried his transistor radio everywhere, mesmerized by the groovy tunes of the era: Stevie Wonder, Hall & Oates, Al Green, James Taylor, Steely Dan, Bill Withers – and yes, some Bacharach and Beatles, too. Come revisit ’70s pop-soul radio with Mark, who delights in being a kid again. The Cats at Los Gatos 17533 Santa Cruz Hwy Los Gatos , CA 95033 United States + Google Map (408) 354-3060 View Venue Website Add to calendar Google Calendar iCalendar Outlook 365 Outlook Live Leave a Reply Cancel reply Your email address will not be published. Required fields are marked * Comment * Name* Email* Website Save my name, email, and website in this browser for the next time I comment. Δ Event Navigation « Blue Blossom Raised on Video »",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.thecatslosgatos.com/event/mark-van-haren-5/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_cats",
                  "source_name": "The Cats",
                  "fetched_at": "2026-08-28T15:00:29.173610Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_cats|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5d2b0ec1225b",
              "venue_id": "venue_old_first_concerts",
              "title": "Mike Greensill & Friends",
              "event_time": "2026-09-06T16:00:00",
              "venue_name": "Old First Concerts",
              "event_start": "2026-09-06T16:00:00",
              "event_date": "2026-09-06",
              "venue_address": "1751 Sacramento St, San Francisco, CA 94109",
              "description": "Acclaimed jazz pianist Mike Greensill is joined by a stellar lineup of Bay Area musicians to celebrate his 80th birthday and 40 years of performing at Old First Concerts. The special anniversary concert features a delightful exploration of the Great American Songbook alongside Greensill's original compositions.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.oldfirstconcerts.org/performance/mike-greensill-friends-celebrating-his-80th-birthday-sunday-september-6-at-4-pm/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_old_first_concerts",
                  "source_name": "Old First Concerts",
                  "fetched_at": "2026-08-28T15:46:04.694996Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_old_first_concerts|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b08b05f8c573",
              "venue_id": "venue_sfmoma",
              "title": "Art in Motion: Calder and His Mobiles",
              "event_time": "Sunday, Sep 6, 2026 | 11 a.m.",
              "venue_name": "SFMoma",
              "event_start": "2026-09-06T11:00:00",
              "event_date": "2026-09-06",
              "venue_address": "151 Third St, San Francisco, CA 94103",
              "description": "CO-LAB ACTIVATION AND TOUR",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://www.sfmoma.org/event/art-in-motion-calder-and-his-mobiles/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sfmoma",
                  "source_name": "SFMoma",
                  "fetched_at": "2026-08-28T16:39:30.693329Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfmoma|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c4a3c9eda167",
              "venue_id": "venue_omca",
              "title": "Architecture Walk and Talk",
              "event_time": "2026-09-06T13:00:00",
              "venue_name": "OMCA",
              "event_start": "2026-09-06T13:00:00",
              "event_date": "2026-09-06",
              "venue_address": "1000 Oak St, Oakland, CA 94607",
              "description": "Walk through OMCA's landmark building and gardens with members of the Council on Architecture.",
              "event_types": [
                "workshop"
              ],
              "price_info": "Free",
              "url": "https://museumca.org/event/omca-architecture-walk-and-talk-6/2026-09-06/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_omca",
                  "source_name": "OMCA",
                  "fetched_at": "2026-08-28T16:49:24.654558Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_omca|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_68a10e8e54c4",
              "venue_id": "venue_omca",
              "title": "First Sundays",
              "event_time": "2026-09-06",
              "venue_name": "OMCA",
              "event_start": "2026-09-06",
              "event_date": "2026-09-06",
              "venue_address": "1000 Oak St, Oakland, CA 94607",
              "description": "Every first Sunday of the month, General Admission to OMCA's Galleries of California Art, History, and Natural Sciences is free and tickets to Special Exhibitions are half-price.",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_omca",
                  "source_name": "OMCA",
                  "fetched_at": "2026-08-28T16:49:24.654558Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_omca|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_045a1585a8d4",
              "venue_id": "venue_the_back_room",
              "title": "Sudamericanto",
              "event_time": "Sun, Sep 6, 3pm - 5pm PDT",
              "venue_name": "Back Room",
              "event_start": "2026-09-06T15:00:00",
              "event_date": "2026-09-06",
              "venue_address": "1984 Bonita Ave,Berkeley,CA 94704",
              "description": "The Back Room, Berkeley CA, United States",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://events.humanitix.com/sudamericanto?hxchl=hex-col",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_back_room",
                  "source_name": "Back Room",
                  "fetched_at": "2026-08-28T18:22:02.750823Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_back_room|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_04f31712e3dc",
              "venue_id": "venue_the_back_room",
              "title": "Sam's Corner",
              "event_time": "Sun, Sep 6, 7pm - 9pm PDT",
              "venue_name": "Back Room",
              "event_start": "2026-09-06T19:00:00",
              "event_date": "2026-09-06",
              "venue_address": "1984 Bonita Ave,Berkeley,CA 94704",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://events.humanitix.com/sam-s-corner-boogie-blues-and-jazz?hxchl=hex-col",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_back_room",
                  "source_name": "Back Room",
                  "fetched_at": "2026-08-28T18:22:02.750823Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_back_room|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b72b88e47757",
              "venue_id": "venue_the_lost_church",
              "title": "Aleta Simone & Friends",
              "event_time": "2026-09-06T19:30:00",
              "venue_name": "The Lost Church",
              "event_start": "2026-09-06T19:30:00",
              "event_date": "2026-09-06",
              "venue_address": "988 Columbus Ave, San Francisco, CA 94133",
              "description": "An intimate songwriters-in-the-round performance featuring singer-songwriter Aleta Simone alongside a lineup of collaborating musical guests.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://thelostchurch.my.salesforce-sites.com/ticket#/instances/a0FUh00000B4q1jMAB",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lost_church",
                  "source_name": "The Lost Church",
                  "fetched_at": "2026-08-28T20:03:22.982745Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_lost_church|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0ee200fd9c34",
              "venue_id": "venue_castro_theater",
              "title": "MY OWN PRIVATE IDAHO",
              "event_time": "September 6, 2026 7:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-06T19:00:00",
              "event_date": "2026-09-06",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "35th Anniversary in 35mm",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://thecastro.com/events/my-own-private-idaho-260906",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-08-28T20:48:00.221268Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-09-04T10:18:32.697885Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e035733b396a",
              "venue_id": "venue_exploratorium",
              "title": "Daytime Members-Only Hours",
              "event_time": "2026-09-06",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-06",
              "event_date": "2026-09-06",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Please consider joining us today ! Members are the backbone of our organization and help ensure the continuity of our mission to create inquiry-based experiences that transform learning worldwide. We can’t wait to see you at the museum.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/member-hours",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-06",
              "run_id": "run_e38dfc952011",
              "run_label": "Daytime Members-Only Hours, Aug 30 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c7f8e803fd7a",
              "venue_id": "venue_exploratorium",
              "title": "Members-Only Film Fest: Wall•E",
              "event_time": "Sun, Sep 6 2026 • 11:30am - 1:30pm",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-06T11:30:00",
              "event_date": "2026-09-06",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Wall•E (2008, G, 98 minutes)",
              "event_types": [
                "film",
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/members-only-film-fest-walle",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2248891fd12c",
              "venue_id": "venue_bix",
              "title": "Solo Piano",
              "event_time": "2026-09-06T18:30:00",
              "venue_name": "Bix",
              "event_start": "2026-09-06T18:30:00",
              "event_date": "2026-09-06",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Solo Piano",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Never a cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-08-28T21:10:29.119399Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bix|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_55cde03ff701",
              "venue_id": "venue_neck_of_the_woods",
              "title": "Polkadot",
              "event_time": "Sun, Sep 6 Show: 8:00 pm",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-09-06T20:00:00",
              "event_date": "2026-09-06",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$14.60",
              "url": "https://www.neckofthewoodssf.com/tm-event/myveronica-tba/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_neck_of_the_woods",
                  "source_name": "Neck of the Woods",
                  "fetched_at": "2026-08-28T21:30:17.641164Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3b0c84239e29",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-09-06",
              "venue_name": "De Young",
              "event_start": "2026-09-06",
              "event_date": "2026-09-06",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-06",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_97cd7b72a66b",
              "venue_id": "venue_punch_line",
              "title": "S. F. COMEDY SHOWCASE",
              "event_time": "Sep 6, 2026 7:30 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-06T19:30:00",
              "event_date": "2026-09-06",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "This long-running weekly showcase at the Punch Line features a dynamic lineup of the San Francisco Bay Area's best up-and-coming and established stand-up comedians.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/s-f-comedy-showcase-san-francisco-california-09-06-2026/event/1C0064AAA9A3B3C8",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fa688541cab7",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "RON TAYLOR",
              "event_time": "Sun Sep 6, 2026 7:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-09-06T19:00:00",
              "event_date": "2026-09-06",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Stand-up comedian and writer Ron Taylor takes the stage at Cobb's Comedy Club for an evening of live comedy.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/ron-taylor-san-francisco-california-09-06-2026/event/1C0064BA186DB65E",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_94c8b48ae3d5",
              "venue_id": "venue_san_jose_improv",
              "title": "Rachid Badouri",
              "event_time": "Sep 6 6:00pm",
              "venue_name": "San Jose Improv",
              "event_start": "2026-09-06T18:00:00",
              "event_date": "2026-09-06",
              "venue_address": "62 S 2nd St, San Jose, CA 95113",
              "description": "Acclaimed international stand-up comedian Rachid Badouri entertains audiences with his signature physical humor and high-energy delivery. He shares hilarious, fast-paced stories drawing from his life and multicultural experiences.",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY NOW",
              "url": "https://improv.com/sanjose/comic/rachid+badouri/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_improv",
                  "source_name": "San Jose Improv",
                  "fetched_at": "2026-08-29T01:07:49.368865Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_improv|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_888b87649f55",
              "venue_id": "venue_shapeshifters",
              "title": "Removal of the Eye",
              "event_time": "Sunday, September 6, 2026 2pm",
              "venue_name": "Shapeshifters",
              "event_start": "2026-09-06T14:00:00",
              "event_date": "2026-09-06",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "Kallia and Ram are at their wits' end with their sleepless baby when they realize Kallia’s Greek mother is on a secret mission to exorcise the family from the evil eye. Trapped between the pressures of new age parenting, old world superstitions, and meddling in-laws, they fight to hold onto their dreams. Filmmakers Shaw and Kamalakanthan turn the lens on themselves and their loved ones—including their actual baby and parents—in this fearless, intimate comedy.",
              "event_types": [
                "film"
              ],
              "price_info": "$15",
              "url": "https://buytickets.at/shapeshifterscinema/2345709",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shapeshifters",
                  "source_name": "Shapeshifters",
                  "fetched_at": "2026-08-30T10:04:33.112973Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f9b53c0b27b1",
              "venue_id": "venue_pier_23",
              "title": "Sunday Blues Jam",
              "event_time": "September 6 @ 4:00 pm - 7:00 pm",
              "venue_name": "Pier 23",
              "event_start": "2026-09-06T16:00:00",
              "event_date": "2026-09-06",
              "venue_address": "23 The Embarcadero,San Francisco, CA 94111",
              "description": "Join us for a raucous afternoon filled with jammin’ blues sounds brought to you by the inimitable blues drummer Sean Donoghue .  Professional musicians & budding artists are welcome to jump in to the musical fray. We are supporting local talent on all levels. Grab a drink, a bite and be ready to dance. Bring your friends, we can’t wait to see you.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/sunday-blues-jam-at-pier-23-cafe-2/2026-09-06/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-08-30T10:45:22.632159Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_pier_23",
                  "source_name": "Pier 23",
                  "fetched_at": "2026-08-31T15:57:39.793972Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pier_23|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_75aa6a17ad9c",
              "venue_id": "venue_spruce_stree_concerts",
              "title": "Theresa Wong & William Winant",
              "event_time": "9/06/2026 5:00 PM",
              "venue_name": "Spruce Street Concerts",
              "event_start": "2026-09-06T17:00:00",
              "event_date": "2026-09-06",
              "venue_address": "Berkeley, CA",
              "description": "Theresa Wong (cello and voice) and William Winant (percussion) come together for a performance of free improvisation in the intimate setting of a home in the Berkeley Hills. Both are masterful performers and improvisors. Theresa Wong is a composer, multi-instrumentalist, and intermedia artist active at the intersection of composition, improvisation and the synergy of multiple disciplines. William Winant, one of the great living percussionists, has collaborated with many of the most innovative and creative musicians of our time, from John Cage and Roscoe Mitchell to Frank Zappa and Sonic Youth. This coming together of Theresa Wong and William Winant, the first time these artists perform together as a duo, promises to make for an eventful evening of music.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23337",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-31T10:04:42.136151Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_spruce_stree_concerts|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_4dae768e7b3c",
              "venue_id": "venue_yoshis",
              "title": "SONS OF CHAMPLIN W/ BILL CHAMPLIN",
              "event_time": "September 6, 2026 - 7:00PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-06T19:00:00",
              "event_date": "2026-09-06",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "A BLEND OF ROCK, JAZZ, SOUL, AND R&B",
              "event_types": [
                "live_music",
                "rock",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "$45 - $84",
              "url": "https://yoshis.com/events/buy-tickets/sons-of-champlin-w-bill-champlin-1/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_55653488c1e9",
              "venue_id": "venue_mr_tipples",
              "title": "Mose Def : The Music of Mose Allison",
              "event_time": "2026-09-06 6:00 pm",
              "venue_name": "Mr. Tipples",
              "event_start": "2026-09-06T18:00:00",
              "event_date": "2026-09-06",
              "venue_address": "39 Fell St, San Francisco, CA 94102",
              "description": "Kymry Esainko | Piano Joe Kyle | Bass Randy Odell | Drums Tom Griesser | Sax Dean Mermell | Vocals Mose Def : The Music of Mose Allison Mose Def was born when Flower Piano co-creator Dean Mermell wanted someone to play a Mose Allison tribute at the event, but then decided he wanted to do […]",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$15 – $20",
              "url": "https://mrtipplessf.com/calendar/mose-def-the-music-of-mose-allison/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mr_tipples",
                  "source_name": "Mr. Tipples",
                  "fetched_at": "2026-08-31T11:27:00.052384Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mr_tipples|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_dc6a11e943a9",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "Blacklight Hotel",
              "event_time": "Sun Sep 6 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-06T19:00:00",
              "event_date": "2026-09-06",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "Alternative Metal Night",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "21+, $10.00",
              "url": "https://wl.seetickets.us/event/blacklight-hotel-peacock-picasso-squid-saves-the-planet/699555?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-08-31T12:12:52.447528Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_66d487f8a12c",
              "venue_id": "venue_winters",
              "title": "STEAL YOUR LABOR DAY MUSIC FESTIVAL",
              "event_time": "2026-09-06T13:00:00",
              "venue_name": "Winters",
              "event_start": "2026-09-06T13:00:00",
              "event_date": "2026-09-06",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "",
              "event_types": [
                "festival",
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-08-31T12:39:12.063314Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_winters|2026-09-06",
              "run_id": "run_deb52fa4f370",
              "run_label": "STEAL YOUR LABOR DAY MUSIC FESTIVAL, Sep 5 – Sep 6",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_da7be7ea681c",
              "venue_id": "venue_piedmont_center",
              "title": "For the Love of Art Exhibition",
              "event_time": "2026-09-06T11:00:00",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-09-06T11:00:00",
              "event_date": "2026-09-06",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "Exhibition featuring various artists. Weekends 8/9 - 9/20 (except 8/22 & 8/30).",
              "event_types": [
                "art"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-08-31T13:20:32.956554Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-09-06",
              "run_id": "run_17625c4204a3",
              "run_label": "For the Love of Art Exhibition, Aug 8 – Sep 20",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0eefc8429348",
              "venue_id": "venue_piedmont_center",
              "title": "SonoMusette: Paris in Piedmont",
              "event_time": "2026-09-06T16:00:00",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-09-06T16:00:00",
              "event_date": "2026-09-06",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "The San Francisco Bay Area's Ambassadors of French Chanson recapture the moody and evocative sound of the Paris music scene of the mid-20th Century.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$25 advance tickets",
              "url": "https://ticketsignup.io/Pimard",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-08-31T13:20:32.956554Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ea60d59f5aa5",
              "venue_id": "venue_ggp_music_concourse",
              "title": "An All-American Program",
              "event_time": "2026-09-06T13:00:00",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-09-06T13:00:00",
              "event_date": "2026-09-06",
              "venue_address": "San Francisco, CA 94118",
              "description": "A red-white-and-blue concert celebrating the bold spirit of American music performed by the historic Golden Gate Park Band.",
              "event_types": [
                "classical",
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://sfrecpark.org/calendar.aspx?EID=17155",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-08-31T13:28:15.005369Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_5c814eb65cff",
              "venue_id": "venue_yerba_buena_center",
              "title": "GaHee Park: Behind the Curtain",
              "event_time": "2026-09-06",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-06",
              "event_date": "2026-09-06",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Park invites us to peek behind the curtain, as she lays claim to her own power as a surrealist painter working across fantasy and intimacy.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/gahee-park-behind-the-curtain/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-06",
              "run_id": "run_5353f80886f6",
              "run_label": "GaHee Park: Behind the Curtain, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_59d5e6232075",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dream",
              "event_time": "2026-09-06",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-06",
              "event_date": "2026-09-06",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public art installation commissioned by YBCA and co-sponsored by San Francisco Public Works.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dream-public-art/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-06",
              "run_id": "run_b6a5ba4e8809",
              "run_label": "Dream, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c4efd1af909d",
              "venue_id": "venue_yerba_buena_center",
              "title": "SoMa Mahal Kita",
              "event_time": "2026-09-06",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-06",
              "event_date": "2026-09-06",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A message of love for the SoMa neighborhood and community, inspired by weaving practices in the Phillipines and the colors of the Filipino flag.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/soma-mahal-kita-soma-i-love-you-ciriaco-sayoc/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-06",
              "run_id": "run_0c5141fff335",
              "run_label": "SoMa Mahal Kita, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7f32751edd9d",
              "venue_id": "venue_yerba_buena_center",
              "title": "We Rooted in Flight",
              "event_time": "2026-09-06",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-06",
              "event_date": "2026-09-06",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public artwork inviting passerbyers to join in the journey of collective flight",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/we-fly-for-a-liberated-we-we-rooted-in-flight/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-06",
              "run_id": "run_1d34139aedcf",
              "run_label": "We Rooted in Flight, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1b9f5210a24f",
              "venue_id": "venue_grace_cathedral_organ",
              "title": "Organ Recital: Raymond Hawkins",
              "event_time": "2026-09-06T03:00:00",
              "venue_name": "Grace Cathedral Organ",
              "event_start": "2026-09-06T03:00:00",
              "event_date": "2026-09-06",
              "venue_address": "1100 California St, San Francisco, CA 94108",
              "description": "Organ recital performance",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Not specified",
              "url": "https://gracecathedral.org/series/organ-recital-series/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_grace_cathedral_organ",
                  "source_name": "Grace Cathedral Organ",
                  "fetched_at": "2026-08-31T15:22:13.508004Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_grace_cathedral_organ|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9784ab788b70",
              "venue_id": "venue_biscuits__blues",
              "title": "Big Daddy Cade's Tribute to B.B. King",
              "event_time": "2026-09-06 September 5, 2026",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-09-06",
              "event_date": "2026-09-06",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-08-31T16:25:33.031111Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-09-06",
              "run_id": "run_c1c5cf35f46d",
              "run_label": "Big Daddy Cade's Tribute to B.B. King, Sep 4 – Sep 6",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_9d801b8753a0",
              "venue_id": "venue_elis_mile_high",
              "title": "The Architect / Soulestial",
              "event_time": "Sun, Sep 06, 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-09-06",
              "event_date": "2026-09-06",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "Experience an evening of live music at Eli's Mile High Club featuring performances by The Architect and Soulestial. The bill brings together dynamic sets in Oakland's legendary music venue.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.elismilehighclub.com/events/the-architect-soulestial",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-08-31T16:36:06.503526Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e5e074196b42",
              "venue_id": "venue_stay_gold_deli",
              "title": "Fatale / Product Of Society / Wink",
              "event_time": "2026-09-06T18:00:00",
              "venue_name": "Stay Gold Deli",
              "event_start": "2026-09-06T18:00:00",
              "event_date": "2026-09-06",
              "venue_address": "2635 San Pablo Ave, Oakland, CA 94612",
              "description": "Hardcore and punk show featuring Fatale, Product Of Society (P.O.S.), Forest Ave, Wink, and Hillbomb. All ages.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10",
              "url": "http://www.foopee.com/punk/the-list/by-club/Stay_Gold_Deli.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stay_gold_deli",
                  "source_name": "Stay Gold Deli",
                  "fetched_at": "2026-08-31T16:43:30.435878Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_stay_gold_deli|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_911eb6670ee0",
              "venue_id": "venue_great_star_theater",
              "title": "Silk's Sword: Charity Guzheng Concert",
              "event_time": "September 6, 2026",
              "venue_name": "Great Star Theater",
              "event_start": "2026-09-06",
              "event_date": "2026-09-06",
              "venue_address": "636 Jackson Street, San Francisco, CA 94133",
              "description": "AirOtic Soirée is a one-of-a-kind event that combines a circus show with the excitement of a cabaret, all performed by stunning aerial acrobats. Don't miss out on what is guaranteed to be a night to remember!",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "Tickets and More Info Here",
              "url": "https://www.tickettailor.com/events/greatstartheater/2228723",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_great_star_theater",
                  "source_name": "Great Star Theater",
                  "fetched_at": "2026-08-31T18:08:20.593452Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_star_theater|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1b0edd8e5c8d",
              "venue_id": "venue_first_lutheran_pa",
              "title": "10am Worship",
              "event_time": "2026-09-06T10:00:00",
              "venue_name": "First Lutheran PA",
              "event_start": "2026-09-06T10:00:00",
              "event_date": "2026-09-06",
              "venue_address": "600 Homer Ave, Palo Alto, CA 94301",
              "description": "Sunday worship service. Theme: Salvation Is Nearer. After worship: reception and fellowship.",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "https://www.flcpa.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_first_lutheran_pa",
                  "source_name": "First Lutheran PA",
                  "fetched_at": "2026-08-31T18:13:13.604079Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_first_lutheran_pa|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_04f1682f9f1f",
              "venue_id": "venue_the_knockout",
              "title": "Matinee Show: Half Calf & Manta",
              "event_time": "Sun 6 Sep ― 5:00pm",
              "venue_name": "The Knockout",
              "event_start": "2026-09-06T17:00:00",
              "event_date": "2026-09-06",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "REGGAE SUNDAY : SOUND DIMENSION REGGAE DANCE PARTY! DJ GUILLERMO AND FRIENDS HIT THE DECKS WITH HOURS OF ROOTS, DUB, SKA, DANCEHALL, AND MORE OF YOUR REGGAE FAVORITES! ALL VINYL SELECTIONS! • 9PM TO CLOSE • NO COVER • 21+",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$11.33",
              "url": "https://link.dice.fm/rc4ce2a5085b?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-09-02T10:33:16.877437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_af38d6e3c66d",
              "venue_id": "venue_the_knockout",
              "title": "Reggae Sunday: Sound Dimension",
              "event_time": "Sun 6 Sep ― 9:00pm",
              "venue_name": "The Knockout",
              "event_start": "2026-09-06T21:00:00",
              "event_date": "2026-09-06",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "REGGAE SUNDAY : SOUND DIMENSION REGGAE DANCE PARTY! DJ GUILLERMO AND FRIENDS HIT THE DECKS WITH HOURS OF ROOTS, DUB, SKA, DANCEHALL, AND MORE OF YOUR REGGAE FAVORITES! ALL VINYL SELECTIONS! • 9PM TO CLOSE • NO COVER • 21+",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/k28a51ca2432?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-09-02T10:33:16.877437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fefebd28f141",
              "venue_id": "venue_choquets",
              "title": "Dewayne Oakley and Ralph Nelson",
              "event_time": "September 6 @ 12:00 pm - 4:00 pm",
              "venue_name": "Choquet's",
              "event_start": "2026-09-06T12:00:00",
              "event_date": "2026-09-06",
              "venue_address": "2500 Washington St, San Francisco, CA 94115",
              "description": "Transport yourself to the Rive Gauche without leaving Fillmore Street. Chouquet's invites you to experience \"Jazz on the Patio,\" a long-standing neighborhood tradition that pairs world-class live music with the breezy elegance of a classic French bistro. Set against the backdrop of one of San Francisco’s most iconic shopping corridors, this event offers a high-fidelity...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/dewayne-oakley-and-ralph-nelson/2026-09-06/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:44.081024Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_choquets|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_88bb2e0e1e1a",
              "venue_id": "venue_red_window",
              "title": "Magic School Busk",
              "event_time": "September 6 @ 1:00 pm - 9:00 pm",
              "venue_name": "Red Window",
              "event_start": "2026-09-06T13:00:00",
              "event_date": "2026-09-06",
              "venue_address": "500 Columbus Ave, San Francisco, CA 94133",
              "description": "Experience the ultimate \"living theater\" of North Beach as The Magic School Busk takes up their weekly residency directly in front of The Red Window. Positioned at the vibrant, sun-soaked...",
              "event_types": [
                "theater"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/magic-school-busk-6/2026-09-06/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:44.081024Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_red_window|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_b26afcf9716e",
              "venue_id": "venue_otherwise_brewing",
              "title": "Matt Bae Jazz Trio",
              "event_time": "September 6 @ 3:00 pm - 5:00 pm",
              "venue_name": "Otherwise Brewing",
              "event_start": "2026-09-06T15:00:00",
              "event_date": "2026-09-06",
              "venue_address": "1402 Grant Ave,San Francisco, CA 94133",
              "description": "Matthew Bae is a San Francisco-based jazz pianist appearing at Otherwise Brewing. He grew up studying classical piano and viola, later expanding into chamber music, orchestra, and other ensemble settings...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/matt-bae-jazz-trio-june-7-2026/2026-09-06/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:44.081024Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_otherwise_brewing|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_c802c00c2a2f",
              "venue_id": "venue_the_lucky_horseshoe",
              "title": "Bluegrass Jam",
              "event_time": "September 6 @ 4:00 pm - 7:00 pm",
              "venue_name": "The Lucky Horseshoe",
              "event_start": "2026-09-06T16:00:00",
              "event_date": "2026-09-06",
              "venue_address": "453 Cortland Ave, San Francisco, CA 94110",
              "description": "The Lucky Horseshoe hosts its long-standing Bluegrass Jam every Sunday afternoon. Unlike a typical circle jam, this is a unique performance jam where musicians take to the stage to play into microphones for a live crowd. It’s an intermediate-to-advanced level session that brings together the best of the Bay Area’s roots and bluegrass community, turning...",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/bluegrass-jam/2026-09-06/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:44.081024Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_lucky_horseshoe|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_42df485fc834",
              "venue_id": "venue_the_saloon",
              "title": "Blues Power",
              "event_time": "September 6 @ 4:00 pm - 8:00 pm",
              "venue_name": "The Saloon",
              "event_start": "2026-09-06T16:00:00",
              "event_date": "2026-09-06",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "Catch Blues Power at the Sunday afternoon residency at the Saloon. Blues Power is a San Francisco blues project led by Mark Naftalin, known as a legendary pianist, producer, and...",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/blues-power-5/2026-09-06/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:44.081024Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_saloon|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_c56ab7519c03",
              "venue_id": "venue_club_deluxe",
              "title": "Night School",
              "event_time": "September 6 @ 6:30 pm - 9:30 pm",
              "venue_name": "The DeLuxe",
              "event_start": "2026-09-06T18:30:00",
              "event_date": "2026-09-06",
              "venue_address": "1511 Haight St, San Francisco, CA 94117",
              "description": "The Deluxe welcomes Night School with Torré Aledia on guitar — an all‑improv session led by the Filipino‑American bassist, producer, and composer who has become a key voice in the Bay Area’s neo‑soul, R&B, and jazz‑fusion scene. Known for hosting the bi‑weekly R&B jam “The Scene” and his free‑flowing “Night School” sessions, Torré brings the...",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "$5",
              "url": "https://offbeatsf.com/event/night-school/2026-09-06/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:44.081024Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_deluxe|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_c723d139e050",
              "venue_id": "venue_amelie",
              "title": "Alberto",
              "event_time": "September 6 @ 7:00 pm - 11:00 pm",
              "venue_name": "Amélie",
              "event_start": "2026-09-06T19:00:00",
              "event_date": "2026-09-06",
              "venue_address": "1754 Polk St, San Francisco, CA 94109",
              "description": "Alberto Gutierrez is a Spanish guitarist and vocalist appearing at Amélie in Polk Gulch. He is one half of the duo Dos Bandoleros. His sets draw on the blend of...",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/locura-latin-jazz-live-music-4-5/2026-09-06/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:44.081024Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_amelie|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_350b627e4e2f",
              "venue_id": "venue_sheba_jazz_lounge",
              "title": "Bohemian Knuckleboogie",
              "event_time": "September 6 @ 7:30 pm - 10:30 pm",
              "venue_name": "Sheba Jazz Lounge",
              "event_start": "2026-09-06T19:30:00",
              "event_date": "2026-09-06",
              "venue_address": "1419 Fillmore St, San Francisco, CA 94115",
              "description": "Bohemian Knuckleboogie is a unique San Francisco an eclectic and high-octane mix of Blues, Funk, and Neo-soul playing weekly Sundays at Sheba Piano Lounge. Featuring Elaine Alt on Saxophone, Miles Spearman on Trumpet, Rob Bassinette on Bass, and Gary Williams on Drums. Bohemian Knuckleboogie carries on the torch for former band lead RIP Mike Pitre’s...",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/12357/2026-09-06/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:44.081024Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sheba_jazz_lounge|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_e9995ccfa862",
              "venue_id": "venue_lions_den",
              "title": "Rotating Bands at the Lion’s Den",
              "event_time": "September 6 @ 8:00 pm - 11:00 pm",
              "venue_name": "Lion's Den",
              "event_start": "2026-09-06T20:00:00",
              "event_date": "2026-09-06",
              "venue_address": "57 Wentworth Pl, San Francisco, CA 94108",
              "description": "Experience the resurgence of San Francisco’s historic Chinatown nightlife at the Lion’s Den.  Tucked away on Wentworth Place, this bi-level lounge and performance space blends modern cocktail culture with the East meets West spirit of the Chinatown’s golden age. Every week, the venue transforms into a unique destination for live music, featuring a rotating roster...",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/live-music-at-the-lions-den-2-2/2026-09-06/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:44.081024Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_lions_den|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_4a951ab4ddbe",
              "venue_id": "venue_the_saloon",
              "title": "Jake Sampson",
              "event_time": "September 6 @ 9:30 pm - 1:30 am",
              "venue_name": "The Saloon",
              "event_start": "2026-09-06T21:30:00",
              "event_date": "2026-09-06",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "Jake Sampson is a blues singer, songwriter, and bassist based in the San Francisco Bay Area who appears at The Saloon. Originally from Detroit and influenced by Motown bassist James...",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/jake-sampson-5/2026-09-06/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:44.081024Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_saloon|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_7267cb1451fe",
              "venue_id": "venue_924_gilman",
              "title": "Blue Birthday Bash",
              "event_time": "Sunday, September 6, 2026 6:00pm-10:00pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-09-06T18:00:00",
              "event_date": "2026-09-06",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "A celebratory birthday concert event featuring live music performances at 924 Gilman.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$",
              "url": "http://maps.google.com/?q=$",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-09-02T11:13:59.237531Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cfcaf6b527ff",
              "venue_id": "venue_the_midway",
              "title": "UNREAL AT PALACE OF FINE ARTS",
              "event_time": "09/06/2026 12:00 AM",
              "venue_name": "The Midway",
              "event_start": "2026-09-06T00:00:00",
              "event_date": "2026-09-06",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "THE PALACE OF FINE ARTS ∙ INDOORS",
              "event_types": [
                "dj_party"
              ],
              "price_info": "TICKETS",
              "url": "https://wl.seetickets.us/event/unreal-at-palace-of-fine-arts/691440?afflky=NonPlusUltra&utm_source=themidway&utm_medium=venuewebsite",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-09-02T11:30:22.920988Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a3afb072a737",
              "venue_id": "venue_the_midway",
              "title": "R&B and Ribs Block Party",
              "event_time": "09/06/2026 2:00 PM",
              "venue_name": "The Midway",
              "event_start": "2026-09-06T14:00:00",
              "event_date": "2026-09-06",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "INDOORS & OUTDOORS",
              "event_types": [
                "dj_party",
                "festival"
              ],
              "price_info": "TICKETS",
              "url": "https://www.tixr.com/groups/midwaysf/events/r-b-and-ribs-block-party-with-lloyd-keri-hilson-soulja-boy-197276",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-09-02T11:30:22.920988Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bfb3d2d8c90f",
              "venue_id": "venue_the_midway",
              "title": "Alan Walker, Ian Asher & Lavern",
              "event_time": "09/06/2026 3:00 PM",
              "venue_name": "The Midway",
              "event_start": "2026-09-06T15:00:00",
              "event_date": "2026-09-06",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "DISCOVERY MEADOW SAN JOSE ∙ OUTDOORS",
              "event_types": [
                "dj_party"
              ],
              "price_info": "TICKETS",
              "url": "https://www.tixr.com/groups/npulive/events/alan-walker-ian-asher-lavern-more-at-discovery-meadow-193280",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-09-02T11:30:22.920988Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b8ecd0b7c344",
              "venue_id": "venue_cow_palace",
              "title": "Cardshow Con – The World of Sports Show",
              "event_time": "2026-09-06T10:00:00",
              "venue_name": "Cow Palace",
              "event_start": "2026-09-06T10:00:00",
              "event_date": "2026-09-06",
              "venue_address": "2600 Geneva Ave, Daly City, CA 94014",
              "description": "CARD SHOW CON at the Cow Palace brings together collectors and vendors for buying, selling, and trading sports cards, TCGs, and pop culture memorabilia. Attendees can browse hundreds of dealer tables, connect with fellow enthusiasts, and meet featured autograph guests.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cow_palace",
                  "source_name": "Cow Palace",
                  "fetched_at": "2026-09-02T11:32:56.966259Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cow_palace|2026-09-06",
              "run_id": "run_c7e29f604a56",
              "run_label": "Cardshow Con – The World of Sports Show, Sep 5 – Sep 6",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_443cc21ba292",
              "venue_id": "venue_discretion_brewing",
              "title": "The Back Porch Boys",
              "event_time": "2026-09-06",
              "venue_name": "Discretion Brewing",
              "event_start": "2026-09-06T17:30:00",
              "event_date": "2026-09-06",
              "venue_address": "2703 41st Ave Ste A, Soquel, CA 95073",
              "description": "Live Music 3-5pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_discretion_brewing",
                  "source_name": "Discretion Brewing",
                  "fetched_at": "2026-09-02T11:35:03.120781Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_discretion_brewing|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_76c887e31eb1",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy",
              "event_time": "2026-09-06T19:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-09-06T19:45:00",
              "event_date": "2026-09-06",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "Stand-up comedy show at Shelton Theater. Listing says each show features five to six hand-picked, experienced comedians and an occasional guest drop-in.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$25.00",
              "url": "https://tickets.cttcomedy.com/events/2554/cheaper-than-therapy-stand-up-comedy-sunday-funday-sep-6/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-09-02T11:40:03.690341Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_f16979e2ec80",
              "venue_id": "venue_madrone_art_bar",
              "title": "APOCALYPSE SUNDAY",
              "event_time": "September 6 @ 9:00 pm - 2:00 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-06T21:00:00",
              "event_date": "2026-09-06",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "So what exactly is APOCALYPSE SUNDAY? Consider it a sort-of variety show for people with very few options left. Primarily a musical revue, APOCALYPSE SUNDAY features the music of Bay Area horrorbilly faves The Pine Box Boys, singers of songs of murder and misery. The Boys will also appear as their alter-ego band Lester T. [&hellip;]",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "FREE",
              "url": "https://madroneartbar.com/event/apocalypse-sunday-14-2025-12-07-2026-07-05-2026-09-06/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_35ef4978b653",
              "venue_id": "venue_moes_alley",
              "title": "Tommy Castro & The Painkillers",
              "event_time": "2026-09-06T16:00:00",
              "venue_name": "Moe's Alley",
              "event_start": "2026-09-06T16:00:00",
              "event_date": "2026-09-06",
              "venue_address": "1535 Commercial Way, Santa Cruz, CA 95065",
              "description": "Show: 4:00 PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_moes_alley",
                  "source_name": "Moe's Alley",
                  "fetched_at": "2026-09-03T10:23:10.512238Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_moes_alley|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_be784b17c1ce",
              "venue_id": "venue_black_cat",
              "title": "Max Haymer Power Trio",
              "event_time": "2026-09-06T19:00:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-06T19:00:00",
              "event_date": "2026-09-06",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30, $40 , $50 , $60 \n\n(price includes $5.50 processing and ticketing fee)\n\n \n\n7:00 show: Doors @ 6:00\n\n9:30 show: Bar @ 6:00, Doors @ 8:45\n\n\n\n\nHigh-impact “athletic jazz” driven by power, precision, Afro-Cuban fire, and serious piano virtuosity.\n\n\n\n\nGrammy-nominated pianist Max Haymer makes his Black Cat debut with a trio built for drama, momentum, and explosive live interplay. Known for his decade as pianist and musical director for 10-time Grammy winner Arturo Sandoval, Haymer also collaborates with acclaimed vocalist Jane Monheit.\n\n\n\n\nHis sets move from striking original compositions to reimagined Broadway and jazz standards, all charged with rhythmic intensity, emotional weight, and flashes of Afro-Cuban heat. A recent South Arts Jazz Road Award recipient, Haymer brings a muscular, cinematic sound that lands hard in the room. \n\n\n\n\nBand Lineup:\n\nMax Haymer, piano\n\nNick Campbell, bass\n\nRick Montalbano, drums",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $30, $40 , $50 , $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/12431/2026-09-06",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4acfdfac0043",
              "venue_id": "venue_black_cat",
              "title": "Max Haymer Power Trio",
              "event_time": "2026-09-06T21:15:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-06T21:15:00",
              "event_date": "2026-09-06",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30, $40 , $50 , $60 \n\n(price includes $5.50 processing and ticketing fee)\n\n \n\n7:00 show: Doors @ 6:00\n\n9:30 show: Bar @ 6:00, Doors @ 8:45\n\n\n\n\nHigh-impact “athletic jazz” driven by power, precision, Afro-Cuban fire, and serious piano virtuosity.\n\n\n\n\nGrammy-nominated pianist Max Haymer makes his Black Cat debut with a trio built for drama, momentum, and explosive live interplay. Known for his decade as pianist and musical director for 10-time Grammy winner Arturo Sandoval, Haymer also collaborates with acclaimed vocalist Jane Monheit.\n\n\n\n\nHis sets move from striking original compositions to reimagined Broadway and jazz standards, all charged with rhythmic intensity, emotional weight, and flashes of Afro-Cuban heat. A recent South Arts Jazz Road Award recipient, Haymer brings a muscular, cinematic sound that lands hard in the room. \n\n\n\n\nBand Lineup:\n\nMax Haymer, piano\n\nNick Campbell, bass\n\nRick Montalbano, drums",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $30, $40 , $50 , $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/12431/2026-09-06",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4ba6ef98e348",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "The Brad Leali Jazz Quartet ft. Carla Helmbrecht",
              "event_time": "Sunday, September 6, 2026 @ 5pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-06T17:00:00",
              "event_date": "2026-09-06",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Sunday, September 6, 2026 @ 5pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/the-brad-leali-jazz-quartet-ft-carla-helmbrecht-6/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6570ff7f33df",
              "venue_id": "venue_z_space",
              "title": "San Francisco Hysterical Historium",
              "event_time": "2026-09-06T19:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-09-06T19:00:00",
              "event_date": "2026-09-06",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "Killing My Lobster & Z Space present: San Francisco Hysterical Historium, a Co-Production with Red Barn Productions. Sketch comedy that ain't fool's gold!",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-09-03T10:55:35.787344Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_z_space|2026-09-06",
              "run_id": "run_6cdec2f9a529",
              "run_label": "San Francisco Hysterical Historium, Sep 4 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7102b2937467",
              "venue_id": "venue_brick_and_mortar",
              "title": "Fervence",
              "event_time": "9.6 Show: 7:30PM",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-09-06T19:30:00",
              "event_date": "2026-09-06",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Event Details Golden Hour Sound & Studios Presents Fervence, Captive State, Beauty is Betrayal , The Beauty in Death with Captive State , Beauty is Betrayal , The Beauty in Death September 6, 2026 8:00 pm PDT (Doors: 7:30 pm ) Brick and Mortar Music Hall , 1710 Mission Street , San Francisco, CA ( map ) $21.91 Buy Tickets + Google Calendar Fervence Captive State Beauty is Betrayal The Beauty in Death JUST ANNOUNCED Felukah — HibisKiss Tour October 28, 2026 Thoughts on Bowling November 27, 2026 BIIRD (Night 2) September 20, 2026 MoneyHillCasino October 11, 2026 Hayden Everett October 29, 2026 Follow us on Instagram Join the Brick & Mortar Newsletter",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$21.91",
              "url": "https://www.brickandmortarmusic.com/tm-event/fervence-captive-state-beauty-is-betrayal-the-beauty-in-death/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-09-03T11:13:51.689688Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_493688b7088d",
              "venue_id": "venue_pacific_film_archive",
              "title": "Exhibition Tour: Maren Hassinger",
              "event_time": "Sep 06, 2026 2 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-06T14:00:00",
              "event_date": "2026-09-06",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Graduate students from the Departments of African American and African Diaspora Studies and History of Art offer exhibition tours on selected Wednesdays at 12:15 PM, Sundays at 2 PM, and Free First Thursdays at 1:15 PM.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://bampfa.org/event/exhibition-tour-maren-hassinger-living-moving-growing",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ee4aad178809",
              "venue_id": "venue_pacific_film_archive",
              "title": "A Woman Is a Woman",
              "event_time": "Sep 06, 2026 4:30 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-06T16:30:00",
              "event_date": "2026-09-06",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "“A whimsical celebration of romance, sentiment, musical comedy, color film, the city of Paris and the abundant charms of Anna Karina” (New York Times).",
              "event_types": [
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/woman-woman",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_dd00b35532f7",
              "venue_id": "venue_pacific_film_archive",
              "title": "Alice Doesn’t Live Here Anymore",
              "event_time": "Sep 06, 2026 7 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-06T19:00:00",
              "event_date": "2026-09-06",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Martin Scorsese’s first studio film afforded him the opportunity to show his versatility and earned an Academy Award for Ellen Burstyn as a widowed mother who hits the road with her preteen son in the hope of finding work as a singer.",
              "event_types": [
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/alice-doesnt-live-here-anymore",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0fa16f476b8c",
              "venue_id": "venue_4_star_theater",
              "title": "CatVideoFest 2026",
              "event_time": "6 September 2026 10:00 AM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-06T10:00:00",
              "event_date": "2026-09-06",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Oscilloscope Laboratories presents CatVideoFest 2026, a compilation of the latest and best cat videos culled from countless hours of unique submissions and sourced animations, music videos, and classic internet powerhouses. Each year, across the country, local theaters partner with nearby cat-focused charities, animal welfare associations and shelters alike — a portion of proceeds from every show goes directly to local cats in need.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/catvideofest-sun",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4d55dc4749c7",
              "venue_id": "venue_4_star_theater",
              "title": "Closed for a Private Event",
              "event_time": "6 September 2026 12:30 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-06T12:30:00",
              "event_date": "2026-09-06",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "CLOSED FOR A PRIVATE EVENT    Curious about hosting your own private event with us? Contact and more details can be found  here .",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/private-event-september-6",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fbb4d94718fd",
              "venue_id": "venue_4_star_theater",
              "title": "Sachi Cunningham Presentation",
              "event_time": "6 September 2026 7:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-06T19:00:00",
              "event_date": "2026-09-06",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Ocean Beach Surf Film Festival presents:    Sachi Cunningham presents  Big Wave Women  (A Work in Progress Screening)   Local award-winning filmmaker Sachi Cunningham screens her highly anticipated film following the journeys of Bianca Valenti, Keala Kennelly, Paige Alms, and Andrea Moller as they p",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/obsurf-saching-cunningham",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fecedfdf76da",
              "venue_id": "venue_cat_club",
              "title": "Cat Club Summer Fest",
              "event_time": "September 6, 2026 9:00 PM",
              "venue_name": "Cat Club",
              "event_start": "2026-09-06T21:00:00",
              "event_date": "2026-09-06",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "Your 80s Video Dance Club\n——\n9pm-2am",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.sfcatclub.com/calendar/091424-se4xs-g729e-g62d5-e8tkx-2lmdm-x7bn3-4cn2w-kgbzk-mmj75-ykj7m-9wl7c-zt3ps-yhjwn-ezzw5-78xc8-gdjtr-x9cz3-jgtbs-gnx4k-wfsz8-sbazb-tlj8f",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cat_club",
                  "source_name": "Cat Club",
                  "fetched_at": "2026-09-03T13:24:58.141502Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5233bc66f1d1",
              "venue_id": "venue_1015_folsom",
              "title": "TIFFANY DAY",
              "event_time": "2026-09-06T21:00:00",
              "venue_name": "1015 Folsom",
              "event_start": "2026-09-06T21:00:00",
              "event_date": "2026-09-06",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "DJ Dials & 1015 Folsom Present: Tiffany Day - Halo Tour. One of the most compelling voices in hyper-digital pop. Ages 21+.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "BUY TICKETS | Bottle Service",
              "url": "https://wl.eventim.us/event/tiffany-day/690441?afflky=1015Folsom",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-09-03T14:16:59.158049Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3322dd2cd312",
              "venue_id": "venue_hillside_club",
              "title": "Chamber Music Sundaes",
              "event_time": "Sep 06, 2026, 3:00 PM – 5:00 PM",
              "venue_name": "Hillside Club",
              "event_start": "2026-09-06T15:00:00",
              "event_date": "2026-09-06",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "The new season of Chamber Music Sundaes begins with a performance by Trio de Karl",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://www.hillsideclub.org/event-details/bhc-concert-series-presents-chamber-music-sundaes-with-trio-de-karl",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-09-04T10:10:10.864332Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hillside_club|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_66718c6403e1",
              "venue_id": "venue_hillside_club",
              "title": "Theater Group Meeting",
              "event_time": "Sep 06, 2026, 7:00 PM – 8:30 PM",
              "venue_name": "Hillside Club",
              "event_start": "2026-09-06T19:00:00",
              "event_date": "2026-09-06",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "Join us to learn how you can participate, on stage or off, in our Winter Extravaganza in December",
              "event_types": [
                "theater",
                "community"
              ],
              "price_info": "",
              "url": "https://www.hillsideclub.org/event-details/theater-group-meeting-2026-09-06-19-00",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-09-04T10:10:10.864332Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hillside_club|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a5d5051d7112",
              "venue_id": "venue_poor_house_bistro",
              "title": "Joey Fabian Show",
              "event_time": "2026-09-06T16:00:00",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-09-06T16:00:00",
              "event_date": "2026-09-06",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-09-04T10:11:13.938872Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_535624fb15eb",
              "venue_id": "venue_sailing_goat",
              "title": "The Bob Roden Quintet",
              "event_time": "2026-09-06T17:00:00",
              "venue_name": "Sailing Goat",
              "event_start": "2026-09-06T17:00:00",
              "event_date": "2026-09-06",
              "venue_address": "1900 Stenmark Dr, Richmond, CA 94801",
              "description": "The Bob Roden Quintet Sun, Sep 06 | Sailing Goat at Point San Pablo Harbor Berkeley-based jazz group playing accessible, mainstream jazz with swing Time & Location Sep 06, 2026, 5:00 PM – 8:00 PM Sailing Goat at Point San Pablo Harbor, 1900 Stenmark Dr, Richmond, CA 94801, USA About the event The Bob Roden Quintet is a Berkeley-based jazz group playing accessible, mainstream jazz with swing, warmth, and easy rapport. Led by trombonist and vocalist Bob Roden, the band blends classic standards with unexpected selections and original arrangements. The quintet performs regularly at restaurants, festivals, and community spaces throughout the East Bay, with multiple appearances in the long-running concert series at San Francisco’s Cadillac Hotel and at the Piedmont Jazz Festival. https://www.bobrodenquintet.com/ Show More Share this event",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.sailinggoatrestaurant.com/event-details/the-bob-roden-quintet",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sailing_goat",
                  "source_name": "Sailing Goat",
                  "fetched_at": "2026-09-04T10:13:07.105977Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sailing_goat|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_c395bc3f619d",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-09-06",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-06",
              "event_date": "2026-09-06",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "Music by Marc Shaiman & Thomas Meehan. Lyrics by Mark Shaiman & Scott Wittman. A 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to change her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "On Stage Now",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-09-04T10:15:07.852694Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-06",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6de998905496",
              "venue_id": "venue_roxy",
              "title": "Sholay: The Final Cut (4K Restoration)",
              "event_time": "Sunday, September 6, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-09-06",
              "event_date": "2026-09-06",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "Restored by Film Heritage Foundation at L’Immagine Ritrovata laboratory in association with Sippy Films. Funding provided by Sippy Films. Sholay was restored using the best surviving elements: an interpositive and two-color reversal intermediates found in a warehouse in the UK and a second interpositive dating from 1978 deposited by Sippy Films and preserved by Film Heritage Foundation. The sound was restored using the original sound negative, and the magnetic soundtrack preserved by Film Heritage Foundation. The film was originally shot on 35mm and blown up to 70mm for release. No 70mm prints of the film survive. The original camera negative was severely damaged due to heavy vinegar syndrome with coil adhesion and halos, overcoat deterioration both on the base side and emulsion side, and base distortion. This restoration of the film in 4K includes the original ending as well as two deleted scenes and with the original 70mm aspect ratio of 2.2:1.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/sholay-the-final-cut-4k-restoration/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-09-04T10:24:35.292955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1a35344ce686",
              "venue_id": "venue_roxy",
              "title": "The Iron Giant",
              "event_time": "Sunday, September 6, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-09-06",
              "event_date": "2026-09-06",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "The Roxie Theater is a 501(c)(3) nonprofit organization supported in part by the City and County of San Francisco, the National Endowment for the Arts, Community Vision, the National Trust for Historic Preservation, and our dedicated donors, members, and volunteers.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/the-iron-giant/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-09-04T10:24:35.292955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3eace25c8e5a",
              "venue_id": "venue_specs",
              "title": "Joe Donohoe 'Get In The Cab' Book Party",
              "event_time": "Sunday, September 6, 2026 4:00 PM - 6:00 PM",
              "venue_name": "Specs' Twelve Adler Museum Cafe",
              "event_start": "2026-09-06T16:00:00",
              "event_date": "2026-09-06",
              "venue_address": "12 William Saroyan Pl, San Francisco, CA 94133",
              "description": "Joe Donohoe is a practicing nurse and former San Francisco taxi driver of 16 years. He’s also a winner of the 2012 Kathy Acker Award for Contributions to the Avant-Garde for his magazine Speciousspecies, and contributor to ReSearch Books. ‘Get in the Cab’ is his noir and SF folklore infused memoir about driving for Luxor Cab while working his way through city college nursing school. \n\nAdditional readers include:\n\nJames Tracy - an activist, labor historian and teacher at City College and SF State and the author of Hilbilly Nationalists\n\nJoe Clifford - a successful crime writer and the author of the seminal Junkie Love\n\nCharmayne Berry - a former investigator for the Environmental Protection Agency who likes to read in public\n\nSteven Black - a man about the Bay Area and a curator for the Bancroft Library",
              "event_types": [
                "literary",
                "community"
              ],
              "price_info": "",
              "url": "https://www.specsbarsf.com/events/joe-donohoe-get-in-the-cab-book-party",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_specs",
                  "source_name": "Specs' Twelve Adler Museum Cafe",
                  "fetched_at": "2026-09-04T10:38:49.428018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_specs|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7a0a52252273",
              "venue_id": "venue_sevys_aptos",
              "title": "Labor Day Weekend BBQ & Pool Party",
              "event_time": "September 6, Sunday 12:00 PM",
              "venue_name": "Sevy's Bar & Kitchen",
              "event_start": "2026-09-06T12:00:00",
              "event_date": "2026-09-06",
              "venue_address": "7500 Old Dominion Ct, Aptos, CA 95003",
              "description": "",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sevys_aptos",
                  "source_name": "Sevy's Bar & Kitchen",
                  "fetched_at": "2026-09-04T10:39:41.919005Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sevys_aptos|2026-09-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-09-07": {
          "date": "2026-09-07",
          "updated_at": "2026-09-04T10:37:52.797938Z",
          "events": [
            {
              "event_id": "evt_12c1018beab6",
              "venue_id": "venue_castro_theater",
              "title": "THE CHARLATANS UK",
              "event_time": "September 7, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-07T20:00:00",
              "event_date": "2026-09-07",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Recorded at two places that are totemic in The Charlatans’ history – Rockfield in Wales and their own Big Mushroom space in Middlewich, Cheshire – Burgess cites hauntology and psychogeography as two concepts that swirled in his head as the band dug into the album making. For one thing, their return to storied farm studio Rockfield for the first time in almost 30 years – since they made fifth album Tellin’ Stories – was an important step. As a band they hadn’t been there since keyboard player Rob Collins was killed, in the middle of that album’s sessions, in a car crash at the bottom of the track leading to the farm. Throughout the record you can hear The Charlatans’ awareness of the stuff that’s made them – the highs and the lows; the desire to honour their own mighty legacy, whilst not being defined by it. A career-long drive to be progressive and innovative.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/the-charlatans-260907",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-06T11:49:34.527189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-09-04T10:18:32.697885Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7834f6f4c913",
              "venue_id": "venue_mojo_lounge",
              "title": "Johnny's Lounge Open Mic",
              "event_time": "2026-09-07T20:00:00",
              "venue_name": "Mojo Lounge",
              "event_start": "2026-09-07T20:00:00",
              "event_date": "2026-09-07",
              "venue_address": "3714 Peralta Blvd, Fremont, CA 94536",
              "description": "Johnny's Lounge Open Mic (at the former Mojo Lounge). If you ever wanted to try comedy and check out the Bay Area's upcoming talent, come on out to this local watering hole in Fremont! Hosted by Alex Torres.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Free",
              "url": "https://www.meetup.com/south-bay-comedy-showcases/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mojo_lounge",
                  "source_name": "Mojo Lounge",
                  "fetched_at": "2026-06-16T11:13:49.827449Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mojo_lounge|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_26a1b1d9a6a4",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Mad Caddies",
              "event_time": "Monday September 7 2026 7:30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-07T19:30:00",
              "event_date": "2026-09-07",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Monday September 7 2026\n 7:30PM doors -- music at 8:00PM\n  •••  ALL AGES\n$27 in advance / $30 at the door\n$33.01 in advance [27 face value +6.01 service fee]\nMad Caddies \n ska punk reggae\nDiesel Boy \n  performing Cock Rock in full\n skate punk, pop punk\nStay Out \n punk rock",
              "event_types": [
                "live_music",
                "rock",
                "latin_world"
              ],
              "price_info": "$ 27 in advance / $30 at the door",
              "url": "http://www.bottomofthehill.com/20260907.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-07-05T11:13:43.716331Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-06T11:10:01.105806Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_22d3e5d27796",
              "venue_id": "venue_the_midway",
              "title": "HIERO DAY",
              "event_time": "2026/09/07 Mon: Sep 7 (2pm-8pm)",
              "venue_name": "The Midway",
              "event_start": "2026-09-07T14:00:00",
              "event_date": "2026-09-07",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "FULL VENUE",
              "event_types": [
                "hiphop_rap",
                "live_music",
                "festival"
              ],
              "price_info": "TICKETS",
              "url": "https://www.tixr.com/groups/midwaysf/events/hiero-day-189661",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-08-16T10:21:31.764492Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_317df603f389",
              "venue_id": "venue_tupelo",
              "title": "THE San Francisco Invitational Jam",
              "event_time": "Monday September 7th 9:00PM - 1:00AM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-07T21:00:00",
              "event_date": "2026-09-07",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "Hosted by Andrew Coutti and Young Blake on drums and bass,, this is the definitive Jam in San Francisco. Each week there will be a different special guest vocalist, as well as myriad other exceptional local talent popping in no doubt. Talk to either host before the gig if you're interested in performing. We take this shit seriously though, so bring your chops :)",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-17T11:00:47.077832Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-08-30T10:45:22.632159Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0728a47955ef",
              "venue_id": "venue_the_riptide",
              "title": "Open Mic by Charlie Kaupp",
              "event_time": "September 7 7:00 PM - September 8 12:00 AM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-07T19:00:00",
              "event_date": "2026-09-07",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "Best of The Bay Award Winning Charlie Kaupp's Riptide Open Mic !\n\nThe Riptide Wants to Hear Ya Sing! In person! Inside the bar!\n\n\nOpen Mic Night returns to The Riptide in person, every Monday night. Sign up in the bar starting at 7pm. Music starts at 8 and goes until 11pm.\n\n\n\nRules and format:\n\n\n\n• You get two songs or 10 minutes, whichever comes first\n• This is a music-only open mic, so no spoken word, comedy, poetry, dramatic readings, etc (unless you put it to music)\n• All genres, covers, and originals are accepted and encouraged\n• Since it's in a bar, it's a 21+ event. Sorry kids!\n• Sign-ups are first-come, first-served, but you can pick your slot\n• Come early and have a drink, stick around late and support the other performers\n• You may bring your own mic and your own instrument if you choose, or RESPECTFULLY use our house mics, guitar, or piano.",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "cover",
              "url": "https://offbeatsf.com/event/open-mic-by-charlie-kaupp/2026-09-07/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-08-30T10:45:22.632159Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c79f7390eba3",
              "venue_id": "venue_mabuhay_gardens",
              "title": "ZINGGFLOWER MONDAYS",
              "event_time": "2026-09-07 6:30 PM",
              "venue_name": "The Mab",
              "event_start": "2026-09-07T18:30:00",
              "event_date": "2026-09-07",
              "venue_address": "443 Broadway, San Francisco, CA 94133",
              "description": "GamperDrums brings an all-star band to The Mab for blues and beyond—funk, soul, jazz, and San Francisco psychedelia—continuing the fearless musical exploration inspired by Drew Zingg.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://alerttheglobe.com/custom/Chris_Gamper",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mabuhay_gardens",
                  "source_name": "The Mab",
                  "fetched_at": "2026-08-22T11:20:57.510347Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mabuhay_gardens|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a6bd57b49bea",
              "venue_id": "venue_crepe_place",
              "title": "Science on Tap",
              "event_time": "2026-09-07",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-07T20:00:00",
              "event_date": "2026-09-07",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "Come one, come all to the “science café” in Santa Cruz. This event is designed to connect the Santa Cruz community to the latest research happening just up the hill at U.C. Santa Cruz. It is not an exclusive “club meeting” for scientists and science majors - we aim to appeal to all audiences! So come join us at the Crepe Place, grab a beer, relax, and hear some interesting and cutting-edge science that’s happening near you!",
              "event_types": [
                "workshop"
              ],
              "price_info": "FREE",
              "url": "https://thecrepeplace.com/shows-list/science-on-tap-730pm-in-the-garden-free-event",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e64066109cdc",
              "venue_id": "venue_abbott_square",
              "title": "LABOR DAY WITH JOINT CHIEFS",
              "event_time": "Monday, September 7, 2026 1:00 PM - 4:00 PM",
              "venue_name": "Abbott Square Market",
              "event_start": "2026-09-07T13:00:00",
              "event_date": "2026-09-07",
              "venue_address": "725 Front St, Santa Cruz, CA 95060",
              "description": "R&B Funk & Soul\n\nIf you make it to a Joint Chiefs show it's always a Good time Dance Party !!\n\nhttp://thejointchiefsband.com/",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.abbottsquaremarket.com/events/joint-chiefs-4-w3gre",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_abbott_square",
                  "source_name": "Abbott Square Market",
                  "fetched_at": "2026-08-22T12:39:51.694804Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_abbott_square|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5190236e2981",
              "venue_id": "venue_abbott_square",
              "title": "COMEDY NIGHT",
              "event_time": "Monday, September 7, 2026 7:00 PM - 9:00 PM",
              "venue_name": "Abbott Square Market",
              "event_start": "2026-09-07T19:00:00",
              "event_date": "2026-09-07",
              "venue_address": "725 Front St, Santa Cruz, CA 95060",
              "description": "Come hang out in the garden and have some laughs, EVERY MONDAY NIGHT.\n\nFeaturing comedians from all over the Bay Area and beyond.",
              "event_types": [
                "comedy",
                "community"
              ],
              "price_info": "",
              "url": "https://www.abbottsquaremarket.com/events/yxy2temjm5rphl6xxk5cfchb7a47mj-rskts-a2lpf",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_abbott_square",
                  "source_name": "Abbott Square Market",
                  "fetched_at": "2026-08-22T12:39:51.694804Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_abbott_square|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_60a6277cbc6e",
              "venue_id": "venue_thee_stork_club",
              "title": "Freakyoke 9/07",
              "event_time": "September 07, 2026 8:00PM",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-09-07T20:00:00",
              "event_date": "2026-09-07",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "This show is 21+ Freakyoke Karaoke 1st and 3rd Mondays 8:00pm, FREE Do you want somewhere you can sing your favorite songs? We're talking alternative, metal, rock, pop, disco, and everything in between! If it's on YouTube, we got it!! Freakyoke karaoke is where it's at for folks that may not feel like they can sing freely and freakly at other karaoke! QUEER TRANS CENTERED KARAOKE!!",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://wl.seetickets.us/event/freakyoke-907/692289?afflky=TheeStorkClub",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-08-22T14:35:18.029489Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_90136e981449",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Alice for Wonderland",
              "event_time": "2026-09-07",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-07",
              "event_date": "2026-09-07",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-07",
              "run_id": "run_304a2c902844",
              "run_label": "Alice for Wonderland, Aug 22 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_267fe6eee6c2",
              "venue_id": "venue_scpl_downtown",
              "title": "Library Closure: Labor Day",
              "event_time": "September 07 2026 All day",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-07",
              "event_date": "2026-09-07",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "All library branches will close for Labor Day. Regular hours resume on Tuesday, September 8th 2026.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/14743314",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_27b00cd2ebc8",
              "venue_id": "venue_the_fireside",
              "title": "Ambassador Tasting Industry Specials",
              "event_time": "SEP 7 2026",
              "venue_name": "The Fireside",
              "event_start": "2026-09-07",
              "event_date": "2026-09-07",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "The Fireside Lounge sits in Alameda’s West End, in the stretch of Webster Street that has a bunch of small restaurants, cafes, and bars clustered together. Inside, it feels like a laid‑back neighborhood bar that also happens to host a lot of events. There is a real fireplace that people tend to gravitate toward on cooler nights, and the main bar area is anchored by an old art deco barback. more...",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.thefiresidelounge.com/#!/e/other-jun-20-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-08-24T11:04:43.394724Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fireside|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c288bcfef42c",
              "venue_id": "venue_temescal_arts_center",
              "title": "Doors That Only Open in Silence",
              "event_time": "2026-09-07T19:30:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-09-07T19:30:00",
              "event_date": "2026-09-07",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Open participation free improvisation non-hierarchical workshop. Bring your instrument or come to listen. No advance notice needed – just show up. Small groups will be randomly assembled from submitted names immediately before each group plays. Over by 10pm.",
              "event_types": [
                "workshop",
                "experimental"
              ],
              "price_info": "Free",
              "url": "https://www.temescalartcenter.org/tacmusic.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-08-28T14:09:19.773505Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0f622f826c6c",
              "venue_id": "venue_musicians_union_hall",
              "title": "Labor Day Picnic",
              "event_time": "2026-09-07",
              "venue_name": "Musicians Union Hall",
              "event_start": "2026-09-07",
              "event_date": "2026-09-07",
              "venue_address": "116 9th St, San Francisco, CA 94103",
              "description": "Last day to submit an ad to print in the October newsletter",
              "event_types": [
                "community"
              ],
              "price_info": "Not specified",
              "url": "https://afm6.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_musicians_union_hall",
                  "source_name": "Musicians Union Hall",
                  "fetched_at": "2026-08-28T18:14:10.042708Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_musicians_union_hall|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_90da31666bee",
              "venue_id": "venue_the_lost_church",
              "title": "4UST Collective",
              "event_time": "09/07/2026",
              "venue_name": "The Lost Church",
              "event_start": "2026-09-07",
              "event_date": "2026-09-07",
              "venue_address": "988 Columbus Ave, San Francisco, CA 94133",
              "description": "A live performance showcase featuring the eclectic hip-hop and collaborative grooves of the 4UST Collective.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://thelostchurch.my.salesforce-sites.com/ticket#/instances/a0FUh00000BUNAXMA5",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lost_church",
                  "source_name": "The Lost Church",
                  "fetched_at": "2026-08-28T20:03:22.982745Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_lost_church|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f78e77e102b7",
              "venue_id": "venue_bix",
              "title": "Jazz Duo",
              "event_time": "2026-09-07T19:00:00",
              "venue_name": "Bix",
              "event_start": "2026-09-07T19:00:00",
              "event_date": "2026-09-07",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Jazz Duo",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Never a cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-08-28T21:10:29.119399Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bix|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1133c1a64af5",
              "venue_id": "venue_neck_of_the_woods",
              "title": "Salsa Crazy Mondays",
              "event_time": "Mon, Sep 7 Show: 6:30 pm",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-09-07T18:30:00",
              "event_date": "2026-09-07",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$12.33 - $47.32",
              "url": "https://www.neckofthewoodssf.com/tm-event/salsa-crazy-mondays-5/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_neck_of_the_woods",
                  "source_name": "Neck of the Woods",
                  "fetched_at": "2026-08-28T21:30:17.641164Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ce42f802253d",
              "venue_id": "venue_yoshis",
              "title": "AIMEE NOLTE",
              "event_time": "September 7, 2026 - 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-07T19:30:00",
              "event_date": "2026-09-07",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "JAZZ PIANIST, VOCALIST, AND ACCLAIMED YOUTUBE AND INSTAGRAM EDUCATOR",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$30 - $59",
              "url": "https://yoshis.com/events/buy-tickets/aimee-nolte/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5f70179e3b3d",
              "venue_id": "venue_ivy_room",
              "title": "Happy Hour",
              "event_time": "Sep 7 4:00 PM",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-07T16:00:00",
              "event_date": "2026-09-07",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Happy Hour - No Fuss, just good times! EVERY MONDAY! Mon Sep 7 Minimum age: 21 and over Show time: 4:00 PM Doors open: 4:00 PM Free Description 🍻 Mondays Are For Happy Hour Starting this July, we are officially throwing open the doors every Monday at 4:00 PM for a good old-fashioned happy hour. No stage production, no fuss—just good drinks, excellent company, and Chaos behind the bar holding down the vibe. From now on, when you think of Mondays, think of us. Mondays are for Hangin' Out. Hope to see you all very soon!",
              "event_types": [
                "community"
              ],
              "price_info": "FREE",
              "url": "https://www.ivyroom.com/#/events/194931",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-08-31T11:55:01.170393Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0abfde0e6563",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC NIGHT",
              "event_time": "Mon Sep 7 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-07T19:00:00",
              "event_date": "2026-09-07",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "A legendary Monday night tradition at the Hotel Utah Saloon, this open mic is a cornerstone of San Francisco's singer-songwriter community. Local and visiting artists sign up via a random drawing to perform a song on the historic stage.",
              "event_types": [
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/OPEN-MIC-NIGHT/690188?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-08-31T12:12:52.447528Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bee547c9db8f",
              "venue_id": "venue_winters",
              "title": "STEAL YOUR MONDAY***Caltucky",
              "event_time": "2026-09-07T18:00:00",
              "venue_name": "Winters",
              "event_start": "2026-09-07T18:00:00",
              "event_date": "2026-09-07",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "Live alt/bluegrass/folk music featuring Caltucky from Nevada City, CA.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQEq_7f64RULP1zAmsM6FaNnoWR0VHBxHyc3EH_9dSDFvGL8Yao8WT_F-eKraLYkJLgDyzK4S9S904N-2reLh2-X79z9McQ1FAOJDfTCLiyfBvXnM8Jt1YTq_IZH8_WES4pytsyvauKAChmf_IUoHlC6NJ1YwhplhoE=",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-08-31T12:39:12.063314Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_winters|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_05c742c17798",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Labor Day Celebration Concert",
              "event_time": "2026-09-07T13:00:00",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-09-07T13:00:00",
              "event_date": "2026-09-07",
              "venue_address": "San Francisco, CA 94118",
              "description": "Labor Day performance honoring the spirit of American work and community with a toe-tapping mix of favorites by the Golden Gate Park Band.",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "Free",
              "url": "https://sfrecpark.org/calendar.aspx?EID=17155",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-08-31T13:28:15.005369Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_7f3ea5d9cb2e",
              "venue_id": "venue_maxs_of_burlingame",
              "title": "Live Jazz",
              "event_time": "2026-09-07",
              "venue_name": "Max's of Burlingame",
              "event_start": "2026-09-07",
              "event_date": "2026-09-07",
              "venue_address": "1250 Old Bayshore Blvd, Burlingame, CA 94010",
              "description": "Live Jazz performance",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://maxsofburlingame.com/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_maxs_of_burlingame",
                  "source_name": "Max's of Burlingame",
                  "fetched_at": "2026-08-31T16:03:10.803244Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_maxs_of_burlingame|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f3e705345879",
              "venue_id": "venue_the_knockout",
              "title": "Cult of Cinema Happy Hour",
              "event_time": "Mon 7 Sep ― 7:00pm",
              "venue_name": "The Knockout",
              "event_start": "2026-09-07T19:00:00",
              "event_date": "2026-09-07",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "KRAZY FOR KARAOKE! KARAOKE FREEKS UNITE! CLIMB ON STAGE, SCREAM OUT YOUR BEST JAM AND FUFILL YOUR ROCK STAR DREAMS! • EVERY MONDAY IS KRAZY FOR KARAOKE AT THE KNOCKOUT! • 9PM TO CLOSE • NO COVER • 21+",
              "event_types": [
                "film"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/Z9717c1a3516?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-09-02T10:33:16.877437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a0ea089a122a",
              "venue_id": "venue_the_knockout",
              "title": "Krazy For Karaoke",
              "event_time": "Mon 7 Sep ― 9:00pm",
              "venue_name": "The Knockout",
              "event_start": "2026-09-07T21:00:00",
              "event_date": "2026-09-07",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "KRAZY FOR KARAOKE! KARAOKE FREEKS UNITE! CLIMB ON STAGE, SCREAM OUT YOUR BEST JAM AND FUFILL YOUR ROCK STAR DREAMS! • EVERY MONDAY IS KRAZY FOR KARAOKE AT THE KNOCKOUT! • 9PM TO CLOSE • NO COVER • 21+",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/D60d2af2c530?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-09-02T10:33:16.877437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f491ec41f27d",
              "venue_id": "venue_the_saloon",
              "title": "Peter Lindman and Roger Rocha",
              "event_time": "September 7 @ 4:00 pm - 8:00 pm",
              "venue_name": "The Saloon",
              "event_start": "2026-09-07T16:00:00",
              "event_date": "2026-09-07",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "Peter Lindman and Roger Rocha turn Monday afternoons at The Saloon into a 4–8 pm time warp of classic rock and sixties-era favorites, delivered with the easy swagger of true...",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/peter-lindman-14/2026-09-07/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:44.081024Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_saloon|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_00ac541cb66a",
              "venue_id": "venue_scopo_divino",
              "title": "Swing Shift",
              "event_time": "September 7 @ 5:00 pm - 8:00 pm",
              "venue_name": "Scopo Divino",
              "event_start": "2026-09-07T17:00:00",
              "event_date": "2026-09-07",
              "venue_address": "2800 California St, San Francisco, CA 94115",
              "description": "Join Swing Shift at Scopo Divino as they celebrate classic American swing music, putting their unique spin on the Great American Songbook. Led by Richard Southwick on vocals and guitar,...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/swing-shift/2026-09-07/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:44.081024Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scopo_divino|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_6d418d6f9e00",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Flavio Souza",
              "event_time": "September 7 @ 6:00 pm - 9:00 pm",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-07T18:00:00",
              "event_date": "2026-09-07",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Flavio Souza performs weekly on Mondays at Etcetera Wine Bar. Born in São Paulo, Brazil, Flavio started music at 14 years old. His main influences were great musicians such as Chick Corea, Bill Evans, Oscar Peterson, Jimmy Smith, Joey DeFrancesco, Joe Satriani, Sandro Haick and others. He is the owner of Studio Plano 7, which...",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/flavio-souza/2026-09-07/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:44.081024Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-09-03T13:50:21.930604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_e1b0f7a8d3f5",
              "venue_id": "venue_the_royal_cuckoo",
              "title": "Piano night at The Royal Cuckoo Organ Lounge",
              "event_time": "September 7 @ 7:00 pm - 10:00 pm",
              "venue_name": "The Royal Cuckoo",
              "event_start": "2026-09-07T19:00:00",
              "event_date": "2026-09-07",
              "venue_address": "3202 Mission St, San Francisco, CA 94110",
              "description": "Piano nights at The Royal Cuckoo Organ Lounge are characterised by their early start times and the use of the venue’s vintage Steinway Upright piano, which differs from the lounge's typical focus on its prominent Hammond organ. Piano Monday shows start at 7:00 PM and typically run until 10:00 PM. Cover Charge: There is never a cover charge for entry. However, musicians often pass a donation...",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/piano-night-at-the-royal-cuckoo-organ-lounge-doug-hilsinger-and-jamin-barton/2026-09-07/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:46.749774Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_royal_cuckoo|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_514be880dbe0",
              "venue_id": "venue_club_deluxe",
              "title": "Deluxe Jazz Collective",
              "event_time": "September 7 @ 7:00 pm - 10:00 pm",
              "venue_name": "The DeLuxe",
              "event_start": "2026-09-07T19:00:00",
              "event_date": "2026-09-07",
              "venue_address": "1511 Haight St, San Francisco, CA 94117",
              "description": "The Deluxe Jazz Collective brings the spontaneous energy of rotating musicians to The Deluxe every Monday — a revolving cast of Bay Area talent coming together to keep the jazz tradition alive, fresh, and full of surprises week after week.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$5",
              "url": "https://offbeatsf.com/event/deluxe-jazz-collective/2026-09-07/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:46.749774Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_deluxe|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_4ebadef19a8a",
              "venue_id": "venue_local_edition",
              "title": "Barbary Coast Jazz Band",
              "event_time": "September 7 @ 8:00 pm - 11:00 pm",
              "venue_name": "Local Edition",
              "event_start": "2026-09-07T20:00:00",
              "event_date": "2026-09-07",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Paul PAZZO Mehling- Solo Guitar, Vocals, Leader Isabelle Fontaine- Rhythm Guitar, Vocals Evan Zeppo Price- Violin Dexter DeWi Williams- String Bass Le Jazz Hot (the Quartet/Trio of the Hot Club of San Francisco) is an ensemble of accomplished and versatile musicians celebrating the music of Django Reinhardt and Stephane Grappelli’s pioneering Hot Club de France....",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/barbary-coast-jazz-band-2-2/2026-09-07/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:46.749774Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_51bb19bbc0da",
              "venue_id": "venue_the_saloon",
              "title": "Mitch Polzak",
              "event_time": "September 7 @ 9:30 pm - 1:30 am",
              "venue_name": "The Saloon",
              "event_start": "2026-09-07T21:30:00",
              "event_date": "2026-09-07",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "Mitch Polzak is a guitarist, singer, banjoist, and bandleader appearing at The Saloon in North Beach under his own name. He draws on rockabilly, 1960s country, honky tonk, Bakersfield-influenced country, surf, early rock and roll, bluegrass, Cajun, blues, and related American roots styles, reflecting a long career steeped in these traditions.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/mitch-polzak-9-2/2026-09-07/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:46.749774Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_saloon|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_157de94a6f0d",
              "venue_id": "venue_discretion_brewing",
              "title": "Movie Mondays",
              "event_time": "2026-09-07",
              "venue_name": "Discretion Brewing",
              "event_start": "2026-09-07T17:30:00",
              "event_date": "2026-09-07",
              "venue_address": "2703 41st Ave Ste A, Soquel, CA 95073",
              "description": "6:45pm Showtime: Wayne's World",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_discretion_brewing",
                  "source_name": "Discretion Brewing",
                  "fetched_at": "2026-09-02T11:35:03.120781Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_discretion_brewing|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7ae3c1fda532",
              "venue_id": "venue_madrone_art_bar",
              "title": "Motown on Mondays",
              "event_time": "September 7 @ 7:00 pm - 1:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-07T19:00:00",
              "event_date": "2026-09-07",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "It’s only Monday if you treat it like one! DJ Gordo Cabeza and weekly guests play originals, exclusive remixes and close relatives of your favorite Motown songs. The most talked about night in town! Starting at 7pm. Doors 4pm – 2am / 21 & up w/ID $5 cover after 8pm",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$5 cover",
              "url": "https://madroneartbar.com/event/motown-on-mondays-79-2025-12-01-2026-04-27/2026-09-07/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_25e3ee78d086",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Janice Maxie Reid- Keys Cafe Grand Opening!",
              "event_time": "Monday, September 7, 2026 @ 12pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-07T12:00:00",
              "event_date": "2026-09-07",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Monday, September 7, 2026 @ 12pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/janice-maxie-reid-keys-cafe-grand-opening/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_acde82ae53e3",
              "venue_id": "venue_z_space",
              "title": "San Francisco Hysterical Historium",
              "event_time": "2026-09-07T19:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-09-07T19:00:00",
              "event_date": "2026-09-07",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "Killing My Lobster & Z Space present: San Francisco Hysterical Historium, a Co-Production with Red Barn Productions. Sketch comedy that ain't fool's gold!",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-09-03T10:55:35.787344Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_z_space|2026-09-07",
              "run_id": "run_6cdec2f9a529",
              "run_label": "San Francisco Hysterical Historium, Sep 4 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e90d9f907024",
              "venue_id": "venue_4_star_theater",
              "title": "Dead Set 805",
              "event_time": "7 September 2026 8:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-07T20:00:00",
              "event_date": "2026-09-07",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Deadset 805 is a fast-paced Grateful Dead cover band formed in the college-town of Isla Vista, California in 2021, with the band growing up in backyard parties and soon finding itself in venues all over the coast. The band has passed through quite a few hands since its inception, as people move away and old friends recruit young friends, creating its own beautiful little legacy-- no matter who's playing, the music never stops.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/live-music-dead-set-805",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_316c64183bee",
              "venue_id": "venue_local_edition",
              "title": "Closed for Labor Day",
              "event_time": "September 7, 2026 4:30 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-09-07T16:30:00",
              "event_date": "2026-09-07",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Closed for the holiday. Happy Labor Day!Book your next reservation here.Click here to host your next event with us!",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/74aap54y6wfms4p-rewj3-69bba-kdd9x-lhlkt",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-09-03T12:59:31.047351Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_31588cd49fc0",
              "venue_id": "venue_pier_23",
              "title": "MAHJONG MONDAYS",
              "event_time": "Monday, September 7, 2026 4:00 PM\n              \n              7:00 PM",
              "venue_name": "Pier 23",
              "event_start": "2026-09-07T16:00:00",
              "event_date": "2026-09-07",
              "venue_address": "23 The Embarcadero,San Francisco, CA 94111",
              "description": "Join us on Monday 4-7pm for Social Play! Bring a friend and your Mahjong set (or use one of ours). Whether you're a seasoned player or new to the game, everyone is welcome! Enjoy our spectacular views, yummy food and wide range of specialty cocktails. As my favorite teacher, Dinna Davis, inspires: “Let’s Mahj On!”",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://www.pier23cafe.com/events/2026/8/10/mahjong-mondays-4-7pm-n7zzj",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pier_23",
                  "source_name": "Pier 23",
                  "fetched_at": "2026-09-03T13:40:31.659066Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pier_23|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_42942f49e781",
              "venue_id": "venue_hillside_club",
              "title": "Wildfire Prevention Panel",
              "event_time": "Sep 07, 2026, 7:30 PM – 9:00 PM",
              "venue_name": "Hillside Club",
              "event_start": "2026-09-07T19:30:00",
              "event_date": "2026-09-07",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "Club member Marcus von Engel chairs a panel of local fire experts and representatives for a discussion on new regulations governing fire safety in the Berkeley Hills.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.hillsideclub.org/event-details/fireside-meeting-berkeleys-wildfire-prevention-initiatives-a-sharpened-focus",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-09-04T10:10:10.864332Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hillside_club|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1e78c3b8fd47",
              "venue_id": "venue_sailing_goat",
              "title": "The Real John Gary",
              "event_time": "2026-09-07T16:00:00",
              "venue_name": "Sailing Goat",
              "event_start": "2026-09-07T16:00:00",
              "event_date": "2026-09-07",
              "venue_address": "1900 Stenmark Dr, Richmond, CA 94801",
              "description": "Labor Day performance featuring folk rock and alt-country one-man-band The Real John Gary (Drew Clinard).",
              "event_types": [
                "live_music",
                "folk",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://www.sailinggoatrestaurant.com/event-details/the-real-john-gary",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sailing_goat",
                  "source_name": "Sailing Goat",
                  "fetched_at": "2026-09-04T10:13:07.105977Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sailing_goat|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_ce86b72dc157",
              "venue_id": "venue_kilowatt",
              "title": "Sunfish, Box Cutter & Kiori",
              "event_time": "Mon 7 Sep ― 7:00pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-07T19:00:00",
              "event_date": "2026-09-07",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Sunfish | If you don’t already know about Sunfish, prepare to have your mind musically blown! Comprising the ultimate guys-next-door, this band perfectly harnesses the raw energy of teenage angst and then refines it into ear-shattering guitar solos and dea Read more",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$19.06",
              "url": "https://link.dice.fm/Mb7cfc000745?pid=ff10e59d",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-09-04T10:33:38.052132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-09-08": {
          "date": "2026-09-08",
          "updated_at": "2026-09-04T10:38:52.719205Z",
          "events": [
            {
              "event_id": "evt_132a63d27c14",
              "venue_id": "venue_regency_ballroom",
              "title": "Slayyyter, Pearly Drops",
              "event_time": "2026-09-08T19:00:00",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-09-08T19:00:00",
              "event_date": "2026-09-08",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Pop artist Slayyyter performs her bold, electronic-infused tracks alongside the ethereal sounds of Pearly Drops. It is a night of modern pop aesthetics and vibrant energy in a scenic setting.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "a/a",
              "url": "https://www.axs.com/events/1373060/slayyyter-tickets?skin=goldenvoice",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-05-04T11:08:02.193821Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b01296369dcc",
              "venue_id": "venue_the_independent",
              "title": "PAWPAW ROD",
              "event_time": "9.8 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-08T20:00:00",
              "event_date": "2026-09-08",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List PawPaw Rod femdot Tue, Sep 8 Doors: 7:30 pm | Show: 8:00 pm All Ages Please note - there is a delivery delay set for 2 weeks prior to show. PawPaw Rod Picture Day VIP Package - One general admission ticket - Early entry into the venue - Exclusive meet & greet with PawPaw Rod - It’s Picture Day: personal polaroid photograph with PawPaw Rod - Specially designed PawPaw Rod tote bag - Custom Picture Day slip mat - Official meet & greet VIP laminate and lanyard, autographed by PawPaw Rod - Priority merchandise shopping - Limited availability Buy Tickets Share + Google Calendar Related Events Novulent Jun 19 Buy Tickets Mamas Gun Jun 20 Buy Tickets Artists PawPaw Rod PawPaw Rod, the Hawaii-born, Oklahoma-raised rapper and singer, discovered his passion for music and writing during his upbringing as a military brat. Moving frequently, he found solace in the familiar sounds of his favorite records. When speaking on his artistry, he explains that during his formative years in Norman, OK, “There was an absence of a dominant or regional sound, especially for black artists. This afforded me the freedom to pull from everything, crucially shaping my music today, a credit I attribute to my childhood experiences of moving around various cultures and tribes.” PawPaw Rod grew up on a steady diet of Maxwell, Prince, The Gap Band, and Bill Withers. He first caught the performance bug singing in church, sharing that “ever since that first time singing on stage, I knew I would forever be on a journey of chasing that feeling.” PawPaw Rod released his explosive debut single, \"HIT EM WHERE IT HURTS,\" in 2020, seamlessly merging hip-hop, 60s soul, funk, and alternative. Across four EPs — A PawPaw Rod EP (2021), Another PawPaw Rod EP (2022), This Must Be a PawPaw EP (2023), and Doobie Mouth (2024) — Rod has cultivated a catalog that has now surpassed 200M streams and drawn critical praise from outlets like Complex, FADER, GQ, Nylon, and Rolling Stone . His 2024 project Doob",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/pawpaw-rod/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-18T07:25:47.483758Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-09-04T10:18:32.697885Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_964d45bebd92",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Samara Joy with the SF Symphony",
              "event_time": "sep 8 7:30pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-09-08T19:30:00",
              "event_date": "2026-09-08",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "A cookie is a small piece of data (text file) that a website – when visited by a user – asks your browser to store on your device in order to remember information about you, such as your language preference or login information. Those cookies are set by us and called first-party cookies. We also use third-party cookies – which are cookies from a domain different than the domain of the website you are visiting – for our advertising and marketing efforts. More specifically, we use cookies and other tracking technologies for the following purposes:",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "BUY NOW",
              "url": "https://www.sfsymphony.org/Buy-Tickets/2026-27/Samara-Joy",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-25T10:40:49.247198Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-06-28T23:18:48.329684Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f3c962ceba95",
              "venue_id": "venue_rickshaw_stop",
              "title": "THE BUG CLUB",
              "event_time": "Tue Sep 8 8:00PM",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-09-08T20:00:00",
              "event_date": "2026-09-08",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Supporting Talent: Lunchbox, Preschool",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "All Ages, $20.00",
              "url": "https://wl.seetickets.us/event/the-bug-club/696618?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-07-05T11:20:12.548685Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-12T11:45:29.263581Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6f0a1027eaef",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Beauty and the Beast",
              "event_time": "Sep 8, 2026 @ 7:30pm",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-08T19:30:00",
              "event_date": "2026-09-08",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "| Performances: Sept. 8-13 |  \n \n“Be Our Guest” at Disney’s BEAUTY AND THE BEAST, Disney’s first North American touring production of the beloved musical in over 25 years.\nThis enchanting and timeless…",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sanjosetheaters.org/event/78294657-20260908000000",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "San Jose CPA",
                  "fetched_at": "2026-07-13T10:23:51.933005Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7aca44d52e16",
              "venue_id": "venue_the_warfield",
              "title": "Bikini Kill, Alice Bag",
              "event_time": "sep 8 8pm",
              "venue_name": "The Warfield",
              "event_start": "2026-09-08T20:00:00",
              "event_date": "2026-09-08",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "Bikini Kill is a feminist punk band that was based in Olympia, WA and Washington, DC, forming in 1990 and breaking up in 1997. Kathleen Hanna sang, Tobi Vail played drums, Billy Karren (a.k.a. Billy Boredom) played guitar and Kathi Wilcox played bass. Sometimes they switched instruments. Bikini Kill is credited with instigating the Riot Grrrl movement in the early 90's via their political lyrics, zines and confrontational live show. The band started touring in June 1991. In addition to touring the US several times, they also toured Europe, Australia and Japan. Bikini Kill recorded and released a demo tape, two EP's, two LP's and three singles. Their demo tape was self-released,while their first two records came out as a full length CD/Tape and their singles were posthumously collected on CD. Bikini Kill believed that if all girls started bands the world would change. They actively encouraged women and girls to start bands as a means of cultural resistance. Bikini Kill was inspired by seeing Babes in Toyland play live and attempted to incite female participation and build feminist community via the punk scene. They used touring as a way to create an underground network between girls who played music, put on shows and made fanzines. This independent media making and informal network created a forum for multiple female voices to be heard. Bikini Kill reunited in the Spring of 2019 with original members Kathleen, Kathi, and Tobi who were joined live by Erica Dawn Lyle. They sold out multiple shows in Los Angeles, NYC, and London as well as headlining Riot Fest in Chicago.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.thewarfieldtheatre.com/events/detail/1528340",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-07-29T14:12:25.165336Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_62e4b6ed2a09",
              "venue_id": "venue_brava_theater",
              "title": "SF Contemporary Music Players",
              "event_time": "9/08/2026 7:30 PM",
              "venue_name": "Brava Theater",
              "event_start": "2026-09-08T19:30:00",
              "event_date": "2026-09-08",
              "venue_address": "2781 24th St, San Francisco, CA 94110",
              "description": "ARTZenter Institute is a grant program in partnership with the Contemporary Music Players, encouraging the creation of new music that explores the power and grace of the traditional orchestral ensemble. The fund was created by Tony Magee, founder of The Lagunitas Brewing Company of Petaluma, CA, and is committed to creating chamber orchestra workshops, mentorship and performance opportunities for young composers nationwide. The Emerging Composer Completion Grant Program has grown into one of the nation’s largest and most ambitious vehicles in support of new work, with multiple calls-for-scores being announced annually.\n\nFeaturing the winning composers from ARTZenter’s round of completion grants from January 2026, we present world premiere performances of 4 new compositions for sinfonietta at Brava Theater.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23207",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-02T10:15:07.580640Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_brava_theater",
                  "source_name": "Brava Theater",
                  "fetched_at": "2026-08-13T10:36:12.878644Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brava_theater|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_8581e2890ce8",
              "venue_id": "venue_little_hill_lounge",
              "title": "JAZZ ON TUESDAYS - Farallon",
              "event_time": "September 8, 2026 8 – 10:30pm",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-09-08T20:00:00",
              "event_date": "2026-09-08",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "8pm to 10:30pm, JAZZ ON TUESDAYS - Farallon, Calendar: Outsound Presents, Location: Little Hill Lounge, 10753 San Pablo Ave, El Cerrito, CA 94530, USA, September 8, 2026",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://calendar.google.com/calendar/event?eid=MmNyMWJrbnJiZmQ5aHB2dTRlY29tdWhhNWxfMjAyNjA5MDlUMDMwMDAwWiA2NDJ1dTMwZGFycnExNXV1bDFjOTIyb2kyMEBn",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_outsound",
                  "source_name": "Outsound",
                  "fetched_at": "2026-08-21T11:15:31.057227Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_9cf0b82746de",
              "venue_id": "venue_the_riptide",
              "title": "Eileen's Punk Rock and Schlock Karaoke",
              "event_time": "September 8 9:30 PM - September 9 12:30 AM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-08T21:30:00",
              "event_date": "2026-09-08",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "live_music",
                "rock",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8342d1001e4a",
              "venue_id": "venue_abbott_square",
              "title": "SALSA SOCIAL DANCE",
              "event_time": "Tuesday, September 8, 2026 7:00 PM - 10:00 PM",
              "venue_name": "Abbott Square Market",
              "event_start": "2026-09-08T19:00:00",
              "event_date": "2026-09-08",
              "venue_address": "725 Front St, Santa Cruz, CA 95060",
              "description": "Spice up your Tuesdays! Join us every Tuesday night from 7–10pm at Abbott Square Market for a sizzling social dance party! Move to the rhythms of salsa, cumbia, merengue, and bachata in a vibrant, welcoming atmosphere. It’s free, it’s fun, and it’s the perfect midweek vibe. All levels welcome—just bring your energy and your dancing shoes!",
              "event_types": [
                "dance",
                "community"
              ],
              "price_info": "free",
              "url": "https://www.abbottsquaremarket.com/events/salsa-social-dance-cgg5f",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_abbott_square",
                  "source_name": "Abbott Square Market",
                  "fetched_at": "2026-08-22T12:39:51.694804Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_abbott_square|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_eb741f3e094e",
              "venue_id": "venue_verdi_club",
              "title": "The Woodchopper's Ball",
              "event_time": "2026-09-08T21:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-09-08T21:00:00",
              "event_date": "2026-09-08",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.verdiclub.net/events-calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-08-22T14:55:24.428239Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_verdi_club|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fa48c8f0af92",
              "venue_id": "venue_sc_museum_nat_history",
              "title": "Toddler Tumble Time",
              "event_time": "September 8 @ 10:30 am",
              "venue_name": "Santa Cruz Museum of Natural History",
              "event_start": "2026-09-08T10:30:00",
              "event_date": "2026-09-08",
              "venue_address": "1305 E Cliff Dr, Santa Cruz, CA 95062",
              "description": "Come Join Us for Toddler Tumble Time! We’ll be sharing some of our educational collection items. Bring your little ones to explore and learn about science. Don’t miss out on the fun!   ¡Acompáñenos en la Hora de Juegos para Pequeñitos! Compartiremos una selección de artículos de nuestra colección educativa. Venga con sus pequeños a explorar...",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzmuseum.org/event/toddler-tumble-time-3/2026-09-08/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sc_museum_nat_history",
                  "source_name": "Santa Cruz Museum of Natural History",
                  "fetched_at": "2026-08-22T19:25:35.374632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sc_museum_nat_history|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ea804931e0e2",
              "venue_id": "venue_scpl_downtown",
              "title": "Backgammon @ the Library",
              "event_time": "September 08 2026 10:00am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-08T10:00:00",
              "event_date": "2026-09-08",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Join us Tuesdays at Aptos Library to learn, play, and compete in Backgammon! All skill levels welcome - enjoy strategy, fun, and friendly competition in a relaxed social setting.",
              "event_types": [
                "community",
                "sports"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/14474606",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4389a8d5be57",
              "venue_id": "venue_scpl_downtown",
              "title": "In-person Tech Help @ La Selva Beach",
              "event_time": "September 08 2026 10:00am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-08T10:00:00",
              "event_date": "2026-09-08",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Are you stuck with a technology question? You can make a free appointment with a tech savvy library staff member!",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15222555",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c9dd8fe7749b",
              "venue_id": "venue_scpl_downtown",
              "title": "Quilting with Friends",
              "event_time": "September 08 2026 10:00am - 3:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-08T10:00:00",
              "event_date": "2026-09-08",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Join us at the Boulder Creek Library for Quilting with Friends every 1st and 3rd Monday of the month (subject to holiday closures)",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15619189",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_19d7a4f904d9",
              "venue_id": "venue_scpl_downtown",
              "title": "Baby Time and Stay & Play",
              "event_time": "September 08 2026 10:30am - 11:30am",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-08T10:30:00",
              "event_date": "2026-09-08",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Baby Story Time is a sweet introduction to stories, songs, rhymes, and lap play, thoughtfully designed to nurture early literacy and bonding.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15728216",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b0ab296475dd",
              "venue_id": "venue_scpl_downtown",
              "title": "Making Music with MusicalMe!",
              "event_time": "September 08 2026 11:00am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-08T11:00:00",
              "event_date": "2026-09-08",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "We will sing, move, and play musical instruments together in Spanish and English. Juntos, cantaremos, nos moveremos y tocaremos instrumentos musicales en inglés y español.",
              "event_types": [
                "community",
                "live_music"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17043903",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_21b1beb1e7a1",
              "venue_id": "venue_scpl_downtown",
              "title": "Toddler Time @ Live Oak",
              "event_time": "September 08 2026 11:00am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-08T11:00:00",
              "event_date": "2026-09-08",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Come join Librarian Emily for stories, songs, and lots of fun for toddlers and their caregivers in our beautiful, newly-renovated Scotts Valley Library Branch every Tuesday at 11am.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17067539",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_91a92c99222e",
              "venue_id": "venue_scpl_downtown",
              "title": "Volunteer Housing Navigators",
              "event_time": "September 08 2026 11:30am - 1:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-08T11:30:00",
              "event_date": "2026-09-08",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Housing navigation services for people experiencing homelessness.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15564879",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_abbefe2e3dcf",
              "venue_id": "venue_scpl_downtown",
              "title": "Health and Lifestyle Solutions Book Club",
              "event_time": "September 08 2026 12:15pm - 2:15pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-08T12:15:00",
              "event_date": "2026-09-08",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Join a health book club with educational discussions led by Dr. Rabia Barkins, a licensed holistic health practitioner. Improve overall health with lifestyle changes to diet, exercise, and more.",
              "event_types": [
                "community",
                "literary",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15114360",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a00ea6ecc729",
              "venue_id": "venue_scpl_downtown",
              "title": "Conversations in Español",
              "event_time": "September 08 2026 12:30pm - 1:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-08T12:30:00",
              "event_date": "2026-09-08",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "This club is designed for intermediate-level participants, so if you're just starting out, you might find it a bit challenging at first.",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15560177",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ecb7a390faee",
              "venue_id": "venue_scpl_downtown",
              "title": "English Language Conversation Group",
              "event_time": "September 08 2026 1:00pm - 2:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-08T13:00:00",
              "event_date": "2026-09-08",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Practice your English and make new friends!",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15223885",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fd38fb88be65",
              "venue_id": "venue_scpl_downtown",
              "title": "Housing Matters Drop In Hours @ Felton",
              "event_time": "September 08 2026 1:00pm - 3:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-08T13:00:00",
              "event_date": "2026-09-08",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "A Housing Matters Outreach Specialist is available every Tuesday to support people experiencing homelessness and help connect them to resources, navigate housing options, and sign up for benefits.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15425654",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1688a9e50b2b",
              "venue_id": "venue_scpl_downtown",
              "title": "Garfield Park Library Hot Topics Book Club",
              "event_time": "September 08 2026 1:00pm - 2:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-08T13:00:00",
              "event_date": "2026-09-08",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Join our book club every second Tuesday to explore great reads and share engaging conversations with fellow book lovers.",
              "event_types": [
                "literary",
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16749446",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_853ebee79982",
              "venue_id": "venue_scpl_downtown",
              "title": "Pop Up Library at Felton Farmer's Market",
              "event_time": "September 08 2026 1:30pm - 5:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-08T13:30:00",
              "event_date": "2026-09-08",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "The Felton Farmers' Market reopens on May 5 from 1:30PM - 5:30PM every Tuesday. Come by to do a market scavenger hunt and browse spring-themed books!",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16476061",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5a6725d2f435",
              "venue_id": "venue_scpl_downtown",
              "title": "Make & Explore @ Scotts Valley",
              "event_time": "September 08 2026 3:00pm - 4:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-08T15:00:00",
              "event_date": "2026-09-08",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Make and explore STEAM possibilities at Scotts Valley Branch Library! .",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16909454",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_209aa4df8296",
              "venue_id": "venue_scpl_downtown",
              "title": "R.E.A.D. Program",
              "event_time": "September 08 2026 3:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-08T15:00:00",
              "event_date": "2026-09-08",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "R.E.A.D. is one-on-one reading comprehension instruction for grades 1-12. By appointment only. Please, no drop-ins! To make an appointment, call 831-427-7713",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17174408",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7749e8bb0241",
              "venue_id": "venue_scpl_downtown",
              "title": "R.E.A.D.: Reach Every Amazing Detail @ Live oak",
              "event_time": "September 08 2026 3:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-08T15:00:00",
              "event_date": "2026-09-08",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "R.E.A.D. is one-on-one reading comprehension instruction for grades 1-12. R.E.A.D. ofrece instrucción individual de comprensión lectora para los grados 1 a 12.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17217338",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0667e8bf8f0f",
              "venue_id": "venue_scpl_downtown",
              "title": "Aptos Youth Chess Club @ Aptos",
              "event_time": "September 08 2026 3:30pm - 4:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-08T15:30:00",
              "event_date": "2026-09-08",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Aptos Youth Chess Club. Open to players ages 6 to 18 with knowledge of basic rules (how the pieces move). Instructor is Chess Master Dana Mackenzie.",
              "event_types": [
                "sports",
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/14419551",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0073883c7ea2",
              "venue_id": "venue_scpl_downtown",
              "title": "Tales to Tails at Capitola",
              "event_time": "September 08 2026 4:00pm - 5:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-08T16:00:00",
              "event_date": "2026-09-08",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Practice reading to a trained therapy dog! Registration is required.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16808245",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_df2a6fe804d2",
              "venue_id": "venue_scpl_downtown",
              "title": "Dark Star: Reclaiming Lilith",
              "event_time": "September 08 2026 4:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-08T16:00:00",
              "event_date": "2026-09-08",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Dark Star: Reclaiming Lilith is a mythic fantasy epic that follows a woman born with a cosmic legacy as she transforms from a powerful witch in the witch-hunt era into a protective warrior for Earth.",
              "event_types": [
                "literary"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16828357",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5f10d7b543b9",
              "venue_id": "venue_scpl_downtown",
              "title": "Virtual Author Talk with Daniel Kraus",
              "event_time": "September 08 2026 4:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-08T16:00:00",
              "event_date": "2026-09-08",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "2026 Pulitzer Prize Winner and New York Times Bestselling Author of Whalefall and Angel Down on A Ship Called Sickness and One Unforgettable Space Crew.",
              "event_types": [
                "literary",
                "livestream"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16900963",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_336162066b02",
              "venue_id": "venue_the_fireside",
              "title": "Tuesday Trivia",
              "event_time": "SEP 8 2026",
              "venue_name": "The Fireside",
              "event_start": "2026-09-08",
              "event_date": "2026-09-08",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "The Fireside Lounge sits in Alameda’s West End, in the stretch of Webster Street that has a bunch of small restaurants, cafes, and bars clustered together. Inside, it feels like a laid‑back neighborhood bar that also happens to host a lot of events. There is a real fireplace that people tend to gravitate toward on cooler nights, and the main bar area is anchored by an old art deco barback. more...",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://www.thefiresidelounge.com/#!/e/tuesday-trivia-jun-23-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-08-24T11:04:43.394724Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fireside|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f49298f91266",
              "venue_id": "venue_bookshop_santa_cruz",
              "title": "SUSAN SHILLINGLAW, STEINBECK'S LANDSCAPES",
              "event_time": "Tue, 9/8/2026 7:00pm - 8:00pm",
              "venue_name": "Bookshop Santa Cruz",
              "event_start": "2026-09-08T19:00:00",
              "event_date": "2026-09-08",
              "venue_address": "1520 Pacific Ave, Santa Cruz, CA 95060",
              "description": "FREE IN-STORE EVENT: Bookshop Santa Cruz welcomes Susan Shillinglaw for a reading and signing of her new book Steinbeck's Landscapes: Where Story Meets Place, an in-depth look at John Steinbeck as ...",
              "event_types": [
                "literary"
              ],
              "price_info": "",
              "url": "https://bookshopsantacruz.com/steinbecks-landscapes",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bookshop_santa_cruz",
                  "source_name": "Bookshop Santa Cruz",
                  "fetched_at": "2026-08-27T22:11:24.045604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bookshop_santa_cruz|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a6f6675c82a6",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Shades of Brown Fundraiser",
              "event_time": "2026-09-08 7:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-09-08T19:00:00",
              "event_date": "2026-09-08",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "Shades of Brown is a Nuestra Causa fundraiser and the official launch of our first apparel collection, Brown Brilliance. The collection was created as an extension of our organizing work, celebrating the identity, creativity, resilience, and brilliance of the communities we come from and serve. Proceeds from the drop will directly support Nuestra Causa’s community programs and organizing.\n\nThe evening would include a reception featuring food from street vendors we organize alongside; the debut of our Brown Brilliance T-shirt collection, a report-back on our work, poetry from formerly incarcerated poets, recognition of program participants/fellow organizers, and a short panel highlighting the story and creative process behind the Brown Brilliance project. We’d close with remarks and time for everyone to connect and mingle.\n\nNuestra Causa is a community-based organization rooted in San Francisco’s Mission District. Our work centers on violence prevention, youth leadership, support for currently/formerly incarcerated people and their families, street vendor rights, food justice, and community-led advocacy.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/shades-of-brown",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-08-28T14:05:33.197491Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7a3c443f51bc",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-09-08",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-09-08",
              "event_date": "2026-09-08",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-09-08",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c4ce6d358d13",
              "venue_id": "venue_dawn_club",
              "title": "PATRICK WOLFF QUARTET",
              "event_time": "Tuesday, September 8, 2026 8:00 PM 11:00 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-09-08T20:00:00",
              "event_date": "2026-09-08",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Patrick Wolff is a saxophone and clarinet player with a long history in the jazz scenes of New York City and San Francisco. He has performed or recorded with Albert \"Tootie\" Heath, Matt Wilson, Grant Stewart, Louis Moholo-Moholo, Dena Derose, and many other jazz greats. Since moving to San Francisco in 2009, Wolff has played and recorded regularly in the bands of Marcus Shelby, Richard Sears, Graham Connah, Adam Shulman, and Diana Gameros. Outside of the jazz world, he has had an eclectic mix of work including long stints in West African pop/funk group Asiko, prog metal band Kayo Dot, and with fuji music legend Adewale Ayuba. With six albums released under his name, Wolff has made his mark as a bandleader with various groups playing his original compositions, and with classic jazz quartets and quintets focused on repertoire of the bebop and hard bop eras. His playing is characterized by a focus on lyricism and an embrace of the whole lineage of jazz styles.Wolff is also a passionate jazz educator and advocate. For four years, he hosted and produced a weekly fearure show on KCSM 91.1FM (\"Have You Heard\"), exploring the work of emerging and underrated jazz artists, and continues to dj for the station on occasion. He was the Faculty Director at the Stanford Jazz Workshop from 2008-2013, and currently teaches jazz history, composition, and ensemble classes at the San Francisco Conservatory of Music and the College of San Mateo throughout the year, and at the Stanford Jazz Workshop in the summer.\n\n\n  \n#block-20d9884b040420b95a02 {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n\n\n  }\n\n  #block-20d9884b040420b95a02 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-20d9884b040420b95a02 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-20d9884b040420b95a02 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-20d9884b040420b95a02 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-20d9884b040420b95a02 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-20d9884b040420b95a02 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.dawnclub.com/music/patrick-wolff-quartet-3-sbbl3-6t87h-zcwfr-n682d-dyl4j-rlcc4-hc4cs-2384d-gnhw5-zzp37-f24re-cg29c-47zsr-hyx7d-rkhb4-ksbt9-mtp5n-2243g-p7w29-cslxb",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-08-28T15:32:50.415811Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-08-30T10:45:25.297409Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_896a31b009fc",
              "venue_id": "venue_odc_theater",
              "title": "OFF WAA Showcase",
              "event_time": "9/8 7:00PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-09-08T19:00:00",
              "event_date": "2026-09-08",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM000004EMXp2AO",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-08-28T16:07:20.992529Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_43de6a7da5e6",
              "venue_id": "venue_envelop_sf",
              "title": "Frank Ocean - Channel ORANGE",
              "event_time": "Tuesday, September 8, 09/08/2026",
              "venue_name": "Envelop SF",
              "event_start": "2026-09-08",
              "event_date": "2026-09-08",
              "venue_address": "2439 3rd St, San Francisco, CA 94107",
              "description": "LISTEN is a series of iconic album listenings in Envelop, allowing us to listen together within the music. Here's the important info to know before you arrive - Envelop SF is a pioneering immersive listening space that allows you to experience sound like never before. Our events are low capacity by design and tickets can sell out quickly. We encourage you to make your purchase ahead of time so we don’t miss you. Envelop SF is a shoeless venue. We want you to be as comfortable as possible, and this helps us keep the space extra clean for everyone. You can find us easily. Envelop SF is within The Midway at 900 Marin St, SF, CA. Enter from the Michigan St side of the building through the patio. Envelop SF is ADA compliant. If you have any accessibility needs, please feel free to reach out ahead of time and we’ll be happy to support. A cash bar for wine, beer, and tea is available. No outside drinks or food are allowed. No admittance into Envelop SF beyond 15 mins after start time. The main gate will be closed. Arriving late disrupts the listening. Please arrive before the event begins. Please avoid in's and out's during listening events to respect everyone's experience. Listening events are seated, dance parties are not. This event's seating map is below the description. We have a comfortable space waiting for you.﻿ Please no phones while listening, and please silence your ringer. We encourage you to take photos before and after the event. Please also be respectful of other people's experiences in the space during the event. All sales are final. There are no refunds or ticket exchanges.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://envelop.us/event/ESF20260908-frank-ocean-channel-orange-listen",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_envelop_sf",
                  "source_name": "Envelop SF",
                  "fetched_at": "2026-08-28T18:09:17.910007Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_envelop_sf|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_74ea69186c30",
              "venue_id": "venue_the_lost_church",
              "title": "Zach Bailey & J Camden",
              "event_time": "2026-09-08T19:30:00",
              "venue_name": "The Lost Church",
              "event_start": "2026-09-08T19:30:00",
              "event_date": "2026-09-08",
              "venue_address": "988 Columbus Ave, San Francisco, CA 94133",
              "description": "A live acoustic and indie-folk showcase featuring touring songwriter Zach Bailey performing alongside local act J Camden and friends.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://thelostchurch.my.salesforce-sites.com/ticket#/instances/a0FUh00000BhW1VMAV",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lost_church",
                  "source_name": "The Lost Church",
                  "fetched_at": "2026-08-28T20:03:22.982745Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_lost_church|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_375cab7fb048",
              "venue_id": "venue_exploratorium",
              "title": "Storytime Science for Kids: Space Is the Place",
              "event_time": "2026-09-08",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-08",
              "event_date": "2026-09-08",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Join us for Storytime Science and enjoy an engaging storybook read-aloud followed by a related activity geared toward children and their grown-ups. Come hear a story, get hands-on, and learn something new!",
              "event_types": [
                "workshop",
                "literary"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/storytime-science-kids-space-place-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-08",
              "run_id": "run_d76b7c3ece9a",
              "run_label": "Storytime Science for Kids: Space Is the Place, Aug 29 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_dd0847dc9dc9",
              "venue_id": "venue_exploratorium",
              "title": "Daytime Members-Only Hours",
              "event_time": "2026-09-08",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-08",
              "event_date": "2026-09-08",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Please consider joining us today ! Members are the backbone of our organization and help ensure the continuity of our mission to create inquiry-based experiences that transform learning worldwide. We can’t wait to see you at the museum.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/member-hours",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-08",
              "run_id": "run_e38dfc952011",
              "run_label": "Daytime Members-Only Hours, Aug 30 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_98fdd16f0c6b",
              "venue_id": "venue_bix",
              "title": "Jazz Duo",
              "event_time": "2026-09-08T19:00:00",
              "venue_name": "Bix",
              "event_start": "2026-09-08T19:00:00",
              "event_date": "2026-09-08",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Jazz Duo",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Never a cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-08-28T21:10:29.119399Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bix|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d2c26a2e7fb4",
              "venue_id": "venue_neck_of_the_woods",
              "title": "Karaoke Tuesday",
              "event_time": "Tue, Sep 8 Show: 9:00 pm",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-09-08T21:00:00",
              "event_date": "2026-09-08",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$0.00",
              "url": "https://www.neckofthewoodssf.com/tm-event/karaoke-tuesday-10/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_neck_of_the_woods",
                  "source_name": "Neck of the Woods",
                  "fetched_at": "2026-08-28T21:30:17.641164Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ad8080c3b698",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-09-08",
              "venue_name": "De Young",
              "event_start": "2026-09-08",
              "event_date": "2026-09-08",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-08",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0c3db28d310c",
              "venue_id": "venue_st_josephs_arts_society",
              "title": "September Mahjong Night",
              "event_time": "09/08/2026",
              "venue_name": "St Josephs Arts Society",
              "event_start": "2026-09-08",
              "event_date": "2026-09-08",
              "venue_address": "1401 Howard St, San Francisco, CA 94103",
              "description": "",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_st_josephs_arts_society",
                  "source_name": "St Josephs Arts Society",
                  "fetched_at": "2026-08-28T23:36:27.154990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_st_josephs_arts_society|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_864dd06b2291",
              "venue_id": "venue_rootstock_arts",
              "title": "Siddique Ahmed & Edrees Osman",
              "event_time": "Tue, 8 Sep 2026\n6:00 PM (PDT)",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-09-08T18:00:00",
              "event_date": "2026-09-08",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "RootStock Arts is hosting a Weekly Raga Concert + Jam Session at 5741 Telegraph Ave in Oakland . Running 6:00 PM to 9:00 PM on Tuesdays in September , this all-ages, alcohol-free community event features a two-set lineup each week. The 1st Set ($10+ sliding scale/donation) highlights a rotating featured act. September 8th features Siddique Ahmed & Edrees Osman Following the opening performance, the 2nd Set transitions into an Open, Raga-friendly Classical Jam Session , inviting musicians and classical music enthusiasts of all levels to participate and collaborate.",
              "event_types": [
                "live_music",
                "indian_classical"
              ],
              "price_info": "",
              "url": "https://www.viewcy.com/event/weekly_raga_concert__3",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-08-29T00:16:02.821734Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e695a79d7ffd",
              "venue_id": "venue_specs",
              "title": "Luis Salcedo & Nathan Bickart (Duo)",
              "event_time": "Tuesday, September 8, 2026 7:00 PM - 9:00 PM",
              "venue_name": "Specs' Twelve Adler Museum Cafe",
              "event_start": "2026-09-08T19:00:00",
              "event_date": "2026-09-08",
              "venue_address": "12 William Saroyan Pl, San Francisco, CA 94133",
              "description": "Lu and Nathan reunite for an evening of original compositions and cherished tunes from the jazz standard repertoire. Born and raised here in the Bay Area, Lu and Nathan have collaborated for more than a decade, most notably as part of LUMAMA, and have continued to grow their musical relationship even at a distance: Lu now lives in Brooklyn, whereas Nathan is based in Oakland. The duo will bring a joyous, buoyant, sensitive, playful and deeply-felt set of music to Specs, and hope that you can join us!\n\nhttps://www.luissalcedomusic.com/\nnathanbickart.com",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.specsbarsf.com/events/nathan-bickart-duo",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_specs",
                  "source_name": "Specs' Twelve Adler Museum Cafe",
                  "fetched_at": "2026-08-29T00:37:52.829608Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:46.749774Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_specs|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d481ae44bb2d",
              "venue_id": "venue_punch_line",
              "title": "COMEDY ALLSTARS",
              "event_time": "Sep 8, 2026 7:30 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-08T19:30:00",
              "event_date": "2026-09-08",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Enjoy a hilarious night of stand-up comedy featuring a stellar, curated lineup of favorite local and national professional comedians.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/comedy-allstars-san-francisco-california-09-08-2026/event/1C0064C9C21E632B",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bc8812c4929f",
              "venue_id": "venue_yoshis",
              "title": "MATT SCHOFIELD TRIO",
              "event_time": "September 8, 2026 - 8:00PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-08T20:00:00",
              "event_date": "2026-09-08",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "TAKE ADVANTAGE OF 25% OFF THIS SHOW. CODE:SUMMER25 OFFER VALID FOR ONLINE PURCHASES ONLY I OFFER EXPIRES MON, JUN 29 AT 11:59PM PST LIMITED DISCOUNTED TICKETS AVAILABLE",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$29 - $59",
              "url": "https://yoshis.com/events/buy-tickets/matt-schofield-trio-2/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c2e1bb7c11e6",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue Sep 8 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-08T19:00:00",
              "event_date": "2026-09-08",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "This weekly event at the Hotel Utah Saloon invites local musicians and bluegrass enthusiasts to gather and jam together [1.1.2]. It is a free, 21+ community session that celebrates the Bay Area's vibrant bluegrass scene.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690213?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-08-31T12:12:52.447528Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9ef806a6f568",
              "venue_id": "venue_brava_theater",
              "title": "American Reflections: Exuberance",
              "event_time": "September 8, 2026",
              "venue_name": "Brava Theater",
              "event_start": "2026-09-08",
              "event_date": "2026-09-08",
              "venue_address": "2781 24th St, San Francisco, CA 94110",
              "description": "ARTZenter Institute is a grant program in partnership with the Contemporary Music Players, encouraging the creation of new music that explores the power and grace of the traditional orchestral ensemble. The fund was created by Tony Magee, founder of The Lagunitas Brewing Company of Petaluma, CA, and is committed to creating chamber orchestra workshops, mentorship and performance opportunities for young composers nationwide. The Emerging Composer Completion Grant Program has grown into one of the nation’s largest and most ambitious vehicles in support of new work, with multiple calls-for-scores being announced annually.\n\nFeaturing the winning composers from ARTZenter’s round of completion grants from January 2026, we present world premiere performances of 4 new compositions for sinfonietta at Brava Theater.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://www.brava.org/all-events/artzenter-pe36r-6j2eg-bem6k-b6cyb-4cmlj-2eh3g-7layy",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brava_theater",
                  "source_name": "Brava Theater",
                  "fetched_at": "2026-08-31T12:29:43.593913Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brava_theater|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4ff58856a310",
              "venue_id": "venue_biscuits__blues",
              "title": "The West Coast Blues Revue",
              "event_time": "2026-09-08T18:30:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-09-08T18:30:00",
              "event_date": "2026-09-08",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "Hal Petcher leads a rotating lineup of top-tier Bay Area blues talent delivering raw, high-energy blues.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$15",
              "url": "https://biscuitsandblues.com",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-08-31T16:25:33.031111Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_5ea89883e672",
              "venue_id": "venue_bill_graham_civic",
              "title": "WAVE TO EARTH",
              "event_time": "September 8, 2026 8:15pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-09-08T20:15:00",
              "event_date": "2026-09-08",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "We strongly believe that if we do everything we can to treat everyone as we ourselves would wish to be treated, we can succeed in our efforts to “turn everyone on” to the magic of the live music experience. That said, everyone’s case is individual and each venue and show has its own unique challenge. We encourage you to reach out to us directly to purchase tickets and make requests for special accommodations or needs for any event at any venue we present. We will do our very best to accommodate you with an ease of service that will exceed all expectations.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Sold Out!",
              "url": "https://billgrahamcivic.com/events/wave-to-earth-260908",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bill_graham_civic",
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-08-31T17:26:11.597790Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-09-04T10:18:32.697885Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7eaecea3e355",
              "venue_id": "venue_tupelo",
              "title": "DJ Purple Karaoke",
              "event_time": "Tuesday September 8th 9:00PM - 1:00AM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-08T21:00:00",
              "event_date": "2026-09-08",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "DJ Purple is BACK! Since COVID imploded our world, we have gotten more calls wondering when Karaoke w/ DJ Purple was returning than anything else, and we sell a lot of ribs! Go get your vaccination shots, drink some tea with honey, and belt out your best songs with your friends. Fog machine standard.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_336fe1642aae",
              "venue_id": "venue_f8",
              "title": "INTERZONE: Darkwave Tuesdays",
              "event_time": "2026-09-08T21:00:00",
              "venue_name": "F8",
              "event_start": "2026-09-08T21:00:00",
              "event_date": "2026-09-08",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "FAIRE, FAE, & FOOLS: A Renfaire-inspired darkwave costume party featuring guest DJs Spells & Demonia (Club Infernum), host DJs Hex Embrace and Byter, and Tarot readings.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$5 (Free before 10:00 PM)",
              "url": "https://ra.co/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-09-02T10:39:00.610887Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_f8|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_776bae551024",
              "venue_id": "venue_the_saloon",
              "title": "GG Amos",
              "event_time": "September 8 @ 4:00 pm - 8:00 pm",
              "venue_name": "The Saloon",
              "event_start": "2026-09-08T16:00:00",
              "event_date": "2026-09-08",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "GG Amos brings her west coast blues sound to the Saloon, drawing on more than 35 years as a blues guitarist, vocalist, songwriter, and arranger. A riveting performer who has played everywhere from concert halls and festivals to roadhouses, wineries, and neighborhood bars, she blends blues, jazz, funk, Latin elements, and soul jazz into a...",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/gg-amos-11/2026-09-08/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:46.749774Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_saloon|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_1e2eb35f4df9",
              "venue_id": "venue_the_grove",
              "title": "Sami Stevens",
              "event_time": "September 8 @ 5:00 pm - 8:00 pm",
              "venue_name": "The Grove",
              "event_start": "2026-09-08T17:00:00",
              "event_date": "2026-09-08",
              "venue_address": "690 Mission St, San Francisco, CA 94105",
              "description": "Sami Stevens is a Brooklyn-based singer-songwriter and pianist appearing at The Grove, drawing on jazz, soul, folk, and indie rock influences to deliver intimate original music rooted in the tradition of classic American singer-songwriters of the 1960s and 70s. She released her debut solo album Morning on Sunnyside Records in 2023 and has toured extensively...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/sami-stevens-2/2026-09-08/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:46.749774Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_grove|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_36dd8de85ed5",
              "venue_id": "venue_comstock_saloon",
              "title": "Hal Bigler Band",
              "event_time": "September 8 @ 7:30 pm - 10:30 pm",
              "venue_name": "Comstock Saloon",
              "event_start": "2026-09-08T19:30:00",
              "event_date": "2026-09-08",
              "venue_address": "155 Columbus Ave, San Francisco, CA 94133",
              "description": "Hal Bigler Band brings high-energy traditional jazz and swing to Comstock Saloon every Tuesday from 7:30pm-10:30pm. Led by veteran upright bassist Hal Bigler, the rotating ensemble features leading Bay Area players including Cliff Myer on guitar, Bob Johns on piano, Mauro Pannitto on bass, Marty Brewer on drums, and Rick Brown on trombone, delivering hot...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/hal-bigler-band-2/2026-09-08/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:46.749774Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_comstock_saloon|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_832d2ef16aab",
              "venue_id": "venue_decodance_bar",
              "title": "Gaucho Jazz",
              "event_time": "September 8 @ 7:30 pm - 10:30 pm",
              "venue_name": "DecoDance Bar",
              "event_start": "2026-09-08T19:30:00",
              "event_date": "2026-09-08",
              "venue_address": "1160 Polk St, San Francisco, CA 94109",
              "description": "Step into DecoDance on a Thursday night and you’ll find Gaucho turning the Art Deco lounge into a Paris-meets-San-Francisco swing party. Their hot-club–inspired sound — acoustic guitars, bass, and horns weaving gypsy jazz, musette, and classic swing — pairs perfectly with the bar’s Great Gatsby mood and craft cocktails. Grab a booth under the moody...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/gaucho-jazz-2/2026-09-08/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:46.749774Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_decodance_bar|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_4a0cf0eb865c",
              "venue_id": "venue_local_edition",
              "title": "The Local Edition Jazz Orchestra",
              "event_time": "September 8 @ 8:00 pm - 11:00 pm",
              "venue_name": "Local Edition",
              "event_start": "2026-09-08T20:00:00",
              "event_date": "2026-09-08",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Live every Tuesday exclusively at Local Edition! The Local Edition Jazz Orchestra is a diverse group of long-time friends that have played alongside one another for years. The ensemble ranges from having as little as 8 to as many as 18 participants performing with occasional guest singers such as Billy Valentine, Bud E. Luv (aka Bobby Vickers), and Tom Scott.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/the-local-edition-jazz-orchestra-2/2026-09-08/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:46.749774Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-09-03T12:59:31.047351Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_e65992349b28",
              "venue_id": "venue_paris_75",
              "title": "The North Beach Django",
              "event_time": "September 8 @ 8:00 pm - 11:00 pm",
              "venue_name": "Paris 75",
              "event_start": "2026-09-08T20:00:00",
              "event_date": "2026-09-08",
              "venue_address": "515 Broadway, San Francisco, CA 94133",
              "description": "Transport yourself to a 1930s sidewalk café in Montmartre as North Beach Django takes residency at Paris 75 every Tuesday. Located on the edge of the historic Broadway corridor, this charming French lounge provides the perfect backdrop for the \"Hot Club\" sound. With its selection of authentic French cocktails and wines, the venue feels less...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/the-north-beach-django-jazz-trio-8-2/2026-09-08/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:46.749774Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_paris_75|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_55d4b1db246a",
              "venue_id": "venue_the_saloon",
              "title": "Lucky Strike",
              "event_time": "September 8 @ 9:30 pm - 1:30 am",
              "venue_name": "The Saloon",
              "event_start": "2026-09-08T21:30:00",
              "event_date": "2026-09-08",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "Lucky Strike, led by guitarist and bandleader Joe Lococo, appears at The Saloon in North Beach with a set that draws on blues, jazz, and rock & roll. The band features Richard McDonough on drums and vocals, Derek Evans on vocals, Joe Lococo on guitar and vocals. The group reflects Lococo’s long experience in the...",
              "event_types": [
                "live_music",
                "jazz",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/lucky-strike-5/2026-09-08/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:46.749774Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_saloon|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_9154498c1871",
              "venue_id": "venue_madrone_art_bar",
              "title": "THE HUNTER & THE POOL 💍 🥂",
              "event_time": "September 8 @ 7:00 pm - 1:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-08T19:00:00",
              "event_date": "2026-09-08",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "A party for Claire and Patrick 🥰 7PM - Late",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/the-hunter-the-pool-%f0%9f%92%8d-%f0%9f%a5%82/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9cf635d7477e",
              "venue_id": "venue_piedmont_piano_company",
              "title": "Emily Day & Cosmo Alleycats",
              "event_time": "2026-09-08T19:00:00",
              "venue_name": "Piedmont Piano Co",
              "event_start": "2026-09-08T19:00:00",
              "event_date": "2026-09-08",
              "venue_address": "1728 San Pablo Ave, Oakland, CA 94612",
              "description": "Emily Day & Cosmo Alleycats Old Sweet Songs. The refreshingly old-fashioned Cosmo Alleycats present \"Old Sweet Songs\", a show celebrating enduring melodies, a bygone style of songwriting, and original songs that contend for placement in the Great American Canon. The group, led by jazz vocalist Emily Day, endears audiences with their inviting musicality and playful improvisation.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "General Admission: $25 in advance / $30 at the door",
              "url": "https://piedmontpiano.com/calendar/2026/9/8/emily-day-cosmo-alleycats",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_piano_company",
                  "source_name": "Piedmont Piano Co",
                  "fetched_at": "2026-09-03T10:22:09.546608Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_piedmont_piano_company|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_6b04ef9ddc1f",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Happy Hour",
              "event_time": "8 September 2026",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-08",
              "event_date": "2026-09-08",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Take advantage of Etcetera Wine Bar's happy hour specials on select drinks and light fare. It offers a relaxed neighborhood setting to unwind after work or kick off an evening of live music.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-09-03T13:50:21.930604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c62f5c877578",
              "venue_id": "venue_caravan_lounge",
              "title": "Karaoke with Ronnie Roach",
              "event_time": "09/08/2026",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-09-08",
              "event_date": "2026-09-08",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "Welcome to The Caravan Lounge THE CARAVAN LOUNGE is a friendly, owner-operated bar located in the heart of downtown San Jose. As well as being one of San Jose’s oldest live music venues, the Caravan provides other fun activities such as karaoke, comedy, burlesque, pool table, and DJ nights. The Caravan is also extremely affordable for those trying to stretch a budget. And let’s not forget the music! All the shows at the Caravan are FREE! Open 7 days a week 2pm – Close “Aside from the obvious draw of affordable libations poured by heavy-handed barkeeps, The Caravan sets itself apart from other no-frills bars as the place to go to see up-and-coming bands. The bar has hosted plenty of local bands’ first shows, and regularly features smaller touring acts. If you’re a music fan always on the lookout for your new favorite group, make sure to pay attention to who is coming to Caravan.” -Metro FEATURED VIDEOS – Go to our YouTube Channel by clicking here to see more… SEPTEMBER 2026 TUES. SEPT 1st- Karaoke with Ronnie Roach WED. SEPT 2nd – The Caravan Lounge Comedy Show hosted by Chelsea Costanza THURS. SEPT 3rd – SWEAT with DJ SNAQ FRI. SEPT 4th – Rebelskamp, Magick Blues Band, TBA SAT. SEPT 5th – Skool Of Sharks TUES. SEPT 8th- Karaoke with Ronnie Roach WED. SEPT 9th – The Caravan Lounge Comedy Show Hosted by Nyoki THURS. SEPT 10th – Shrine Goth DJ Night with Hex Embrace, C_Death, and Owen FRI. SEPT 11th – Circus Of Sin 10 Year Sinnaversary! Hosted By Some Guy SAT. SEPT. 12th – CaveFest II We Love You Curtis Castro! Abysmal Piss, Ominous Ruin, Lost To The Void TUES. SEPT 15th – Karaoke with Ronnie Roach WED. SEPT 16th -The Caravan Lounge Comedy Show Hosted by Ato Walker THURS. SEPT 17th – TBA FRI. SEPT 18th – TBA SAT. SEPT 19th – Facekicker, American Standard, 12 Steps To Nothing TUES. SEPT 22nd – Karaoke with Ronnie Roach WED. SEPT 23rd- The Caravan Lounge Comedy Show hosted by Matt Kennedy THURS. SEPT 24th – Sweethearts DJ Night FRI. SEPT 25th – Ding Mao, Diamantide, Clou",
              "event_types": [
                "community"
              ],
              "price_info": "FREE",
              "url": "http://s172518151.onlinehome.us/caravan/site/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-09-03T14:20:40.572990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fdcaaa0073da",
              "venue_id": "venue_pono_hawaiian",
              "title": "Santa Cruz Women's Network Meetup",
              "event_time": "2026-09-08T11:30:00",
              "venue_name": "Pono Hawaiian Grill",
              "event_start": "2026-09-08T11:30:00",
              "event_date": "2026-09-08",
              "venue_address": "120 Union St, Santa Cruz, CA 95060",
              "description": "Monthly networking and community meetup hosted by the Santa Cruz Women's Network at Pono Hawaiian Grill.",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "https://www.eventbrite.com/e/santa-cruz-womens-network-monthly-gathering-tickets-3009063385527",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pono_hawaiian",
                  "source_name": "Pono Hawaiian Grill",
                  "fetched_at": "2026-09-03T14:31:35.285310Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_pono_hawaiian|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_3d6cc9907f3a",
              "venue_id": "venue_hillside_club",
              "title": "Hoot! Community Music Night",
              "event_time": "Sep 08, 2026, 7:00 PM – 10:00 PM",
              "venue_name": "Hillside Club",
              "event_start": "2026-09-08T19:00:00",
              "event_date": "2026-09-08",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "Old style hoottenany and open mic supporting performers and songwriters",
              "event_types": [
                "live_music",
                "folk",
                "community"
              ],
              "price_info": "",
              "url": "http://www.hootexclamationpoint.com",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-09-04T10:10:10.864332Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hillside_club|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_944201e5f952",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-09-08",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-08",
              "event_date": "2026-09-08",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "Music by Marc Shaiman & Thomas Meehan. Lyrics by Mark Shaiman & Scott Wittman. A 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to change her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "On Stage Now",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-09-04T10:15:07.852694Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-08",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e419e42a255f",
              "venue_id": "venue_roxy",
              "title": "Union County",
              "event_time": "Tuesday, September 8, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-09-08",
              "event_date": "2026-09-08",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "Poulter and Centineo blend seamlessly with a supporting cast composed predominantly of non-professional actors as they share their actual experiences, pain, and optimism as they, themselves, navigate the program. Ohio-born filmmaker Adam Meeks creates a film imbued with realism for an honest, compassionate portrait of a battle being fought across America and the solidarity that flowers on its front lines.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/union-county/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-09-04T10:24:35.292955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-09-08",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-09-09": {
          "date": "2026-09-09",
          "updated_at": "2026-09-04T10:39:45.106972Z",
          "events": [
            {
              "event_id": "evt_8fac6c5f34af",
              "venue_id": "venue_chase_center",
              "title": "Weezer with The Shins & Silversun",
              "event_time": "2026-09-09T19:00:00",
              "venue_name": "Chase Center",
              "event_start": "2026-09-09T19:00:00",
              "event_date": "2026-09-09",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "Weezer brings their major North American tour, Weezer: The Gathering, to Chase Center with special guests The Shins and Silversun Pickups.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Tickets from $79",
              "url": "https://www.chasecenter.com/events/weezer-20260909",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-04-22T14:17:45.962155Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_chase_center|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a7f6525d0f5c",
              "venue_id": "venue_greek_theatre",
              "title": "Liz Phair",
              "event_time": "09/09/2026 6:30pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-09-09T18:30:00",
              "event_date": "2026-09-09",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "Sophie was only 20 when she put out Clean, her arresting studio debut, which became one of the most beloved coming-of-age albums of the 2010s. Its bigger-sounding followup, color theory, brought more acclaim and continued to win her fans far outside of the lo-fi bedroom pop scene she cut her teeth playing in. But with all the highs came inevitable lows. Navigating young adulthood is often spiritually draining, to say nothing of the artless administrative chaos associated with being a popular full-time musician. And yet she never stops writing, consistently transforming bouts of instability into emotionally generous music. The latest culmination of that process is Sometimes, Forever, which sees Sophie once again tapping into the turn-of-the-millenium sensibilities she’s known for. This time, though, she advances her self-made sonic world beyond the present and into the future with experimental-minded production, an expanded moodboard of vintage touchstones, and some of her most sophisticated songwriting to date.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thegreekberkeley.com/events/liz-phair-sleater-kinney-260909",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-05-01T09:38:25.541444Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-09-04T10:18:32.697885Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_greek_theatre|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ed3b51ee37c8",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Slayyyter",
              "event_time": "September 9, 2026 8:00pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-09-09T20:00:00",
              "event_date": "2026-09-09",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "From her breakthrough 2019 self-titled mixtape to her 2021 debut Troubled Paradise and 2023’s STARFUCKER , SLAYYYTER proved herself to be one of the great shape-shifters of our time, taking the past, present, and future of pop and twisting it to her will. Early successes — “Daddy AF” went from viral hit making SLAYYYTER’s name online to soundtracking a key scene in the Oscar Best Picture winner Anora — fueled accolades from publications including Billboard , Paper , Variety , Rolling Stone , Pitchfork, and more, while earning SLAYYYTER opening slots with forebears like Tove Lo and Kesha. But even with all that, SLAYYYTER decided something wasn’t quite right. She decided to become who she was all along, underneath it all: the WOR$T GIRL IN AMERICA .",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "PRESALE 5/7",
              "url": "https://thefoxoakland.com/events/slayyyter-260909",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-05-06T10:46:47.654446Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-09-04T10:18:32.697885Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_dc28839c8e52",
              "venue_id": "venue_the_warfield",
              "title": "BLOOD ORANGE",
              "event_time": "Wed, Sep 9, 2026 8:00 PM",
              "venue_name": "The Warfield",
              "event_start": "2026-09-09T20:00:00",
              "event_date": "2026-09-09",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "Producer, multi-instrumentalist, composer, director and vocalist, London born polymath Devonté Hynes is among the most influential voices in music today. Raised in England by Guyanese and Sierra Leonean immigrant parents, Hynes started out as a teenage punk in the UK band Test Icicles before releasing two orchestral acoustic pop records as Lightspeed Champion. In 2011, he released Coastal Grooves, the first so far of five solo albums under the moniker Blood Orange. His 2016 album, Freetown Sound , was released to critical acclaim, and saw Hynes defined as one of the foremost musical voices of his time, receiving comparisons to the likes of Kendrick Lamar and D’Angelo for his own searing and soothing personal document of life as a black man in America. His 2018 album, Negro Swan , was released to equally rapturous response, exploring elements of black depression and identity. His most recent release, the 2019 mixtape Angel's Pulse, described by Hynes as an epilogue to Negro Swan, further explores and builds upon those themes. He has collaborated with Solange Knowles, fka twigs, A$AP Rocky, Puff Daddy, Mariah Carey Janet Mock, and many more, and was recently one of four artists invited to the Kennedy Center to perform alongside Philip Glass. In addition to his production work, he has sold out headlining tours around the world, directed and edited 7 Blood Orange music videos as well as one for Beck's 2019 \"Uneventful Days\", and composed the scores for the films “Palo Alto,” directed by Gia Coppola, and \"Queen & Slim\", directed by Melina Matsoukas.",
              "event_types": [
                "live_music"
              ],
              "price_info": "COMING SOON",
              "url": "https://www.thewarfieldtheatre.com/events/detail/1462584",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-05-29T06:46:37.380615Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_warfield|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fde6c1968135",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "The Kofy Brown Band",
              "event_time": "Wednesday September 9 2026 8:00PM doors -- music at 8:30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-09T20:00:00",
              "event_date": "2026-09-09",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Wednesday September 9 2026\n  8:00PM doors -- music at 8:30PM\n  •••  21 AND OVER\n$15\n$19.81 in advance [15 face value + 4.81 service fee]\nThe Kofy Brown Band \n hip-hop soul\nSkip The Needle \n rock n' roll-funk\nBlack Gold Sun \n punk",
              "event_types": [],
              "price_info": "$15",
              "url": "http://www.bottomofthehill.com/20260909.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-06-04T11:24:06.802385Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-10T10:33:42.275715Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_571730d68938",
              "venue_id": "venue_the_independent",
              "title": "KEVIN ATWATER",
              "event_time": "9.9 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-09T20:00:00",
              "event_date": "2026-09-09",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List Blush Red Tour Kevin Atwater Ruby Plume Wed, Sep 9 Doors: 7:30 pm | Show: 8:00 pm All Ages Please note - there is a delivery delay set for 2 weeks prior to show. Kevin Atwater VIP Meet & Greet Experience · One GA Concert Ticket · Meet & Greet with Kevin Atwater · Individual Photo with Kevin Atwater · Pre-Show Q&A with Kevin Atwater · One Autographed Commemorative VIP Laminate · Early Entry · Early Access Merchandise Shopping (where available) Buy Tickets Share + Google Calendar Related Events Clipse Aug 6 Sold Out! GRiZ Aug 7 Sold Out! Artists Kevin Atwater Kevin Atwater is a Chicago-born singer-songwriter based in New York City. Kevin started posting his music online in early 2022 and quickly built a fanbase drawn to his uniquely honest and intimate songwriting. A video of him performing his single “star tripping” was posted to TikTok in July 2022 and went viral, accumulating over 2.1 million views. Kevin continued posting his demos in full, each receiving at minimum hundreds of thousands of views and gaining the attention and support of notable artists like MUNA, Lizzy McAlpine, and Noah Kahan.Kevin released his debut EP Downers Grove on April 26, 2023, which has since garnered over 15 million streams across platforms. His follow-up single “why did you invite me to your wedding” gained significant demand from his audience on social media after several videos on TikTok reached over 3 million views collectively and has streamed over half a million times across platforms. During this time, he also spent time on the road supporting Jeremy Zucker, Leith Ross, and Searows on their tours. In 2025, Kevin released his debut album Achilles , which garnered more than 10 million streams across all DSPs, sold out his debut headline North American tour, and premiered a short film inspired by his viral song “why did you invite me to your wedding” in New York City. 2026 is poised to be a breakout year for Kevin as he works on his second full-length project, Blu",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/kevin-atwater-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-06-23T10:46:17.531604Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-25T10:40:49.247198Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-09-04T10:18:32.697885Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_019866295985",
              "venue_id": "venue_the_ritz",
              "title": "Hail the Sun, A Lot Like Birds",
              "event_time": "2026-09-09T18:00:23-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-09-09T18:00:23",
              "event_date": "2026-09-09",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "HAIL THE SUN\nA LOT LIKE BIRDS\nBLIGHT TOWN\nMURALS\n\n \n\nWEDNESDAY SEPTEMBER 9, 2026",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$32.50 Advance – $35 Day-of-Show",
              "url": "https://www.ticketweb.com/event/hail-the-sun-a-lot-the-ritz-tickets/14208874",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-06-28T11:02:01.864441Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-06T11:10:01.105806Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_ritz|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2e02a8484226",
              "venue_id": "venue_ivy_room",
              "title": "Scott Amendola’s Floating Parade",
              "event_time": "Wednesday Sep 9 7:00 PM",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-09T19:00:00",
              "event_date": "2026-09-09",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Scott Amendola's Floating Parade @ The Ivy Room! Nate Brenner/Robert Lopez/Mark Clifford/Ryan Schaeffer",
              "event_types": [
                "live_music",
                "jazz",
                "experimental"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/190547",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-07-31T12:32:32.572739Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-02T10:15:07.580640Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a58e5909c132",
              "venue_id": "venue_great_american_music_hall",
              "title": "Eihwar",
              "event_time": "sep 9 8pm",
              "venue_name": "Great American",
              "event_start": "2026-09-09T20:00:00",
              "event_date": "2026-09-09",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Goldenvoice Presents… | Frayle | with Frayle",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$35/$40",
              "url": "https://wl.seetickets.us/event/eihwar/684496?afflky=GreatAmericanMusicHall",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-08-16T10:06:47.988032Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_3c9eae546ab1",
              "venue_id": "venue_rickshaw_stop",
              "title": "Kels",
              "event_time": "sep 9 8pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-09-09T20:00:00",
              "event_date": "2026-09-09",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Supporting Talent: ELLA MADDUX",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$26/$30",
              "url": "https://wl.eventim.us/event/kels/701924?afflky=POPSCENEPresents",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-09-02T10:05:07.555428Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_f06ab510142a",
              "venue_id": "venue_dna_lounge",
              "title": "16 VOLT + ACUMEN NATION",
              "event_time": "2026/09/09 Wed: Sep 9 (7pm)",
              "venue_name": "DNA Lounge",
              "event_start": "2026-09-09T19:00:00",
              "event_date": "2026-09-09",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "16 Volt + Acumen Nation!\n\tIndustrial, Cold Wave! As a celebration of the 30-Year\n\tanniversary of 16 Volt's \"Let Down Crush\" and Acumen's\n\t\"Territory = Universe\" these Cold Wave icons will be\n\tperforming special album-focused sets in a rare return to the Bay\n\tArea. 16volt's founder, songwriter, lead vocalist, programmer, and\n\trhythm guitarist, Eric Powell, signed his first record deal in 1991\n\tat a very young age and subsequently released three albums:\n\tincluding the legendary LetDownCrush in 1996, to widespread acclaim\n\tand notoriety.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.dnalounge.com/calendar/2026/09-09d.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dna_lounge",
                  "source_name": "DNA Lounge",
                  "fetched_at": "2026-08-17T10:27:55.962994Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2727d9e5e6f1",
              "venue_id": "venue_tupelo",
              "title": "Jose Simione",
              "event_time": "Wednesday September 9th 9:00PM - 1:00AM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-09T21:00:00",
              "event_date": "2026-09-09",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "Experience the uniquely Jose sound as the legendary Jose Simioni takes the stage at Tupelo. A North Beach fixture for over two decades, Simioni is a self-taught master whose playing defies easy categorization. He eschews traditional licks for a deeply personal, improvisational style that makes his guitar sing—moving seamlessly from floating, lazy melodies to a...",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Local SF favorites rip it up with some classic rock numbers.",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-17T11:00:47.077832Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-08-30T10:45:25.297409Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ac249b852b85",
              "venue_id": "venue_the_riptide",
              "title": "Bar Trivia with @SFTrivia",
              "event_time": "Wednesday, September 9 7:00 PM - 9:00 PM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-09T19:00:00",
              "event_date": "2026-09-09",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "Wednesday nights we're here to help reinforce how smart you are or remind you otherwise. Come in and test your knowledge with the folks @SFTrivia",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ca9b3543b54c",
              "venue_id": "venue_catalyst_sc",
              "title": "Live in the Atrium: PawPaw Rod: Picture Day Tour",
              "event_time": "Sep 09, 2026 Doors: 7 pm Show: 8 pm",
              "venue_name": "The Catalyst",
              "event_start": "2026-09-09T19:00:00",
              "event_date": "2026-09-09",
              "venue_address": "1011 Pacific Ave, Santa Cruz, CA 95060",
              "description": "",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$34.12 to $121.30",
              "url": "https://catalystclub.com/event/live-in-the-atrium-pawpaw-rod-picture-day-tour/the-catalyst-atrium/santa-cruz-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_catalyst_sc",
                  "source_name": "The Catalyst",
                  "fetched_at": "2026-08-21T16:29:43.952279Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_catalyst_sc|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f5f33e6a0e32",
              "venue_id": "venue_david_brower_center",
              "title": "Listening With",
              "event_time": "9/09/2026 7:30 PM",
              "venue_name": "David Brower Center",
              "event_start": "2026-09-09T19:30:00",
              "event_date": "2026-09-09",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "How does one listen with rather than listen to? And how might listening with allow the listener to more fruitfully conceptualize climate change? On Wednesday, September 9, 2026, Other Minds welcomes musician, anthropologist, and philosopher of sound Marina Peterson to discuss this question at the Goldman Theater, David Brower Center.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "Paid (ticketed)",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23245",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-21T21:20:53.694330Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-08-29T00:08:40.517051Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_61bea1b40985",
              "venue_id": "venue_mabuhay_gardens",
              "title": "BANG THE BAY PRESENTS",
              "event_time": "2026-09-09",
              "venue_name": "The Mab",
              "event_start": "2026-09-09",
              "event_date": "2026-09-09",
              "venue_address": "443 Broadway, San Francisco, CA 94133",
              "description": "Bang The Bay returns to Mabuhay Gardens for its monthly Every Second Wednesday showcase. Lineup, times, and ticket details are coming soon.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mabuhay_gardens",
                  "source_name": "The Mab",
                  "fetched_at": "2026-08-22T11:20:57.510347Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mabuhay_gardens|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_00867ad3b105",
              "venue_id": "venue_crepe_place",
              "title": "Death and Saxes Jazz Band",
              "event_time": "2026-09-09",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-09T20:00:00",
              "event_date": "2026-09-09",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "FREE",
              "url": "https://thecrepeplace.com/shows-list/death-saxes-jazz-band-thursday-april-9-from-530-to-730pm-free-show-on-the-garden-stage",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3d2860407d81",
              "venue_id": "venue_verdi_club",
              "title": "Scuff Queer Line Dancing & Two-Stepping",
              "event_time": "2026-09-09T20:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-09-09T20:00:00",
              "event_date": "2026-09-09",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.verdiclub.net/events-calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-08-22T14:55:24.428239Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_verdi_club|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_84dbe95ba24e",
              "venue_id": "venue_crows_nest_sc",
              "title": "MATT MASIH",
              "event_time": "Wednesday September 9th 07:00 PM",
              "venue_name": "The Crow's Nest",
              "event_start": "2026-09-09T19:00:00",
              "event_date": "2026-09-09",
              "venue_address": "2218 East Cliff Dr, Santa Cruz, CA 95062",
              "description": "Wednesday September 9th Funk, soul, groove Starts at 07:00 PM",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$3 cover",
              "url": "https://www.facebook.com/mattmasihmusic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crows_nest_sc",
                  "source_name": "The Crow's Nest",
                  "fetched_at": "2026-08-22T15:19:13.909618Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crows_nest_sc|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_35c0e8618529",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Alice for Wonderland",
              "event_time": "Sep 9, 2026 @ 7:30pm",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-09T19:30:00",
              "event_date": "2026-09-09",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "| Performances: Sept. 8-13 |  \n \n“Be Our Guest” at Disney’s BEAUTY AND THE BEAST, Disney’s first North American touring production of the beloved musical in over 25 years.\nThis enchanting and timeless…",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sanjosetheaters.org/event/78443612-20260909193000",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "San Jose CPA",
                  "fetched_at": "2026-08-28T18:46:14.894140Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-09",
              "run_id": "run_304a2c902844",
              "run_label": "Alice for Wonderland, Aug 22 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_8d8ac2233d26",
              "venue_id": "venue_scpl_downtown",
              "title": "Mobile Health Clinic",
              "event_time": "September 09 2026 9:00am - 3:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-09T09:00:00",
              "event_date": "2026-09-09",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Dignity Mobile Wellness Clinic and Santa Cruz Public Libraries are partnering to offer services that support the health of patrons with weekly Wednesday visits to the Scotts Valley branch library.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15429086",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_275f4e54a414",
              "venue_id": "venue_scpl_downtown",
              "title": "Homeless Garden Project Open Office Hours",
              "event_time": "September 09 2026 10:00am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-09T10:00:00",
              "event_date": "2026-09-09",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "The Homeless Garden Project (HGP) open office hours provides people experiencing homelessness the opportunity to learn more about HGP services and programs.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15744440",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8c70e5469563",
              "venue_id": "venue_scpl_downtown",
              "title": "Cyber-Seniors Digital Literacy Series",
              "event_time": "September 09 2026 10:30am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-09T10:30:00",
              "event_date": "2026-09-09",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "A 12 week series on Wednesdays from 10:30AM-12PM that introduces foundational digital literacy concepts and teaches useful digital skills.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17058224",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_01b956d8c2fc",
              "venue_id": "venue_scpl_downtown",
              "title": "Preschool Storytime",
              "event_time": "September 09 2026 10:30am - 11:00am",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-09T10:30:00",
              "event_date": "2026-09-09",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Come join us for stories, songs, and lots of fun for toddlers, preschoolers and their caregivers in our beautiful Boulder Creek Library Branch every Wednesday at 11am.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17194830",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_59998ed4c9ff",
              "venue_id": "venue_scpl_downtown",
              "title": "Creativity Lab",
              "event_time": "September 09 2026 1:00pm - 3:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-09T13:00:00",
              "event_date": "2026-09-09",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Creativity time for teens and tweens at the library!",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17083076",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3ad6e08e0c0c",
              "venue_id": "venue_scpl_downtown",
              "title": "Game Zone @ Scotts Valley",
              "event_time": "September 09 2026 1:00pm - 3:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-09T13:00:00",
              "event_date": "2026-09-09",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Support the Scotts Valley Library by joining the Friends group! We meet monthly to fundraise and advocate for our branch. New members are welcome! Contact scottsvalley@friendsofsantacruzlibraries.org.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17142348",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a46e01daaae2",
              "venue_id": "venue_scpl_downtown",
              "title": "Community Poetry Circle With Magdalena Montagne",
              "event_time": "September 09 2026 2:00pm - 4:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-09T14:00:00",
              "event_date": "2026-09-09",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Join the circle and write a poem in a supportive and creative environment.",
              "event_types": [
                "literary",
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15538636",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b8031a43a51e",
              "venue_id": "venue_scpl_downtown",
              "title": "In-person Tech Help @ Capitola",
              "event_time": "September 09 2026 2:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-09T14:00:00",
              "event_date": "2026-09-09",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Are you stuck with a technology question? You can make a free appointment with a tech savvy library staff member!",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16618999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ab30d588f342",
              "venue_id": "venue_scpl_downtown",
              "title": "SAGA for Teens @ Felton",
              "event_time": "September 09 2026 3:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-09T15:00:00",
              "event_date": "2026-09-09",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Sexuality and Gender Alliance (SAGA) creates a welcoming, safe, and inclusive space for teens of all gender identities and sexual orientations. Enjoy activities, snacks and meet new friends & allies!",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/14899837",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0f4d20cd5f2c",
              "venue_id": "venue_scpl_downtown",
              "title": "R.E.A.D.: Reach Every Amazing Detail @ Branciforte",
              "event_time": "September 09 2026 3:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-09T15:00:00",
              "event_date": "2026-09-09",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "R.E.A.D. is one-on-one reading comprehension instruction for grades 1-12. R.E.A.D. ofrece instrucción individual de comprensión lectora para los grados 1 a 12.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17175569",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ade0653ff745",
              "venue_id": "venue_scpl_downtown",
              "title": "R.E.A.D. Program",
              "event_time": "September 09 2026 3:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-09T15:00:00",
              "event_date": "2026-09-09",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "R.E.A.D. is one-on-one reading comprehension instruction for grades 1-12. By appointment only. Please, no drop-ins! To make an appointment, call 831-427-7713.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17175974",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d2b3a9169a09",
              "venue_id": "venue_scpl_downtown",
              "title": "Make & Explore @ Garfield Park",
              "event_time": "September 09 2026 3:00pm - 4:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-09T15:00:00",
              "event_date": "2026-09-09",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Every week we will have a new project idea for you to build or explore.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17194954",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1850024300f8",
              "venue_id": "venue_scpl_downtown",
              "title": "Afterschool STEAM @ Aptos",
              "event_time": "September 09 2026 3:30pm - 5:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-09T15:30:00",
              "event_date": "2026-09-09",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Learn how to craft, build, and survive in the world of Minecraft.edu. Ages 8 to 18",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16251594",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_be787b7a6f3c",
              "venue_id": "venue_scpl_downtown",
              "title": "Tales to Tails at Downtown",
              "event_time": "September 09 2026 4:00pm - 5:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-09T16:00:00",
              "event_date": "2026-09-09",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Practice reading to a trained therapy dog! Registration is required.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16935578",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_75941225d71f",
              "venue_id": "venue_amoeba_music_sf",
              "title": "Almost Monday",
              "event_time": "Wednesday September 9th 5pm",
              "venue_name": "Amoeba Music SF",
              "event_start": "2026-09-09T17:00:00",
              "event_date": "2026-09-09",
              "venue_address": "1855 Haight St, San Francisco, CA 94117",
              "description": "Almost Monday celebrates their new album, THANK GOD IT’S ALMOST MONDAY (out 9/11 via Hollywood Records) with a stripped-down live set and album signing at Amoeba Hollywood, Wednesday, September 9th at 5pm!\n\n \n\nShow is free/all-ages. To attend the post-performance signing, pre-purchase THANK GOD IT’S ALMOST MONDAY on limited sky-blue vinyl, in-store at Amoeba Hollywood. \n\n \n\nDetails:\n\n- Pre-purchase THANK GOD IT’S ALMOST MONDAY vinyl LP in-store at Amoeba Hollywood to receive a hard ticket to attend the signing. Pre-purchased LPs will be ready for pickup on event day by showing ticket with attached Amoeba store receipt.\n\n- Limit 1 LP + signing ticket per person.\n\n- Almost Monday will be signing the new album only. No outside or additional items please.\n\n- Space is limited.\n\n \n\nAlmost Monday will be playing at The Belasco on October 20th -- get your tickets here.  Full tour dates here.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://www.amoeba.com/live-shows/upcoming/detail-3156/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_amoeba_music",
                  "source_name": "Amoeba Music",
                  "fetched_at": "2026-08-22T21:35:34.283915Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_amoeba_music_sf",
                  "source_name": "Amoeba Music SF",
                  "fetched_at": "2026-08-26T12:11:02.744781Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_amoeba_music_sf|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_685907876fc3",
              "venue_id": "venue_stookeys_blue_room",
              "title": "Jazz Jam with Alex So",
              "event_time": "Wed, Sep 09 at 8-11pm",
              "venue_name": "Stookey's Blue Room",
              "event_start": "2026-09-09T20:00:00",
              "event_date": "2026-09-09",
              "venue_address": "1523 Sutter St, San Francisco, CA 94109",
              "description": "This is a drop in jazz jam session, led by rotating musicians. Come catch the next generation of jazz cats and be transported back in time to the 1920’s.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No Cover",
              "url": "https://www.stookeysblueroom.com/event-details/jazz-jam-session-hosted-by-saxophonist-alex-so",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stookeys_blue_room",
                  "source_name": "Stookey's Blue Room",
                  "fetched_at": "2026-08-24T10:30:15.157985Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-08-30T10:45:25.297409Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stookeys_blue_room|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f46781bc1425",
              "venue_id": "venue_the_fireside",
              "title": "Wednesday Open Mic Night",
              "event_time": "SEP 9 2026",
              "venue_name": "The Fireside",
              "event_start": "2026-09-09",
              "event_date": "2026-09-09",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "The Fireside Lounge sits in Alameda’s West End, in the stretch of Webster Street that has a bunch of small restaurants, cafes, and bars clustered together. Inside, it feels like a laid‑back neighborhood bar that also happens to host a lot of events. There is a real fireplace that people tend to gravitate toward on cooler nights, and the main bar area is anchored by an old art deco barback. more...",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.thefiresidelounge.com/#!/e/open-mic-night",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-08-24T11:04:43.394724Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fireside|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_01ab87ab7e63",
              "venue_id": "venue_bookshop_santa_cruz",
              "title": "LAURIE R. KING, THOSE WHO ARE GONE",
              "event_time": "Wed, 9/9/2026 7:00pm - 8:00pm",
              "venue_name": "Bookshop Santa Cruz",
              "event_start": "2026-09-09T19:00:00",
              "event_date": "2026-09-09",
              "venue_address": "1520 Pacific Ave, Santa Cruz, CA 95060",
              "description": "FREE IN-STORE EVENT: Bookshop welcomes beloved local writer Laurie R. King (New York Times bestselling author of the Mary Russell and Sherlock Holmes series) for an event celebrating her new book T...",
              "event_types": [
                "literary"
              ],
              "price_info": "",
              "url": "https://bookshopsantacruz.com/those-who-are-gone",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bookshop_santa_cruz",
                  "source_name": "Bookshop Santa Cruz",
                  "fetched_at": "2026-08-27T22:11:24.045604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bookshop_santa_cruz|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0e14c48a937c",
              "venue_id": "venue_the_freight__salvage",
              "title": "Rumbo Tumba",
              "event_time": "2026-09-09T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-09T19:00:00",
              "event_date": "2026-09-09",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "ELECTRO-ACOUSTIC LATIN",
              "event_types": [
                "live_music",
                "latin_world",
                "experimental"
              ],
              "price_info": "TICKETS SOLD BY CO-PRESENTER",
              "url": "https://tickets.worldclassmusic.live/events/wcml/2212328",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_360914f6ef60",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Block Printing Workshop",
              "event_time": "2026-09-09 6:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-09-09T18:00:00",
              "event_date": "2026-09-09",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "Block printing workshop for community activists. We'll have tools, paper, tinta, and small blocks, and start off with a conversation about printmaking as cultural and political expression. Second Wednesdays in March, April, and May. Suggested donation $20 for artist and book store.\n\nClase de grabado para activistas de la comunidad / Tendremos herramientas, papel, tinta, y pequeños bloques, y empezamos con una conversación sobre el grabado como expresión cultural y política. Segundo Miercoles en marzo, abril, y mayo. Donación sugerida $20 para artista y librería.\n\nFernando Martí (he/him) is an artist, poet, community architect and housing activist, originally from Ecuador, based in San Francisco, Ramaytush Ohlone land.\n\nFernando Martí (el) es un artista, poeta, arquitecto comunitario y activista de vivienda, originario del Ecuador, y basado en San Francisco, tierra Ramaytush Ohlone.",
              "event_types": [
                "workshop",
                "art"
              ],
              "price_info": "$20",
              "url": "https://medicinefornightmares.com/events/drop-in-block-printing-workshop-with-fernando-marti-4",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-08-28T14:05:33.197491Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_697a273e306f",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-09-09",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-09-09",
              "event_date": "2026-09-09",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-09-09",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_329924ebcb1e",
              "venue_id": "venue_dawn_club",
              "title": "ARTHUR KHU",
              "event_time": "Wednesday, September 9, 2026 8:00 PM 11:00 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-09-09T20:00:00",
              "event_date": "2026-09-09",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Arthur Khu is a world-renowned pianist whose remarkable virtuosity and artistry draws inspiration from Keith Jarrett, Herbie Hancock and Wayne Shorter as well composers such as Chopin and Debussy. Collaborating with some of California’s finest musicians, his music is always intense, emotional, and driving.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/u6c5l171gjfotudx46qt09ro9d8bo1-mxrc8-nc83h",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-08-28T15:32:50.415811Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-08-30T10:45:25.297409Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_37f68d384769",
              "venue_id": "venue_exploratorium",
              "title": "Storytime Science for Kids: Space Is the Place",
              "event_time": "2026-09-09",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-09",
              "event_date": "2026-09-09",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Join us for Storytime Science and enjoy an engaging storybook read-aloud followed by a related activity geared toward children and their grown-ups. Come hear a story, get hands-on, and learn something new!",
              "event_types": [
                "workshop",
                "literary"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/storytime-science-kids-space-place-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-09",
              "run_id": "run_d76b7c3ece9a",
              "run_label": "Storytime Science for Kids: Space Is the Place, Aug 29 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9b06a02b0033",
              "venue_id": "venue_exploratorium",
              "title": "Daytime Members-Only Hours",
              "event_time": "2026-09-09",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-09",
              "event_date": "2026-09-09",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Please consider joining us today ! Members are the backbone of our organization and help ensure the continuity of our mission to create inquiry-based experiences that transform learning worldwide. We can’t wait to see you at the museum.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/member-hours",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-09",
              "run_id": "run_e38dfc952011",
              "run_label": "Daytime Members-Only Hours, Aug 30 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_92d0a1cc6b82",
              "venue_id": "venue_bix",
              "title": "Jazz Duo",
              "event_time": "2026-09-09T19:00:00",
              "venue_name": "Bix",
              "event_start": "2026-09-09T19:00:00",
              "event_date": "2026-09-09",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Jazz Duo",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Never a cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-08-28T21:10:29.119399Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bix|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c846c7b6f193",
              "venue_id": "venue_neck_of_the_woods",
              "title": "Open Mic Wednesdays",
              "event_time": "Wed, Sep 9 Show: 7:30 pm",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-09-09T19:30:00",
              "event_date": "2026-09-09",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "community"
              ],
              "price_info": "$0.00",
              "url": "https://www.neckofthewoodssf.com/tm-event/neck-of-the-woods-sf-open-mic-wednesdays-36/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_neck_of_the_woods",
                  "source_name": "Neck of the Woods",
                  "fetched_at": "2026-08-28T21:30:17.641164Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7f8f9ce2ae0a",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-09-09",
              "venue_name": "De Young",
              "event_start": "2026-09-09",
              "event_date": "2026-09-09",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-09",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5d2a00c1514a",
              "venue_id": "venue_st_josephs_arts_society",
              "title": "Poolside Poets",
              "event_time": "09/09/2026",
              "venue_name": "St Josephs Arts Society",
              "event_start": "2026-09-09",
              "event_date": "2026-09-09",
              "venue_address": "1401 Howard St, San Francisco, CA 94103",
              "description": "MUSIC, POETRY AND DANCE!",
              "event_types": [
                "live_music",
                "dance",
                "literary"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_st_josephs_arts_society",
                  "source_name": "St Josephs Arts Society",
                  "fetched_at": "2026-08-28T23:36:27.154990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_st_josephs_arts_society|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c68bcbac6301",
              "venue_id": "venue_punch_line",
              "title": "FUMI ABE",
              "event_time": "Sep 9, 2026 8:00 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-09T20:00:00",
              "event_date": "2026-09-09",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Japanese-American comedian and writer Fumi Abe delivers his clever, sharp-witted stand-up on millennial life and cultural identity.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/fumi-abe-san-francisco-california-09-09-2026/event/1C0064AD43278E2B",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f107d17ba4ea",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "CAMERON ESPOSITO",
              "event_time": "Wed Sep 9, 2026 7:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-09-09T19:30:00",
              "event_date": "2026-09-09",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Acclaimed comedian, actor, and writer Cameron Esposito brings her engaging and insightful stand-up routine to San Francisco.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/cameron-esposito-san-francisco-california-09-09-2026/event/1C0064AE9D0BEA63",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c2ae7b0389ff",
              "venue_id": "venue_california_jazz_conservatory",
              "title": "Brown Bag Jazz Hang",
              "event_time": "9/09/2026 12:30 PM",
              "venue_name": "CA Jazz Conservatory",
              "event_start": "2026-09-09T12:30:00",
              "event_date": "2026-09-09",
              "venue_address": "2087 Addison St, Berkeley, CA 94704",
              "description": "Brown Bag Jazz Hang at the Jazzschool Presents: Darren Johnston on Booker Little",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23382",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-31T10:04:42.136151Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_california_jazz_conservatory|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_aab08144e638",
              "venue_id": "venue_the_monkey_house",
              "title": "Experimental Music Club Showcase",
              "event_time": "9/09/2026 7:00 PM",
              "venue_name": "The Monkey House",
              "event_start": "2026-09-09T19:00:00",
              "event_date": "2026-09-09",
              "venue_address": "1638 University Avenue, Berkeley, CA",
              "description": "The Experimental Music Club return with their monthly showcase, this time featuringThomas Dimuzio, John Davis and Calm Machines.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23362",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-31T10:04:42.136151Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monkey_house|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_04caf0f3ad92",
              "venue_id": "venue_yoshis",
              "title": "LISA FISCHER & ORRIN EVANS TRIO",
              "event_time": "September 9, 2026 - 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-09T19:30:00",
              "event_date": "2026-09-09",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "PRODUCER OF THE GRAMMY AWARD–WINNING HIT SINGLE \"HOW CAN I EASE THE PAIN\"",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "$54 - $99",
              "url": "https://yoshis.com/events/buy-tickets/lisa-fischer-orrin-evans-trio/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_107467517f1f",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "DAVY WILLIAMSON",
              "event_time": "Wed Sep 9 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-09T19:00:00",
              "event_date": "2026-09-09",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "An Evening with",
              "event_types": [
                "live_music"
              ],
              "price_info": "21+, $10.00",
              "url": "https://wl.seetickets.us/event/davy-williamson/703964?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-08-31T12:12:52.447528Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_359a6ae4eee7",
              "venue_id": "venue_winters",
              "title": "Evil Engines/The Louie Louies/Like Planes",
              "event_time": "2026-09-09T20:00:00",
              "venue_name": "Winters",
              "event_start": "2026-09-09T20:00:00",
              "event_date": "2026-09-09",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "Live concert performance featuring Evil Engines, The Louie Louies, and Like Planes.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-08-31T12:39:12.063314Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_winters|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_bb750adb97e9",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Singer/Songwriter Wednesday",
              "event_time": "2026-09-09T16:00:00",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-09-09T16:00:00",
              "event_date": "2026-09-09",
              "venue_address": "San Francisco, CA 94118",
              "description": "Singer/Songwriter Wednesday featuring live performances by Hayley Lynne and Blake Johnston, Matt Jaffe (Duo), and Koyal.",
              "event_types": [
                "folk",
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://sfrecpark.org/calendar.aspx?EID=17155",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-08-31T13:28:15.005369Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_1b5482e79a5f",
              "venue_id": "venue_boom_boom_room",
              "title": "Jeff Cotton’s Gin Joint",
              "event_time": "Wed, Sep 09, 2026 Doors: 7 pm // Show: 8:30 pm",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-09-09T20:30:00",
              "event_date": "2026-09-09",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "Date: Wednesday Night, September 9thDoors: 6:30PMShow: 8:30PM 'til 1:15AM++Tix:  No Cover Charge/ Admission Gratis ...Genre:  Rock, Classic 70's, Live KICKAZZ Bands...   featuring: * JEFF COTTON'S GIN JOINT * plus: * Star Musician Guests *___________________________________ 6:30PM - Doors Open8:30PM  - JEFF COTTON'S GIN JOINT8:30PM 'til l0:55PM ~  Star Guests11:00PM 'til 1:15AM+ ~ JEFF COTTON's GIN JOINT___________________________________ JEFF COTTON'S GIN JOINT: .... In The Vein of Tom Petty and Americana Rock, roots rock, southern rock, country and folk. Jeff Cotton - Guitar, mandolin and VocalsMike Toth - BassKris Jones - DrumsThomas Kenny - Lead Rhythm Guitars   Jeff Cotton’s Gin Joint is a San Francisco-based roots rock band known for their obscure covers and rootsy originals that draw from the deep well of classic rock, soul, country, and psychedelic groove. Their sound is a swirling cocktail of Springsteen’s working-class anthems, Bowie’s theatrical edge, and Stevie Wonder’s soulful fire—with a splash of Cheap Trick’s power pop, Lucinda Williams’ grit, and The Band’s rustic storytelling. Whether they’re tearing through a Black Sabbath riff, crooning a Jackson Browne ballad, or reimagining a Rare Earth hit.  Their monthly residency at the Boom Boom Room feature genre-fluid sets that are equal parts nostalgic and unpredictable. It’s music for the misfits, the romantics, and the late-night wanderers.   Jeff Cotton’s Gin Joint Originals music available at CDbaby, iTunes, Spotify, YouTube and on Jeff Cotton Radio on Pandora https://www.facebook.com/jeffcottonsginjoint/about https://www.reverbnation.com/jeffcottonsginjoint https://www.youtube.com/channel/UCmwnMtZOFjtoAfb-1dOHQ9A   Get down at The Boom Boom in the Room (Jeff Cotton's Gin Joint & Guests)  ~~~ 2nd Wednesday night of the month show with Jeff Cotton's Gin Joint & our friends ~~~We'll start at 8:30pm and show goes til 1:15am+______________ NO COVER CHARGE, no excuses, no problems, see you on Wednesday Ni",
              "event_types": [
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://boomboomroom.com/event/jeff-cottons-gin-joint-w-special-guests-no-cover-charge-3/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-08-31T14:05:05.078255Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:49.350985Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7d5434a424b9",
              "venue_id": "venue_ashkenaz",
              "title": "2nd Wednesday Balkan Folk Dance",
              "event_time": "09/09/2026 6:30 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-09-09T18:30:00",
              "event_date": "2026-09-09",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "An Ashkenaz tradition since 1973",
              "event_types": [
                "dance",
                "folk"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/193554",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-08-31T14:45:33.243069Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_07007838a41a",
              "venue_id": "venue_yerba_buena_center",
              "title": "GaHee Park: Behind the Curtain",
              "event_time": "2026-09-09",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-09",
              "event_date": "2026-09-09",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Park invites us to peek behind the curtain, as she lays claim to her own power as a surrealist painter working across fantasy and intimacy.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/gahee-park-behind-the-curtain/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-09",
              "run_id": "run_5353f80886f6",
              "run_label": "GaHee Park: Behind the Curtain, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1f9b36d96502",
              "venue_id": "venue_yerba_buena_center",
              "title": "Surreal Portrait Collage Workshop",
              "event_time": "Wednesday, September 9, 2026, 2–4 PM",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-09T14:00:00",
              "event_date": "2026-09-09",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Draw from imagination to compose a surreal portrait collage inspired by “GaHee Park: Behind the Curtain.”",
              "event_types": [
                "workshop"
              ],
              "price_info": "Tickets: Free with registration",
              "url": "https://ybca.org/event/free-art-workshop-surreal-portrait-collage-9-9-26/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_90dde5f00779",
              "venue_id": "venue_club_fugazi",
              "title": "Besties: Comedy & Music",
              "event_time": "2026-09-09T20:30:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-09T20:30:00",
              "event_date": "2026-09-09",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Hosted by Xander Beltran, this lively evening blends stand-up comedy, music, and the joyful chemistry that only the best of friends can create as part of the inaugural Fugazi Funny Festival.",
              "event_types": [
                "live_music",
                "comedy",
                "festival"
              ],
              "price_info": "$27.50 Pre-Sale / $33 Walk-up",
              "url": "https://www.clubfugazisf.com/funny",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_8fb9f15f4f52",
              "venue_id": "venue_biscuits__blues",
              "title": "Mike Keneally and Beer For Dolphins",
              "event_time": "2026-09-09T20:30:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-09-09T20:30:00",
              "event_date": "2026-09-09",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-08-31T16:25:33.031111Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_0d25ffae2a11",
              "venue_id": "venue_the_knockout",
              "title": "Downtown 81 Mutant Disco",
              "event_time": "Wed 9 Sep ― 9:00pm",
              "venue_name": "The Knockout",
              "event_start": "2026-09-09T21:00:00",
              "event_date": "2026-09-09",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "DOWNTOWN 81 MUTANT DISCO DANCE PARTY WITH RESIDENT DJ PAUL COSTUROS. NO WAVE! POST PUNK! UNDERGROUND! EAST COAST! WEST COAST! ALL THE JAMS THAT MATTER, ON VINYL! SPECIAL GUESTS MONTHLY! • 9PM TO CLOSE • NO COVER • 21+",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/Zd2502ae23d2?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-09-02T10:33:16.877437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_55a7d0899c05",
              "venue_id": "venue_f8",
              "title": "Run it Back",
              "event_time": "2026-09-09T21:00:00",
              "venue_name": "F8",
              "event_start": "2026-09-09T21:00:00",
              "event_date": "2026-09-09",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "Run it Back September Edition featuring house and tech house sets from Otebnsolrac, Watts, Hawn, Lore, RCA, DJ Parrot, Loved Ones, La Discoteque, and Christopher Charles.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10",
              "url": "https://ra.co/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-09-02T10:39:00.610887Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_f8|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_d82ed7bd0450",
              "venue_id": "venue_the_saloon",
              "title": "Jose Simioni Trio",
              "event_time": "September 9 @ 4:30 pm - 8:30 pm",
              "venue_name": "The Saloon",
              "event_start": "2026-09-09T16:30:00",
              "event_date": "2026-09-09",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "Jose Simioni Trio's improvisational jazz performance at the Saloon from 4:30pm to 6:30pm with Dylan Garrison on drums and Ron Estrada on vocals and guitar.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/jose-simioni-trio/2026-09-09/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:46.749774Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_saloon|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_61b0177e4aa0",
              "venue_id": "venue_the_grove",
              "title": "Tori Roze and Johnny Alexander",
              "event_time": "September 9 @ 5:00 pm - 8:00 pm",
              "venue_name": "The Grove",
              "event_start": "2026-09-09T17:00:00",
              "event_date": "2026-09-09",
              "venue_address": "690 Mission St, San Francisco, CA 94105",
              "description": "Tori Roze and Johnny Alexander bring a taste of San Diego's acclaimed soul-jazz scene to The Grove, performing as an intimate duo drawn from their six-piece band Tori Roze and The Hot Mess. Roze is a vocalist of rare range and imagination, weaving together influences from Michael Jackson, Erykah Badu, Ella Fitzgerald, Björk, and musical...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/tori-roze-and-johnny-alexander/2026-09-09/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:46.749774Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_grove|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_0d2588faa626",
              "venue_id": "venue_scopo_divino",
              "title": "Le Jazz Hot",
              "event_time": "September 9 @ 6:00 pm - 9:00 pm",
              "venue_name": "Scopo Divino",
              "event_start": "2026-09-09T18:00:00",
              "event_date": "2026-09-09",
              "venue_address": "2800 California St, San Francisco, CA 94115",
              "description": "Le Jazz Hot, the local trio/quartet incarnation of the Hot Club of San Francisco, brings spirited Django Reinhardt and Stéphane Grappelli-style jazz to Scopo Divino every Wednesday from 6:00–9:00 PM....",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/le-jazz-hot-3-2/2026-09-09/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:46.749774Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scopo_divino|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_65baeee2fb5c",
              "venue_id": "venue_specs",
              "title": "Wednesday Big Table",
              "event_time": "September 9 @ 6:30 pm - 8:30 pm",
              "venue_name": "Specs' Twelve Adler Museum Cafe",
              "event_start": "2026-09-09T18:30:00",
              "event_date": "2026-09-09",
              "venue_address": "12 William Saroyan Pl, San Francisco, CA 94133",
              "description": "An open gathering of writers, poets, artists and more around the Big Table at Specs every Wednesday from 6:30-8:30pm! This more than 40 year tradition began with writers Jack Hirschman and Agneta Falk, and continues on with hosts Agneta and writers Byron Spooner and Judith Bernhard. Join us for drinks, laughs, good conversation and become...",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/wednesday-big-table/2026-09-09/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:46.749774Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_specs|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_4268fdd72766",
              "venue_id": "venue_lions_den",
              "title": "Rotating Bands at the Lion’s Den",
              "event_time": "September 9 @ 8:00 pm - 11:00 pm",
              "venue_name": "Lion's Den",
              "event_start": "2026-09-09T20:00:00",
              "event_date": "2026-09-09",
              "venue_address": "57 Wentworth Pl, San Francisco, CA 94108",
              "description": "Experience the resurgence of San Francisco’s historic Chinatown nightlife at the Lion’s Den.  Tucked away on Wentworth Place, this bi-level lounge and performance space blends modern cocktail culture with the East meets West spirit of the Chinatown’s golden age. Every week, the venue transforms into a unique destination for live music, featuring a rotating roster...",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/live-music-at-the-lions-den-2-2/2026-09-09/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:49.350985Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_lions_den|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_4f670004bfb9",
              "venue_id": "venue_comstock_saloon",
              "title": "Peninsula Project",
              "event_time": "September 9 @ 8:00 pm - 11:00 pm",
              "venue_name": "Comstock Saloon",
              "event_start": "2026-09-09T20:00:00",
              "event_date": "2026-09-09",
              "venue_address": "155 Columbus Ave, San Francisco, CA 94133",
              "description": "The Peninsula Project brings its high-energy, trombone-led jazz to Comstock Saloon. Featuring Rick Brown on trombone, Jeremy Leber on piano, Carl Herder on bass, and Garry Williams on drums, the quartet combines swinging standards, bluesy grooves, and boogie-woogie rhythms in the historic North Beach venue.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/peninsula-project-3-2/2026-09-09/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:49.350985Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_comstock_saloon",
                  "source_name": "Comstock Saloon",
                  "fetched_at": "2026-09-03T14:26:10.425617Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_comstock_saloon|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_0fb42696ac1a",
              "venue_id": "venue_the_lucky_horseshoe",
              "title": "Dirty Works Jazz Jam @ The Shoe",
              "event_time": "September 9 @ 8:00 pm - 11:00 pm",
              "venue_name": "The Lucky Horseshoe",
              "event_start": "2026-09-09T20:00:00",
              "event_date": "2026-09-09",
              "venue_address": "453 Cortland Ave, San Francisco, CA 94110",
              "description": "Open jazz jam every 2nd, 3rd, 4th, & 5th Wednesdays of the month in Bernal Heights at The Lucky Horseshoe. Jazz jam open to all instruments & singers at one of San Francisco's oldest and best music dive bars This is a straight ahead jazz jam with all instruments and singers welcome. Small house band...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/dirty-works-jazz-jam-the-shoe/2026-09-09/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:49.350985Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_lucky_horseshoe|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_ce71b2bd8b21",
              "venue_id": "venue_local_edition",
              "title": "Verve Quintet",
              "event_time": "September 9 @ 8:30 pm - 11:30 pm",
              "venue_name": "Local Edition",
              "event_start": "2026-09-09T20:30:00",
              "event_date": "2026-09-09",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "This fabulous quintet honors the blue note, hard bop tradition of the 1960’s and beyond. Aaron Germain - BassAdam Klipple - PianoAndrew Dixon - Tenor SaxDaniel Herrera - TrumpetJPaul Macklin - Drums",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/verve-quintet-2/2026-09-09/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:49.350985Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-09-03T12:59:31.047351Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_18f02bebd6db",
              "venue_id": "venue_the_saloon",
              "title": "Chris Ford",
              "event_time": "September 9 @ 9:30 pm - 1:30 am",
              "venue_name": "The Saloon",
              "event_start": "2026-09-09T21:30:00",
              "event_date": "2026-09-09",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "The Chris Ford Band delivers a spirited blend of rockabilly, blues, and honky tonk, electrifying venues across San Francisco including The Saloon. Led by Chris Ford, the band combines old-school honky tonk vibes with modern energy, crafting a sound that’s both nostalgic and fresh. Whether dominating the stage or engaging with the crowd, the Chris...",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/chris-ford-2/2026-09-09/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:49.350985Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_saloon|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_8ad08c0ce27a",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy",
              "event_time": "2026-09-09T19:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-09-09T19:45:00",
              "event_date": "2026-09-09",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "Stand-up comedy show at Shelton Theater. Listing says each show features five to six hand-picked, experienced comedians and an occasional guest drop-in.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$25.00",
              "url": "https://tickets.cttcomedy.com/events/2555/cheaper-than-therapy-stand-up-comedy-wed-sep-9/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-09-02T11:40:03.690341Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_0b5ebd112053",
              "venue_id": "venue_madrone_art_bar",
              "title": "Storied: SF Season 9 Launch",
              "event_time": "September 9 @ 6:00 pm - 9:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-09T18:00:00",
              "event_date": "2026-09-09",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Come share a toast to an all-new season of Best of the Bay winner Storied: San Francisco as they also unveil a new show they're partnering with: Intersections SF. We'll have a raffle, music sets by Kitten on the Keys and Alex Ramirez, merch, swag, and all-around good times! 6-9PM",
              "event_types": [
                "community",
                "dj_party"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/storied-sf-season-9-intersections-sf-launch-party/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_917a70ea0922",
              "venue_id": "venue_madrone_art_bar",
              "title": "ITALO FRISCO",
              "event_time": "September 9 @ 9:30 pm - 12:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-09T21:30:00",
              "event_date": "2026-09-09",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "ITALO FRISCO 9:30PM NO COVER Join DJ Nino MSK & special guests for ITALO FRISCO, a vinyl-powered fusion of California cool and irresistible Italo Disco & House, every second Wednesday at Madrone Art Bar. Step onto the dance floor for a night of retro-fueled, future-forward energy, where West Coast vibes meet the infectious rhythms of [&hellip;]",
              "event_types": [
                "dj_party"
              ],
              "price_info": "NO COVER",
              "url": "https://madroneartbar.com/event/italo-frisco-4-2025-12-10-2026-09-09/2026-09-09/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4df44a573757",
              "venue_id": "venue_moes_alley",
              "title": "Western Wednesday: The Soda Crackers",
              "event_time": "2026-09-09T19:30:00",
              "venue_name": "Moe's Alley",
              "event_start": "2026-09-09T19:30:00",
              "event_date": "2026-09-09",
              "venue_address": "1535 Commercial Way, Santa Cruz, CA 95065",
              "description": "Show: 7:30 PM",
              "event_types": [
                "live_music",
                "folk",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_moes_alley",
                  "source_name": "Moe's Alley",
                  "fetched_at": "2026-09-03T10:23:10.512238Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_moes_alley|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_60628833e0bf",
              "venue_id": "venue_black_cat",
              "title": "King David",
              "event_time": "2026-09-09 07:00 PM",
              "venue_name": "Black Cat",
              "event_start": "2026-09-09T19:00:00",
              "event_date": "2026-09-09",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50\n\n(price includes $5.50 processing and ticketing fee)\n\n \n\n7:00 show: Doors @ 6:00\n\n\n\n\nVoice-led, genre-bending soul where gospel fire, jazz harmony, funk pocket, afrobeat propulsion, rock abandon, and folk honesty collide.\n\n\n\n\nBorn in Lagos and based in San Francisco, King David brings a sound that feels raw, radiant, and impossible to pin down. His music runs through the body first — heavy groove, open-hearted vocals, late-night tension, and songs that turn ache into movement.\n\n\n\n\nWith a voice that can move from church-born intensity to falsetto shimmer, King David creates the kind of room where feeling and rhythm meet: honest, strange, soulful, and alive.\n\n\n\n\nBring your woes. Leave lighter. \n\n\n\n\nBand Lineup:\n\nKing David, voice/lead\n\nMark Ligonde, bass\n\nRich Newell, drums\n\nJoe Maier, TBD\n\nChili Corder, guitar",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk",
                "latin_world"
              ],
              "price_info": "$20 , $30 , $40 , $50",
              "url": "https://blackcatsf.turntabletickets.com/shows/12340/2026-09-09",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_76761b6e3450",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Robert Kennedy Quartet",
              "event_time": "Wednesday, September 9, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-09T19:00:00",
              "event_date": "2026-09-09",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Wednesday, September 9, 2026 @ 7pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $30 per show",
              "url": "https://keysjazzbistro.com/event/robert-kennedy-quartet-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e38bb7bfee89",
              "venue_id": "venue_z_space",
              "title": "San Francisco Hysterical Historium",
              "event_time": "2026-09-09T19:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-09-09T19:00:00",
              "event_date": "2026-09-09",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "Killing My Lobster & Z Space present: San Francisco Hysterical Historium, a Co-Production with Red Barn Productions. Sketch comedy that ain't fool's gold!",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-09-03T10:55:35.787344Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_z_space|2026-09-09",
              "run_id": "run_6cdec2f9a529",
              "run_label": "San Francisco Hysterical Historium, Sep 4 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_dccda40e2d3a",
              "venue_id": "venue_pacific_film_archive",
              "title": "Exhibition Tour: Maren Hassinger",
              "event_time": "Sep 09, 2026 12:15 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-09T12:15:00",
              "event_date": "2026-09-09",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Graduate students from the Departments of African American and African Diaspora Studies and History of Art offer exhibition tours on selected Wednesdays at 12:15 PM, Sundays at 2 PM, and Free First Thursdays at 1:15 PM.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://bampfa.org/event/exhibition-tour-maren-hassinger-living-moving-growing",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_734dd6561a01",
              "venue_id": "venue_pacific_film_archive",
              "title": "Push Buttons and AI",
              "event_time": "Sep 09, 2026 7 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-09T19:00:00",
              "event_date": "2026-09-09",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "In conjunction with the exhibition Hidden Layers: AI Infrastructures and Hallucinations at UC Berkeley’s Worth Ryder Gallery, Antonio Somaini, Hannes Bajohr, and Sonja Thiel present a program of works about automation, AI, and AI’s social and technical infrastructures. With filmmaker Gibbs Chapman in person.",
              "event_types": [
                "art",
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/push-buttons-and-ai",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0502a7a95535",
              "venue_id": "venue_4_star_theater",
              "title": "Fogcutter Film Series & DJ Grampaphone Party",
              "event_time": "9 September 2026 6:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-09T18:00:00",
              "event_date": "2026-09-09",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "7:00 PM: Stop Making Sense (1984) – Academy Award-winning director Jonathan Demme ( Silence of the Lambs, Philadelphia ) makes possibly “the greatest concert film of all-time” documenting Rock and Roll HOF band Talking Heads at the height of their popularity on tour for their 1983 album “Speaking in Tongues” which included the smash hit “Burning Down the House” and classic “Naive Melody.” Filmed over three nights at the Pantages Theater in Hollywood, the band– David Byrne in his iconic “Big Suit,” Tina Weymouth, Chris Frantz, and Jerry Harrison –take the stage one by one as they are joined by a cadre of guest musicians including Rock and Roll HOF Bernie Worrell (Parliament-Funkadelic) and Alex Weir (Brothers Johnson) and Tom Tom Club for an incredibly artistic and energetic set including “Psycho Killer,” “Life During Wartime,” and “Once In A Lifetime.” Caught by Oscar nominated cinematographer Jordan Croneweth (Blade Runner) it was included into The National Film Registry in 2021.",
              "event_types": [
                "dj_party",
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/fogcutter-film-series-volume-25-stop-making-sense",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6470d5280257",
              "venue_id": "venue_cat_club",
              "title": "PLAY-X-LAND",
              "event_time": "September 9, 2026 9:00 PM",
              "venue_name": "Cat Club",
              "event_start": "2026-09-09T21:00:00",
              "event_date": "2026-09-09",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "Come out and play every\nWednesday Night!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.sfcatclub.com/calendar/sgzbsw3ltzjngjx-8yj6x-hzsr2-8tx5a",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cat_club",
                  "source_name": "Cat Club",
                  "fetched_at": "2026-09-03T13:24:58.141502Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_35c00745edf3",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Wine Special",
              "event_time": "9 September 2026",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-09",
              "event_date": "2026-09-09",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Discover curated bottle and glass specials featuring selections from Etcetera Wine Bar's extensive cellar. It is an ideal occasion to sample new varietals in a relaxed Mission District setting.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-09-03T13:50:21.930604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7c4e1395ed52",
              "venue_id": "venue_caravan_lounge",
              "title": "Caravan Lounge Comedy Show",
              "event_time": "09/09/2026",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-09-09",
              "event_date": "2026-09-09",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "Welcome to The Caravan Lounge THE CARAVAN LOUNGE is a friendly, owner-operated bar located in the heart of downtown San Jose. As well as being one of San Jose’s oldest live music venues, the Caravan provides other fun activities such as karaoke, comedy, burlesque, pool table, and DJ nights. The Caravan is also extremely affordable for those trying to stretch a budget. And let’s not forget the music! All the shows at the Caravan are FREE! Open 7 days a week 2pm – Close “Aside from the obvious draw of affordable libations poured by heavy-handed barkeeps, The Caravan sets itself apart from other no-frills bars as the place to go to see up-and-coming bands. The bar has hosted plenty of local bands’ first shows, and regularly features smaller touring acts. If you’re a music fan always on the lookout for your new favorite group, make sure to pay attention to who is coming to Caravan.” -Metro FEATURED VIDEOS – Go to our YouTube Channel by clicking here to see more… SEPTEMBER 2026 TUES. SEPT 1st- Karaoke with Ronnie Roach WED. SEPT 2nd – The Caravan Lounge Comedy Show hosted by Chelsea Costanza THURS. SEPT 3rd – SWEAT with DJ SNAQ FRI. SEPT 4th – Rebelskamp, Magick Blues Band, TBA SAT. SEPT 5th – Skool Of Sharks TUES. SEPT 8th- Karaoke with Ronnie Roach WED. SEPT 9th – The Caravan Lounge Comedy Show Hosted by Nyoki THURS. SEPT 10th – Shrine Goth DJ Night with Hex Embrace, C_Death, and Owen FRI. SEPT 11th – Circus Of Sin 10 Year Sinnaversary! Hosted By Some Guy SAT. SEPT. 12th – CaveFest II We Love You Curtis Castro! Abysmal Piss, Ominous Ruin, Lost To The Void TUES. SEPT 15th – Karaoke with Ronnie Roach WED. SEPT 16th -The Caravan Lounge Comedy Show Hosted by Ato Walker THURS. SEPT 17th – TBA FRI. SEPT 18th – TBA SAT. SEPT 19th – Facekicker, American Standard, 12 Steps To Nothing TUES. SEPT 22nd – Karaoke with Ronnie Roach WED. SEPT 23rd- The Caravan Lounge Comedy Show hosted by Matt Kennedy THURS. SEPT 24th – Sweethearts DJ Night FRI. SEPT 25th – Ding Mao, Diamantide, Clou",
              "event_types": [
                "comedy"
              ],
              "price_info": "FREE",
              "url": "http://s172518151.onlinehome.us/caravan/site/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-09-03T14:20:40.572990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4f460c51bed3",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Midweek Melodies | September 9",
              "event_time": "September 09, 2026  4:00 pm – 7:00 pm",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-09-09T16:00:00",
              "event_date": "2026-09-09",
              "venue_address": "San Francisco, CA 94118",
              "description": "Featuring Blake Johnston, Hayley Lynn, Koyal, Matt Jaffe",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://illuminate.org/event/midweek-melodies-september-9/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_illuminate",
                  "source_name": "Illuminate",
                  "fetched_at": "2026-09-03T14:32:31.098793Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_6d381d1a2583",
              "venue_id": "venue_poor_house_bistro",
              "title": "PHB Jazz Jam",
              "event_time": "2026-09-09T18:00:00",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-09-09T18:00:00",
              "event_date": "2026-09-09",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-09-04T10:11:13.938872Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_11f081195c6c",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-09-09",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-09",
              "event_date": "2026-09-09",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "Music by Marc Shaiman & Thomas Meehan. Lyrics by Mark Shaiman & Scott Wittman. A 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to change her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "On Stage Now",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-09-04T10:15:07.852694Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-09",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9d2eb77012ae",
              "venue_id": "venue_castro_theater",
              "title": "LEGEND",
              "event_time": "September 9, 2026 7:30pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-09T19:30:00",
              "event_date": "2026-09-09",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Featuring a special performance by Trixxie Carr",
              "event_types": [
                "film"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://apeconcerts.com/events/legend-260909/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-09-04T10:18:32.697885Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_88510d30a4c8",
              "venue_id": "venue_roxy",
              "title": "Arthouse 50: Freeway",
              "event_time": "Wednesday, September 9, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-09-09",
              "event_date": "2026-09-09",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "Reese Witherspoon as potty-mouthed white trash Vanessa Lutz is among her most underrated roles. In this modern take on Little Red Riding Hood, Kiefer Sutherland plays the not subtly named Bob Wolverton, a serial killer who meets his match in Vanessa, a fifteen year old on her way to her grandmother’s after her parents are both arrested. Bob picks her up hitchhiking, gains her trust and then reveals himself – but Vanessa is sharp and quick, shooting him and leaving him for dead. Trouble is, he doesn’t die, and instead she finds herself on trial. Can this bad behaving juvenile delinquent win against a well-respected school counselor? You better believe she won’t go down without a fight! Written and directed by Matthew Bright, best known as the screenwriter for FORBIDDEN ZONE, FREEWAY is impressive and often hilarious with a great support cast including Brooke Shields, Amanda Plummer and Dan Hedaya. (Cristina Cacciopo)",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/arthouse-50-freeway/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-09-04T10:24:35.292955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_84ad279ef0da",
              "venue_id": "venue_roxy",
              "title": "The Cycle of Love",
              "event_time": "Wednesday, September 9, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-09-09",
              "event_date": "2026-09-09",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "In 1977, PK, a 23-year-old Delhi street artist from a poor, ‘untouchable’ family, picked up a handful of paintbrushes and a second-hand bicycle and set off on a 6000-mile cross-continent mission – to find Lotta, the woman who had captured his heart. A love story like no other, THE CYCLE OF LOVE is an inspiring, heart-warming, epic true-life adventure about the search for self-belief and risking everything for what your heart tells you.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/the-cycle-of-love/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-09-04T10:24:35.292955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e56e7c77ff3f",
              "venue_id": "venue_kilowatt",
              "title": "Arts and Crafts & I Am The Octopus",
              "event_time": "Wed 9 Sep ― 7:00pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-09T19:00:00",
              "event_date": "2026-09-09",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Keep track of what’s coming up by saving events, sharing them with friends, or even listening to new music in the app.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/l3c1811b82cf?pid=ff10e59d",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-09-04T10:33:38.052132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9f83f2e3fddd",
              "venue_id": "venue_sevys_aptos",
              "title": "Burgers & Brews Wednesdays",
              "event_time": "September 9, Wednesday 5:00 PM",
              "venue_name": "Sevy's Bar & Kitchen",
              "event_start": "2026-09-09T17:00:00",
              "event_date": "2026-09-09",
              "venue_address": "7500 Old Dominion Ct, Aptos, CA 95003",
              "description": "",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sevys_aptos",
                  "source_name": "Sevy's Bar & Kitchen",
                  "fetched_at": "2026-09-04T10:39:41.919005Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sevys_aptos|2026-09-09",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-09-10": {
          "date": "2026-09-10",
          "updated_at": "2026-09-04T10:39:45.118837Z",
          "events": [
            {
              "event_id": "evt_c2bb93db5267",
              "venue_id": "venue_the_warfield",
              "title": "Blood Orange",
              "event_time": "sep 10 8pm",
              "venue_name": "The Warfield",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "Producer, multi-instrumentalist, composer, director and vocalist, London born polymath Devonté Hynes is among the most influential voices in music today. Raised in England by Guyanese and Sierra Leonean immigrant parents, Hynes started out as a teenage punk in the UK band Test Icicles before releasing two orchestral acoustic pop records as Lightspeed Champion. In 2011, he released Coastal Grooves, the first so far of five solo albums under the moniker Blood Orange. His 2016 album, Freetown Sound , was released to critical acclaim, and saw Hynes defined as one of the foremost musical voices of his time, receiving comparisons to the likes of Kendrick Lamar and D’Angelo for his own searing and soothing personal document of life as a black man in America. His 2018 album, Negro Swan , was released to equally rapturous response, exploring elements of black depression and identity. His most recent release, the 2019 mixtape Angel's Pulse, described by Hynes as an epilogue to Negro Swan, further explores and builds upon those themes. He has collaborated with Solange Knowles, fka twigs, A$AP Rocky, Puff Daddy, Mariah Carey Janet Mock, and many more, and was recently one of four artists invited to the Kennedy Center to perform alongside Philip Glass. In addition to his production work, he has sold out headlining tours around the world, directed and edited 7 Blood Orange music videos as well as one for Beck's 2019 \"Uneventful Days\", and composed the scores for the films “Palo Alto,” directed by Gia Coppola, and \"Queen & Slim\", directed by Melina Matsoukas.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.thewarfieldtheatre.com/events/detail/1467275",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-17T10:47:20.580351Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-06-19T15:38:19.166671Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c287bcb129c5",
              "venue_id": "venue_castro_theater",
              "title": "Naomi Sharon",
              "event_time": "sep 10 8pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "As the first female artist signed to OVO Sound , Naomi has built a reputation around an exacting blend of alternative R&B, neo-soul, and electronic influence rooted in her Dutch and Caribbean heritage. Her 2023 debut album Obsidian, which featured the cult favorite Time And Trust, announced her arrival with force. Apple Music praised her 2025 EP The Only Love We Know as a showcase of “arresting performances.”",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://thecastro.com/events/naomi-sharon-260910",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-17T10:47:20.580351Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-06-19T14:25:06.920662Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_another_planet",
                  "source_name": "Another Planet",
                  "fetched_at": "2026-09-04T10:18:32.697885Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_158ec5c56bf1",
              "venue_id": "venue_thee_stork_club",
              "title": "Grex, Naytronix, FEEFAWFUM",
              "event_time": "sep 10 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Thurs., 9/10/26 Grex (album release), Naytronix, Feefawfum 8:00pm, $12 adv., $15 door Oakland experimental/art rock band Grex releases their new album \"Auntie + Tebs\" at the Stork Club, joined by alternate pop polymath Naytronix and post-punk powerhouse Feefawfum. \"Auntie + Tebs,\" Grex's first record in six years, showcases a wildly original approach to songcraft that nods to free jazz, alternative hip-hop, and the outer reaches of noise rock. These sounds tell a personal story about revolution and resilience. Proceeds from this record will support social causes. Grex has been called an \"otherworldly experience\" (Eugene Weekly) and \"true genre warping music\" (KFJC), recalling at turns the ecstatic energy of Milford Graves, the electronic squall of Death Grips, and the lilting songwriting of Mitski and Water From Your Eyes. They've worked with the likes of Fred Frith, Andrew Cyrille, Zoh Amba, Bobby Bradford, and members of Irreversible Entanglements, Dirty Projectors, and King Crimson. Website / Bandcamp / Insta: @grexsounds Naytronix Alias of tUnE-yArDs bassist Nate Brenner, who assembles sundry experimental electronic pop. Bandcamp / Insta: @naytronix Feefawfum \"Urgent, nerve-jangling blasts of off-kilter noise. Razor-wire riffs and crunching choruses and a pulsating rhythm sections. Feefawfum whip up immediate maelstroms of noise that are designed for anything from pummelling headphone listens and road trips to a mid-afternoon set at a summer festival.” - Sun 13 Bandcamp / Insta: @feefawfumband",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$12/$15",
              "url": "https://wl.seetickets.us/event/grex-naytronix-feefawfum/695820?afflky=TheeStorkClub",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-18T11:36:11.622544Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-07-22T13:17:19.589171Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-02T10:15:07.580640Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fbf3cf70100f",
              "venue_id": "venue_the_chapel",
              "title": "Pink Breath of Heaven",
              "event_time": "Thu Sep 10 2026 8:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "San Francisco dream pop and shoegaze outfit Pink Breath of Heaven performs live with Topographies and Christina's Trip.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$22.00-$26.00",
              "url": "https://wl.seetickets.us/event/pink-breath-of-heaven/699436?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-07-20T10:37:33.908055Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_chapel|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_14c466c22d0e",
              "venue_id": "venue_ivy_room",
              "title": "Classic Hat, Hvnter Colt & Scam Likely",
              "event_time": "Thursday Sep 10 6:30 PM",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-10T18:30:00",
              "event_date": "2026-09-10",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "ivy room presents - genre - indie, experimental, post-hardcore",
              "event_types": [
                "live_music",
                "rock",
                "experimental"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/191705",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-07-31T12:32:32.572739Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_81051f6725eb",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Fartbarf",
              "event_time": "Thursday September 10\n          2026 8:00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "electronic pop punk soul, electropunk, disco, synthpop, and gothic cumbia",
              "event_types": [
                "live_music",
                "electronic",
                "rock"
              ],
              "price_info": "$15 in\n            advance /\n  $20 at the door",
              "url": "http://www.bottomofthehill.com/20260910.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-08-09T10:54:41.013216Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c2c8c1a96ccc",
              "venue_id": "venue_shapeshifters",
              "title": "The Do-Over Music Series",
              "event_time": "9/10/2026 7:00 PM",
              "venue_name": "Shapeshifters",
              "event_start": "2026-09-10T19:00:00",
              "event_date": "2026-09-10",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "The Do-Over Music Series at Shapeshifters Cinema, organized by Lisa Mezzacappa and Jordan Glenn, is a monthly series of sound performances presented by a rotating cast of local luminaries and special guests. The first set features performances of creative - improvised - composed - electronic - acoustic - music. The second set opens up to a live improvised collaboration of sound and visuals made using images culled from the Shapeshifters 16mm film collection.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "$10",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23332",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-14T10:07:47.535282Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_shapeshifters",
                  "source_name": "Shapeshifters",
                  "fetched_at": "2026-08-15T10:19:25.848214Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_e14c389812db",
              "venue_id": "venue_peacock_lounge",
              "title": "We Micromanage Infinity",
              "event_time": "9/10/2026 8:00 PM",
              "venue_name": "Peacock Lounge",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "552 Haight St, San Francisco, CA 94117",
              "description": "We Micromanage InfinityAbsorbed in modular synth tangles, software snarls, and engrossed with toy noisemakers and birdcalls, audience eye contact can be hard to come by when this supertrio of Blevin Blectum, James Goode and Thomas Dimuzio take the stage. There's no time for guitarface or elvis presley moves when you are fine tuning minutae of the infinite miasma.https://thomasdimuzio.bandcamp.com/track/gnomonhttps://www.youtube.com/watch?v=TNLKeFYsbPYDJ Female Convict Scorpion\"DJ\" as in Shadow, Marclay, Oswaldian Plunderphonics, the term denotes an art of turntablism, or it should! With a rich history of sampling particularly in the Bay Area from Bob Ostertag, Negativland, Culturcide, Invisibl Skratch Piklz and S*Glass right up to the present with Evicshen and Julia Mazawa. Those who know this lineage treasure the larcenies of Josh Pollock who harvests the most sinister sources. https://joshpollock.bandcamp.com/album/confucius-milton-berleShatter PatternThrough sound, dance, costumed computation, and visualization Jules Litman-Cleper blazes spidering trails across fragile shells, divining the wells of survivable life and showing us to the bathy froth of time that predates vision.https://www.youtube.com/watch?v=uYRH21CIn60Ron Heglin & Lorin BenedictHearing them live is a miracle not to be missed. These alien facedancers of Dune have performed with the likes of Steve Coleman, Wadada Leo Smith, Jack Wright, Tom Nunn, Sam Ospovat, Tom Djll, all while surviving the Baron Harkonnen. Climb out from your alien tank and slither quickly to the Peacock Lounge by 8pm to learn some truly new songs, all-ages welcome!https://artifactrecordings.bandcamp.com/album/duos-and-solos-art-3006-2019",
              "event_types": [
                "live_music",
                "jazz",
                "dj_party"
              ],
              "price_info": "$5",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23307",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-14T10:07:47.535282Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_peacock_lounge|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_a07652ec14d3",
              "venue_id": "venue_rickshaw_stop",
              "title": "Chanpan, Shebad",
              "event_time": "sep 10 9pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-09-10T21:00:00",
              "event_date": "2026-09-10",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Supporting Talent: SHEBAD",
              "event_types": [
                "live_music"
              ],
              "price_info": "$22/$25",
              "url": "https://wl.seetickets.us/event/chanpan/694072?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-09-02T10:05:07.555428Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_ef49e0c48f54",
              "venue_id": "venue_great_american_music_hall",
              "title": "Your Arms Are My Coccon",
              "event_time": "sep 10 7:30pm",
              "venue_name": "Great American",
              "event_start": "2026-09-10T19:30:00",
              "event_date": "2026-09-10",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Imagine We Had Antlers, awakebutstillinbed | with  Imagine We Had Antlers, awakebutstillinbed",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15/$17",
              "url": "https://wl.seetickets.us/event/your-arms-are-my-cocoon/697564?afflky=GreatAmericanMusicHall",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-08-16T10:06:47.988032Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_b5b02238f67d",
              "venue_id": "venue_sf_eagle",
              "title": "Hellcatraz",
              "event_time": "sep 10 8:30pm",
              "venue_name": "SF Eagle",
              "event_start": "2026-09-10T20:30:00",
              "event_date": "2026-09-10",
              "venue_address": "398 12th St, San Francisco, CA 94103",
              "description": "21+",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_sf_eagle|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_ffa274df93df",
              "venue_id": "venue_tupelo",
              "title": "Matt Berkeley Variety Show",
              "event_time": "Thursday September 10th 9:00PM - 1:00AM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-10T21:00:00",
              "event_date": "2026-09-10",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "Hosted by Andrew Coutti and Young Blake on drums and bass,, this is the definitive Jam in San Francisco. Each week there will be a different special guest vocalist, as well as myriad other exceptional local talent popping in no doubt. Talk to either host before the gig if you're interested in performing. We take this shit seriously though, so bring your chops :)",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-17T11:00:47.077832Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-08-30T10:45:25.297409Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e3c2cc89d46b",
              "venue_id": "venue_the_independent",
              "title": "RULES",
              "event_time": "9/10/2026 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-10T21:00:00",
              "event_date": "2026-09-10",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List Rules Thu, Sep 10 Doors: 8:30 pm | Show: 9:00 pm 18 and up Please note - there is a delivery delay set for 2 weeks prior to show. Buy Tickets Share + Google Calendar Related Events Wax + DJ Hoppa Aug 28 Buy Tickets Brenn! Aug 29 Buy Tickets Artists Rules Back to Event List Upcoming Events Wax + DJ Hoppa Fri Aug 28 Brenn! Sat Aug 29 Tonic Walter Fri Sep 4 The Emo Night Tour Sat Sep 5 PawPaw Rod Tue Sep 8 Kevin Atwater Wed Sep 9 Rules Thu Sep 10 Arlo Fri Sep 11 BL3SS – 360 Set – North American Tour 2026 Sat Sep 12 Towa Bird Sun Sep 13 The Tear Garden (The Legendary Pink Dots & cEvin Key) Tue Sep 15 Mustard Service Thu Sep 17",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/rules/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-08-20T10:31:03.790732Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a7e3000b906e",
              "venue_id": "venue_1015_folsom",
              "title": "THROTTLE: D.DAN",
              "event_time": "2026/09/10 Thu: Sep 10 (9pm-12am)",
              "venue_name": "1015 Folsom",
              "event_start": "2026-09-10T21:00:00",
              "event_date": "2026-09-10",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "THROTTLE presents an evening of fast techno featuring D. Dan at 1015 Folsom.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS | Bottle Service",
              "url": "https://ra.co/events/2506379",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-08-20T12:52:11.701520Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_resident_advisor_sf_ra",
                  "source_name": "Resident Advisor SF (RA)",
                  "fetched_at": "2026-08-28T22:15:14.237667Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_1015_folsom|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4eeb3b6a9513",
              "venue_id": "venue_sap_center",
              "title": "Soda Stereo",
              "event_time": "2026-09-10T20:00:00",
              "venue_name": "SAP Center",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "Latin rock icons Soda Stereo performing live at SAP Center.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.sapcenter.com/events/detail/soda-stereo",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-08-20T12:59:28.269789Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sap_center|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_833edc0f247b",
              "venue_id": "venue_crepe_place",
              "title": "Sasupake",
              "event_time": "2026-09-10",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "FREE",
              "url": "https://thecrepeplace.com/shows-list/sasupake",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ca60a17a61c0",
              "venue_id": "venue_abbott_square",
              "title": "JAZZ NIGHT",
              "event_time": "Thursday, September 10, 2026 6:30 PM - 8:30 PM",
              "venue_name": "Abbott Square Market",
              "event_start": "2026-09-10T18:30:00",
              "event_date": "2026-09-10",
              "venue_address": "725 Front St, Santa Cruz, CA 95060",
              "description": "Brian Fitzgerald",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.abbottsquaremarket.com/events/jazz-night-mwcta-mn6bf",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_abbott_square",
                  "source_name": "Abbott Square Market",
                  "fetched_at": "2026-08-22T12:39:51.694804Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_abbott_square|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d01b7e96ec77",
              "venue_id": "venue_act_theater",
              "title": "Crushing",
              "event_time": "2026-09-10",
              "venue_name": "ACT Theater",
              "event_start": "2026-09-10",
              "event_date": "2026-09-10",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "Past performers include National Book Award-nominated novelist/poet sam sax, recording artist ROZZI (an A.C.T. alum!), four-time NAACP Image Award-winning podcaster Ashley Hobbs, Washington Post/Cosmopolitan contributor Natachi Onwuamaegbu—plus emerging playwrights, screenwriters, standup comedians, an Oakland high school freshman, and more.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-08-22T13:54:28.481304Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_act_theater|2026-09-10",
              "run_id": "run_b8d49cfc30e6",
              "run_label": "Crushing, Sep 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_e37111ee9e44",
              "venue_id": "venue_verdi_club",
              "title": "Milonga Malevaje",
              "event_time": "2026-09-10T20:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance"
              ],
              "price_info": "",
              "url": "https://www.verdiclub.net/events-calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-08-22T14:55:24.428239Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_verdi_club|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e8bc2f97f880",
              "venue_id": "venue_crows_nest_sc",
              "title": "PAPIBA & FRIENDS",
              "event_time": "Thursday September 10th 08:00 PM",
              "venue_name": "The Crow's Nest",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "2218 East Cliff Dr, Santa Cruz, CA 95062",
              "description": "Thursday September 10th Afro-Brazilian rhythms Starts at 08:00 PM",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$6 cover",
              "url": "https://www.facebook.com/mattmasihmusic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crows_nest_sc",
                  "source_name": "The Crow's Nest",
                  "fetched_at": "2026-08-22T15:19:13.909618Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crows_nest_sc|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5098ccef073b",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Alice for Wonderland",
              "event_time": "Sep 10, 2026 @ 7:30pm",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-10T19:30:00",
              "event_date": "2026-09-10",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "| Performances: Sept. 8-13 |  \n \n“Be Our Guest” at Disney’s BEAUTY AND THE BEAST, Disney’s first North American touring production of the beloved musical in over 25 years.\nThis enchanting and timeless…",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sanjosetheaters.org/event/78443614-20260910193000",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "San Jose CPA",
                  "fetched_at": "2026-08-28T18:46:14.894140Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-10",
              "run_id": "run_304a2c902844",
              "run_label": "Alice for Wonderland, Aug 22 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_7e91c765df2a",
              "venue_id": "venue_the_marsh_berk",
              "title": "Nina Wises Motion Theater",
              "event_time": "2026-09-10",
              "venue_name": "The Marsh Berk",
              "event_start": "2026-09-10",
              "event_date": "2026-09-10",
              "venue_address": "2120 Allston Way, Berkeley, CA 94704",
              "description": "Nina Wise’s Motion Theater Class Description Motion Theater® is a dynamic practice that blends movement, storytelling, and improvisation. A Motion Theater workshop is designed to cultivate spontaneity, creativity, and embodied presence. Through guided exercises, participants translate inner experience into movement and narrative, discovering fresh ways to express themselves with authenticity and ease. This workshop is both playful and skill-building. In a supportive environment, you will: Explore the connection between body, imagination, and voice Learn tools for creative expression and improvisational performance Cultivate mindfulness and presence through movement Experience the joy of spontaneous storytelling Deepen your capacity for authentic self-expression and connection No performance background is required—just curiosity and a willingness to move, play, and discover. Whether you are an artist, a seeker, an actor, a writer, or simply someone longing for a deeper relationship with creativity and embodiment, this workshop offers an opportunity to unlock new pathways of expression. What’s Included Nina Wise offers a 6-week workshop in Motion Theater® a form of improvised, autobiographical storytelling. In a Motion Theater class, you’ll learn to tell your stories on your feet, utilizing language, sound and movement as your tools of expression. In each workshop you’ll: Warm up and free up your body and voice Move in response to your inner impulses Play theater games that open you up and generate creativity and well-being Hone your writing and storytelling skills Embody your personal narrative Engage in uplifting adult play Motion Theater practices are designed to raise your spirits, inspire personal insight, create community, expand awareness, enhance self-confidence and develop presence and craft as a leader or performer. Motion has been described by both participants and audiences as funny, moving, liberating and transformational. Motion is playful, mindful self-",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://themarsh.org/nina-wises-motion-theater/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-08-22T17:28:42.838285Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_marsh_berk|2026-09-10",
              "run_id": "run_c7e0a197762f",
              "run_label": "Nina Wises Motion Theater, Sep 10 – Oct 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_45455976fb6c",
              "venue_id": "venue_the_marsh_sf",
              "title": "Soul Story Theater",
              "event_time": "2026-09-10",
              "venue_name": "The Marsh SF",
              "event_start": "2026-09-10",
              "event_date": "2026-09-10",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "Suraya Keating’s Soul Story Theater Solo Performance Program for Women Class Description Facilitated by Suraya Keating, LMFT, Registered Drama Therapist & Soul Story Coach The Soul Story Theater Solo Performance Program is a 13-week creative journey for women who long to transform meaningful life experiences into an original solo performance. Through expressive arts, storytelling, writing, movement, and theater, you’ll discover the deeper meaning within your life’s journey while finding the courage to share your authentic voice. This transformational experience culminates in a live performance where each participant presents her original soul story before a supportive audience. During this immersive journey, you will: Unearth the story your soul has been longing to tell and shape it into a compelling, authentic performance piece. Transform limiting narratives into empowering ones, discovering the resilience, wisdom, and personal mythology woven throughout your life’s journey. Awaken your creative voice through an inspiring blend of writing, storytelling, movement, and theater while deepening your connection to your inner muse. Receive personalized coaching as you write, devise, rehearse, and confidently perform your original solo piece. Experience the power of a courageous circle of women who will witness, encourage, and celebrate your creative unfolding every step of the way. What’s Included 13-week hybrid program combining online coaching with in-person rehearsals 10 live Zoom group sessions (most Thursdays, 7:15–9:15 PM PT) 2 in-person rehearsal intensives (Saturdays, 10am-3pm) Two 55-minute individual coaching sessions via Zoom Public culminating performance with a live audience Fall 2026 Schedule Program Dates: September 10 – December 12, 2026 Zoom Sessions Thursdays | 7:15–9:15 PM (PT) September 10 & 24 October 1, 8 & 22 November 5, 12 & 19 December 3 plus Zoom Dress Rehearsal on Dec 10 In-Person Rehearsals at The Marsh SF Studio Saturdays | 10am-3pm October 3",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://themarsh.org/suraya-keating-soul-story-theater-solo-performance-program-for-women/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-08-22T17:28:42.838285Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-09-10",
              "run_id": "run_f0998957edb6",
              "run_label": "Soul Story Theater, Sep 10 – Dec 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_2e6cb74d9b15",
              "venue_id": "venue_bargetto_winery",
              "title": "Beach Cowboys at Thursday Night Music!",
              "event_time": "09/10/2026 6:00 pm - 8:00 pm",
              "venue_name": "Bargetto Winery",
              "event_start": "2026-09-10T18:00:00",
              "event_date": "2026-09-10",
              "venue_address": "3535 N Main St, Soquel, CA 95073",
              "description": "Join us at Bargetto Winery in Soquel on Thursday evenings for Live Music and Wine! 6-8PM No cover charge. Wine by-the-glass for purchase. Food will be available for purchase by ITALIAFIRE Open seating, no reservations required. No outside food is permitted. For more info please call: (831) 475-2258",
              "event_types": [
                "live_music"
              ],
              "price_info": "No cover charge",
              "url": "https://bargetto.com/events2/beach-cowboys-live-at-thursday-night-music-573/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bargetto_winery",
                  "source_name": "Bargetto Winery",
                  "fetched_at": "2026-08-22T19:05:36.747276Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bargetto_winery|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fba376a1cfce",
              "venue_id": "venue_sc_museum_nat_history",
              "title": "Edge of Survival",
              "event_time": "September 10 @ 6:00 pm",
              "venue_name": "Santa Cruz Museum of Natural History",
              "event_start": "2026-09-10T18:00:00",
              "event_date": "2026-09-10",
              "venue_address": "1305 E Cliff Dr, Santa Cruz, CA 95062",
              "description": "Join the Monterey Bay Salmon and Trout Project for an overview of salmonids, their lifecycle, ecology, and the natural and human-caused threats they face. Learn more about the history of MBSTP, their  various programs, and how they contribute to salmonid conservation in the Monterey Bay. This lecture will explore the differences between hatchery models, highlighting...",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzmuseum.org/event/edge-of-survival-coho-salmon-in-central-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sc_museum_nat_history",
                  "source_name": "Santa Cruz Museum of Natural History",
                  "fetched_at": "2026-08-22T19:25:35.374632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sc_museum_nat_history|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3fef4d18938a",
              "venue_id": "venue_scpl_downtown",
              "title": "Wings Birth Certificate & Notary Services",
              "event_time": "September 10 2026 10:30am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-10T10:30:00",
              "event_date": "2026-09-10",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Wings provides free birth certificates and notary services for people experiencing homelessness.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15565074",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a6cb9a149d0a",
              "venue_id": "venue_scpl_downtown",
              "title": "Whispering Whiskers",
              "event_time": "September 10 2026 10:30am - 11:00am",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-10T10:30:00",
              "event_date": "2026-09-10",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Meow-wow! Come read and learn about kittens with the Santa Cruz County Animal Shelter!",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17040119",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ac219386c646",
              "venue_id": "venue_scpl_downtown",
              "title": "Rabid Reader Book Discussion",
              "event_time": "September 10 2026 10:30am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-10T10:30:00",
              "event_date": "2026-09-10",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "The Aptos Library Book Discussion Group meets 2nd Thursdays, 1-2:30pm, in-person or via Zoom. Adult readers choose thought-provoking fiction & nonfiction. Email judybookdoc@collegepathfinders.com.",
              "event_types": [
                "literary"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17071057",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_77382aa19977",
              "venue_id": "venue_scpl_downtown",
              "title": "Families, Youth and Prevention Subcommittee (JAG)",
              "event_time": "September 10 2026 11:00am - 12:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-10T11:00:00",
              "event_date": "2026-09-10",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Quarterly meeting of Families, Youth and Prevention subcommittee of the Justice and Gender Commission",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16049459",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2677d94e7bcd",
              "venue_id": "venue_scpl_downtown",
              "title": "Preschool Story Time @ Live Oak",
              "event_time": "September 10 2026 11:00am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-10T11:00:00",
              "event_date": "2026-09-10",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Songs and Stories",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17067768",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_dffe4af10f9d",
              "venue_id": "venue_scpl_downtown",
              "title": "Tech Talks: Storage and Backups (Apple)",
              "event_time": "September 10 2026 11:00am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-10T11:00:00",
              "event_date": "2026-09-10",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "What's Your Backup and Storage Strategy?",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17139040",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1ffd8388b5ca",
              "venue_id": "venue_scpl_downtown",
              "title": "Spirituality of Aging",
              "event_time": "September 10 2026 12:00pm - 1:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-10T12:00:00",
              "event_date": "2026-09-10",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Join Dr. Illana Berger, Roshi, a Zen teacher and spiritual elder guide with more than 25 years of experience for this four week course on the spirituality of aging.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16578350",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_666df8830db1",
              "venue_id": "venue_scpl_downtown",
              "title": "Housing Matters Drop in Hours & Miracle Messages",
              "event_time": "September 10 2026 1:00pm - 3:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-10T13:00:00",
              "event_date": "2026-09-10",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Housing resources and other services for those experiencing homelessness.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15565125",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_df52de2c2237",
              "venue_id": "venue_scpl_downtown",
              "title": "Mah Jongg Club",
              "event_time": "September 10 2026 2:00pm - 4:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-10T14:00:00",
              "event_date": "2026-09-10",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Play Mahjong with fellow enthusiasts! Beginners welcome with weekly Hong Kong Style lessons. Other styles offered too. Tiles provided or bring your own.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/14528995",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9a67b58de216",
              "venue_id": "venue_scpl_downtown",
              "title": "In-person Tech Help @ Boulder Creek",
              "event_time": "September 10 2026 2:00pm - 4:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-10T14:00:00",
              "event_date": "2026-09-10",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Are you stuck with a technology question? You can make a free appointment with a tech savvy library staff member!",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17080799",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a0842bb26d24",
              "venue_id": "venue_scpl_downtown",
              "title": "Afternoon STEAM: Minecraft @ Branciforte",
              "event_time": "September 10 2026 3:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-10T15:00:00",
              "event_date": "2026-09-10",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Learn how to craft, build, and survive in the world of Minecraft.edu.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15352598",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_eccfe52fa41e",
              "venue_id": "venue_scpl_downtown",
              "title": "Make & Explore @ Felton",
              "event_time": "September 10 2026 3:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-10T15:00:00",
              "event_date": "2026-09-10",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Make and explore STEAM possibilities at Felton Branch Library! Age 6+",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15413154",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_afc93103a657",
              "venue_id": "venue_scpl_downtown",
              "title": "Pokemon @ LOLA",
              "event_time": "September 10 2026 3:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-10T15:00:00",
              "event_date": "2026-09-10",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Bring your decks and get ready to play",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16085259",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cbf2aa082fd0",
              "venue_id": "venue_scpl_downtown",
              "title": "R.E.A.D. Program",
              "event_time": "September 10 2026 3:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-10T15:00:00",
              "event_date": "2026-09-10",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "R.E.A.D. is one-on-one reading and comprehension instruction for readers 1st through 12th grade.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17037164",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5cb9241fc271",
              "venue_id": "venue_scpl_downtown",
              "title": "R.E.A.D.: Reach Every Amazing Detail @ Felton",
              "event_time": "September 10 2026 3:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-10T15:00:00",
              "event_date": "2026-09-10",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "R.E.A.D. is one-on-one reading comprehension instruction for grades 1-12. By appointment only. Please, no drop-ins! To make an appointment, call 831-427-7713.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17185903",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_708e8a049c09",
              "venue_id": "venue_scpl_downtown",
              "title": "Friends of the Garfield Park Library Meeting",
              "event_time": "September 10 2026 3:00pm - 4:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-10T15:00:00",
              "event_date": "2026-09-10",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Welcome to the Garfield Park Library Friends Chapter! Join our community supporting the library through volunteering, fundraising, and events that enrich services and inspire a love of learning.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17193422",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6e9fcde91988",
              "venue_id": "venue_scpl_downtown",
              "title": "Kids Crafternoon @ La Selva Beach",
              "event_time": "September 10 2026 4:00pm - 5:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-10T16:00:00",
              "event_date": "2026-09-10",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Stop by each week for a new creative craft.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16975681",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a4225a43ded7",
              "venue_id": "venue_scpl_downtown",
              "title": "Conversations in Español",
              "event_time": "September 10 2026 4:30pm - 5:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-10T16:30:00",
              "event_date": "2026-09-10",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "This club is designed for intermediate-level participants, so if you're just starting out, you might find it a bit challenging at first.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15545238",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_67c1dd7eb63d",
              "venue_id": "venue_stookeys_blue_room",
              "title": "Emmett Van Leer Quartet",
              "event_time": "Thu, Sep 10 at 8-10:30pm",
              "venue_name": "Stookey's Blue Room",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "1523 Sutter St, San Francisco, CA 94109",
              "description": "Providence-born jazz pianist and composer Emmett Van Leer leads a piano-centered modern-jazz quartet at Stookey’s Blue Room on Thursday, September 10, from 8:00–10:30 PM, joined by Rabiah Kabir on flute,...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No Cover",
              "url": "https://www.stookeysblueroom.com/event-details/emmett-van-leer-quartet",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stookeys_blue_room",
                  "source_name": "Stookey's Blue Room",
                  "fetched_at": "2026-08-24T10:30:15.157985Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:49.350985Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stookeys_blue_room|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_162eb0935dd0",
              "venue_id": "venue_the_fireside",
              "title": "2Nd Thursdays With Guitarist: Don Balistreri",
              "event_time": "SEP 10 2026",
              "venue_name": "The Fireside",
              "event_start": "2026-09-10",
              "event_date": "2026-09-10",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "The Fireside Lounge sits in Alameda’s West End, in the stretch of Webster Street that has a bunch of small restaurants, cafes, and bars clustered together. Inside, it feels like a laid‑back neighborhood bar that also happens to host a lot of events. There is a real fireplace that people tend to gravitate toward on cooler nights, and the main bar area is anchored by an old art deco barback. more...",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.thefiresidelounge.com/#!/e/2nd-thursdays-with-guitarist-don-balistreri",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-08-24T11:04:43.394724Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fireside|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3c17a5ed6650",
              "venue_id": "venue_the_sound_room",
              "title": "Hot Club SF with Stella Heath",
              "event_time": "Thursday, September 10, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-09-10T19:30:00",
              "event_date": "2026-09-10",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Experience the timeless sound of Paris with The Hot Club of San Francisco featuring acclaimed jazz vocalist Stella Heath. Inspired by the legendary Quintette du Hot Club de France, this ensemble brings the exhilarating spirit of Django Reinhardt and Stéphane Grappelli to life while expanding the tradition with beloved swing standards, French chansons, and original arrangements.\n\nKnown for their virtuosic musicianship, joyful interplay, and captivating stage presence, The Hot Club of San Francisco has been one of the premier ensembles celebrating gypsy jazz for decades. Stella Heath is recognized for her historically informed approach to early jazz and chanson, blending expressive storytelling, playful improvisation, and a deep knowledge of the music's cultural roots. Fluent in both the swing tradition and the French songbook, she brings warmth, wit, and authenticity to performances that honor the past while feeling fresh and immediate.\n\nThis showcase celebrates the rich musical dialogue between American and French culture and music. From driving guitar rhythms and dazzling improvisation to intimate ballads and infectious melodies, audiences are transported to the cafés of 1930s Paris while experiencing a vibrant, contemporary performance that is as entertaining as it is musically exceptional.\n\nStella Heath is a captivating jazz vocalist, storyteller, and educator. Equally at home interpreting the music of Billie Holiday, Ella Fitzgerald, Nat \"King\" Cole, Edith Piaf, and the French Hot Club tradition, Heath combines expressive vocals, joyful swing, and an improviser's sensibility with rich historical storytelling that brings audiences into the world behind the songs.\n\nWhether leading her acclaimed productions The Billie Holiday Project, Stella Swings Ella, From Billie Holiday to Edith Piaf, or performing with leading jazz artists throughout the country, Heath creates concerts that are engaging and musically compelling. Drawing on a background in classical voice as well as Shakespearean theatre, she brings warmth, sophistication, and authenticity to every performance. Her lustrous voice, playful spontaneity, and deep respect for jazz history have earned her a devoted following from coast to coast.\n\nTickets at Hot Club SF with Stella Heath",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/hot-club-sf-with-stella-heath",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-08-26T10:25:42.190144Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d5ed72d9a6cf",
              "venue_id": "venue_la_pena",
              "title": "La Cumbia ft. DJ Rabeat",
              "event_time": "September 10 @ 8:00 pm",
              "venue_name": "La Pena",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "3105 Shattuck Ave, Berkeley, CA 94705",
              "description": "La Peña Presents: La Cumbia @ La Peña! Every 2nd Thursday of the month! Tickets available soon! Cumbia is back at La Peña, happening every second Thursday of the month! […]",
              "event_types": [
                "dj_party",
                "dance",
                "workshop"
              ],
              "price_info": "$10 – $15",
              "url": "https://lapena.org/event/la-cumbia-at-la-pena-ft-dj-rabeat-9-10/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_la_pena",
                  "source_name": "La Pena",
                  "fetched_at": "2026-08-26T11:21:24.604733Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_la_pena|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_76c23478e36e",
              "venue_id": "venue_bookshop_santa_cruz",
              "title": "SARA KEHAULANI GOO, KULEANA",
              "event_time": "Thu, 9/10/2026 7:00pm - 8:00pm",
              "venue_name": "Bookshop Santa Cruz",
              "event_start": "2026-09-10T19:00:00",
              "event_date": "2026-09-10",
              "venue_address": "1520 Pacific Ave, Santa Cruz, CA 95060",
              "description": "FREE IN-STORE EVENT: Bookshop Santa Cruz welcomes Sara Kehaulani Goo for a reading and signing of Kuleana: A Story of Family, Land, and Legacy in Old Hawai'i, now available in paperback. Set in one...",
              "event_types": [
                "literary"
              ],
              "price_info": "",
              "url": "https://bookshopsantacruz.com/kuleana",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bookshop_santa_cruz",
                  "source_name": "Bookshop Santa Cruz",
                  "fetched_at": "2026-08-27T22:11:24.045604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bookshop_santa_cruz|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fbc21a0a6b0b",
              "venue_id": "venue_the_freight__salvage",
              "title": "Ballaké Sissoko and Piers Faccini",
              "event_time": "2026-09-10T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-10T19:00:00",
              "event_date": "2026-09-10",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "worldclassmusic.live and The Freight proudly present Ballake Sissoko and Piers Faccini www.ballakesissoko.com Thursday 9/10 Saturday 9/12 doors 7pm / showtime 8pm The new album is available on CD and vinyl at ticket check-out! 'gentle, captivating work.... poetic songs soaked in nature imagery and beautifully married to Sissoko’s intricate, dazzling playing' - The Guardian Two decades after their first ever collaboration, British-Italian folk songwriter, Piers Faccini, and Malian kora virtuoso, Ballaké Sissoko, return with a mesmerizing album. This new and captivating musical dialogue — between a prodigious instrumentalist at the height of his powers and a gifted songwriter and wordsmith — deftly bridges continents and traditions, inventing new song forms. The seeds of Our Calling were first planted when Sissoko and Faccini met at Label Bleu in the early 2000s. Their friendship grew as they linked and explored uncharted paths between Manding traditions and folksong forms. With its ten finely crafted tracks, Our Calling is a sonic and narrative praise song for migration in all its manifestations: seeds borne by the winds; Nightingales flying between West Africa and Europe at the turn of the seasons; humans, across the centuries, and along trade routes, sharing musical practices and rhythms. The album’s originality is that it feels deeply Malian at its core, while also being seamlessly infused with an essence of folk songwriting; the two elements blending without one ever overshadowing the other. The duo’s ambition when they began imagining the album was clear: the musical language begins and ends with Manding traditions and modes. The songs had that creative brief. Their melodies, although sung in English, are constructed and stepped along Manding lines. The originality of Sissoko and Faccini’s dialogue is best exemplified with the song “If Nothing is Real” — a song that succeeds in finding a home away from home, both on the African and European continents. It is a t",
              "event_types": [
                "live_music",
                "latin_world",
                "folk"
              ],
              "price_info": "TICKETS SOLD BY CO-PRESENTER",
              "url": "https://tickets.worldclassmusic.live/events/wcml/2276359",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ee9db0cfaf32",
              "venue_id": "venue_sfjazz_lab",
              "title": "PAUL CORNISH TRIO",
              "event_time": "2026-09-10 7:00 PM",
              "venue_name": "SFJAZZ Lab",
              "event_start": "2026-09-10T19:00:00",
              "event_date": "2026-09-10",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "A pianist and composer best known for his work with Joshua Redman, Paul Cornish sets down in Joe Henderson Lab with his finely minted trio and music from his newest Blue Note release You’re Exaggerating! Hailing from the Houston hotbed of jazz talent, and shaped by the rich musical culture of Los Angeles, Paul Cornish has rapidly emerged as one of the most compelling young pianists in contemporary jazz. Equally grounded in gospel, classical music, hip-hop, and modern improvisation, Cornish developed a distinctive voice that balances technical sophistication with emotional openness. After studying at the prestigious Thelonious Monk Institute of Jazz Performance at UCLA and winning the American Jazz Piano Competition in 2018, he went on to perform with major artists including Joshua Redman, Terrace Martin, and Snoh Aalegra, establishing himself as both an imaginative accompanist and a daring bandleader. Cornish’s artistry has drawn widespread acclaim for its lyricism, rhythmic elasticity, and fearless harmonic language. His signing to Blue Note Records marked a significant milestone, placing him within one of jazz’s most storied legacies while signaling the arrival of a major new creative force. With You’re Exaggerating! , Cornish and his trio deliver a vibrant, deeply personal statement—music that moves fluidly between groove, abstraction, and cinematic beauty, revealing an artist pushing modern jazz toward exhilarating new horizons.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/paul-cornish-trio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_lab|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_73d5e52e4924",
              "venue_id": "venue_sfjazz_miner",
              "title": "CHRISTIAN MCBRIDE",
              "event_time": "2026-09-10 7:30 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-09-10T19:30:00",
              "event_date": "2026-09-10",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "w/ Benny Green & Gregory Hutchinson",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/christian-mcbride-ray-brown-centennial-celebration/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_4ef8b4bf25ef",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Grabado Comunal",
              "event_time": "2026-09-10 6:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-09-10T18:00:00",
              "event_date": "2026-09-10",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "An invitation for community to shared and stamp  their  stories and their community  trhough a carving session hosted by Oaxacan  printmaker Pavel Acevado. Pavel and community will carve in collaboration a  6 feet Humpback carving whale, an ancient mammal that thrives to this oceans. This evento is FREE to the public, no experience necessary all materials are provide by the artists. \n\nPavel Acevedo, originally from Oaxaca, Mexico, is a contemporary relief printmaker whose work explores themes of migration, identity, and cultural hybridity. Moving to California in 2010, Acevedo has built a practice rooted in both his Oaxacan heritage and his lived experiences as an immigrant in the United States. His art reflects a dialogue that is neither strictly Mexican nor American, but instead a layered, contemporary reality shaped by crossing borders and adapting to new environments.\n\nWorking primarily in relief printmaking, Acevedo employs plywood and linoleum blocks to create powerful portraits and images that draw upon the pre-Hispanic codex as well as contemporary urban life. His subjects often include friends, community members, and symbolic figures that embody the diverse populations of California. By weaving together references to ancient visual traditions and modern narratives, he constructs imagery that speaks to continuity, resilience, and transformation within migrant experiences.\n\nAcevedo’s educational foundation was formed at the School of Fine Arts Oaxaca (Escuela de Bellas Artes), complemented by workshops at the Rufino Tamayo Workshop, where he deepened his knowledge of printmaking techniques. After relocating to California, he established himself within the artistic communities of Riverside and East Los Angeles. His studio, Urge Palette Art Supplies in Riverside, serves as both a workplace and a hub for creative engagement. His prints and murals can be found throughout the region, including significant displays at the Riverside Art Museum and in public spaces across the city.\n\nAmong his notable projects are his contributions to the Utopia/Dystopia portfolio, curated by artist Miyo Stevens-Gandara. For this series, Acevedo created prints that juxtapose portraits of a solitary woman and two men, symbolizing the multiplicity of narratives that shape the Los Angeles experience. Through such works, Acevedo affirms his role as both an artist and storyteller, chronicling the intersections of culture, migration, and community in contemporary life.",
              "event_types": [
                "workshop",
                "art"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/grabado-comunal-with-pavel-acevedo",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-08-28T14:05:33.197491Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9a72210a485a",
              "venue_id": "venue_temescal_arts_center",
              "title": "Improvisation Workshop - First Tuesdays",
              "event_time": "2026-09-10T20:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Improvisation is the key - hosted by Lewis Jordan. Open Workshop and Playground in free improvisation. Spontaneously Assembled Small Groups will collaborate. Come to listen, to be heard, to see, to move. Inviting musicians, poets, dancers, to a non-hierarchical setting to improvise together. Spontaneously composing or conducting, we'll be on a quest for fire.",
              "event_types": [
                "workshop",
                "experimental"
              ],
              "price_info": "Donations encouraged",
              "url": "https://www.temescalartcenter.org/tacmusic.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-08-28T14:09:19.773505Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-09-10",
              "run_id": "run_16a4ae4ccea6",
              "run_label": "Improvisation Workshop - First Tuesdays, Sep 1 – Dec 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b0d4d21ebcba",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-09-10",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-09-10",
              "event_date": "2026-09-10",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-09-10",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5ec9b8b9e8e8",
              "venue_id": "venue_dawn_club",
              "title": "ADAM KLIPPLE SOUL JAZZ QUINTET",
              "event_time": "Thursday, September 10, 2026 8:00 PM 11:59 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Adam Klipple, who has been described as \"a standout pianist who has gone to school on McCoy Tyner and Cecil Taylor and earned his degree,\" plays piano, Hammond organ, sampler, and a variety of vintage keyboards. He currently is a member of the legendary jazz rock band Blood, Sweat & Tears. He also currently performs and records with jazz phenom Veronica Swift.Adam has recorded and performed onstage with the likes of Ghostface Killah, Lauryn Hill, Graham Haynes, the Sun Ra Arkestra, Craig Harris, Joe Bowie's Defunkt, Sekou Sundiata, Marc Ribot, John Medeski, Kurt Rosenwinkle, Carla Cook, Dave Fiuczynski, David Gilmore, Josh Roseman, Peter Apfelbaum, Jay Rodriguez, Groove Collective, and Smokey Robinson. He has appeared at renowned venues including the Blue Note, Iridium, the Jazz Standard, Blues Alley, and the Knitting Factory, and at jazz festivals around the world.Also a composer and arranger, Adam has earned grants from Jazz at Lincoln Center, the Kennedy Center, Arts International, Meet the Composer, and the U.S. Department of State, enabling him to tour and teach master classes in southeast Asia, the Pacific Rim, Russia, Kyrgyzstan, Uzbekistan, Central Asia, and the Caucasus.  \n\n\n  \n#block-349f92b260170d383e18 {\n    \n    \n    \n\n\n\n  }\n\n  #block-349f92b260170d383e18 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-349f92b260170d383e18 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-349f92b260170d383e18 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-349f92b260170d383e18 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-349f92b260170d383e18 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-349f92b260170d383e18 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.dawnclub.com/music/adam-klipple-quartet-1-swwlf-2redx-gwtbp-9ak3n-p8442-jxlfs-nckgz-ykzks-tgb8m-rttcz-jbwpt-3bnnk-kw3np-mhbk9-2p9h4-ccrkp-tzpjk-cejr9-ln2wg-5pe6f-d22sw-whsmj-9rk74-663re-3pm9w-sral3-hw2tm-9kzxs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-08-28T15:32:50.415811Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-08-30T10:45:25.297409Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_281ee8c1d660",
              "venue_id": "venue_sfmoma",
              "title": "Unsung Surrealists",
              "event_time": "Thursday, Sep 10, 2026 | 6 p.m.",
              "venue_name": "SFMoma",
              "event_start": "2026-09-10T18:00:00",
              "event_date": "2026-09-10",
              "venue_address": "151 Third St, San Francisco, CA 94103",
              "description": "Under the CPRA, you have the right to opt-out of the sale or sharing of your personal information to third parties. These cookies collect information for analytics and to personalize your experience with targeted ads. You may exercise your right to opt out of the sale or sharing of personal information by using this toggle switch. If you opt out we will not be able to offer you personalized ads and will not hand over your personal information to any third parties. Additionally, you may contact our legal department for further clarification about your rights as a California consumer by using this Exercise My Rights link.If you have enabled privacy controls on your browser (such as a plugin), we have to take that as a valid request to opt-out. Therefore we would not be able to track your activity through the web. This may affect our ability to personalize ads according to your preferences.",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.sfmoma.org/event/unsung-surrealists-wolfgang-paalen-and-alice-rahon/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sfmoma",
                  "source_name": "SFMoma",
                  "fetched_at": "2026-08-28T16:39:30.693329Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfmoma|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_735fc252bbea",
              "venue_id": "venue_the_back_room",
              "title": "Mónica María",
              "event_time": "Thu, Sep 10, 8pm - 10pm PDT",
              "venue_name": "Back Room",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "1984 Bonita Ave,Berkeley,CA 94704",
              "description": "",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://events.humanitix.com/monica-maria?hxchl=hex-col",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_back_room",
                  "source_name": "Back Room",
                  "fetched_at": "2026-08-28T18:22:02.750823Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_back_room|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fd038f0c1b50",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Star Wars: Return of the Jedi",
              "event_time": "Thursday, Sep 10, 2026 | 7:30 pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-09-10T19:30:00",
              "event_date": "2026-09-10",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "A cookie is a small piece of data (text file) that a website – when visited by a user – asks your browser to store on your device in order to remember information about you, such as your language preference or login information. Those cookies are set by us and called first-party cookies. We also use third-party cookies – which are cookies from a domain different than the domain of the website you are visiting – for our advertising and marketing efforts. More specifically, we use cookies and other tracking technologies for the following purposes:",
              "event_types": [
                "film",
                "live_music",
                "classical"
              ],
              "price_info": "LEARN MORE",
              "url": "https://www.sfsymphony.org/Buy-Tickets/2026-27/Return-of-the-Jedi",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-08-28T19:38:14.129031Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e09d794497fc",
              "venue_id": "venue_the_lost_church",
              "title": "You’re Going to Die",
              "event_time": "2026-09-10T19:30:00",
              "venue_name": "The Lost Church",
              "event_start": "2026-09-10T19:30:00",
              "event_date": "2026-09-10",
              "venue_address": "988 Columbus Ave, San Francisco, CA 94133",
              "description": "A grief and gratitude open-mic event bringing community members together to share songs, poetry, and prose that explore the human experience of mortality.",
              "event_types": [
                "literary"
              ],
              "price_info": "",
              "url": "https://thelostchurch.my.salesforce-sites.com/ticket#/instances/a0FUh00000BCSgXMAX",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lost_church",
                  "source_name": "The Lost Church",
                  "fetched_at": "2026-08-28T20:03:22.982745Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_lost_church|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_48ad62c861d2",
              "venue_id": "venue_exploratorium",
              "title": "Storytime Science for Kids: Space Is the Place",
              "event_time": "2026-09-10",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-10",
              "event_date": "2026-09-10",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Join us for Storytime Science and enjoy an engaging storybook read-aloud followed by a related activity geared toward children and their grown-ups. Come hear a story, get hands-on, and learn something new!",
              "event_types": [
                "workshop",
                "literary"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/storytime-science-kids-space-place-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-10",
              "run_id": "run_d76b7c3ece9a",
              "run_label": "Storytime Science for Kids: Space Is the Place, Aug 29 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_162f825119fc",
              "venue_id": "venue_exploratorium",
              "title": "Daytime Members-Only Hours",
              "event_time": "2026-09-10",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-10",
              "event_date": "2026-09-10",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Please consider joining us today ! Members are the backbone of our organization and help ensure the continuity of our mission to create inquiry-based experiences that transform learning worldwide. We can’t wait to see you at the museum.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/member-hours",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-10",
              "run_id": "run_e38dfc952011",
              "run_label": "Daytime Members-Only Hours, Aug 30 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_78b2b215fea0",
              "venue_id": "venue_exploratorium",
              "title": "After Dark: Infrastructure",
              "event_time": "Thu, Sep 10 2026 • 6 - 10pm",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-10T18:00:00",
              "event_date": "2026-09-10",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Examine the vital systems that keep our city running, and discover what it takes to keep them resilient.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/after-dark-infrastructure",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f6b1efe9399e",
              "venue_id": "venue_bix",
              "title": "Jazz Duo",
              "event_time": "2026-09-10T19:00:00",
              "venue_name": "Bix",
              "event_start": "2026-09-10T19:00:00",
              "event_date": "2026-09-10",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Jazz Duo",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Never a cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-08-28T21:10:29.119399Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bix|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_88f6d12880ad",
              "venue_id": "venue_neck_of_the_woods",
              "title": "Clement St Comedy",
              "event_time": "Thu, Sep 10 Show: 7:00 pm",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-09-10T19:00:00",
              "event_date": "2026-09-10",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "comedy"
              ],
              "price_info": "$0.00",
              "url": "https://www.neckofthewoodssf.com/tm-event/clement-st-comedy-6/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_neck_of_the_woods",
                  "source_name": "Neck of the Woods",
                  "fetched_at": "2026-08-28T21:30:17.641164Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_145ed0a612e1",
              "venue_id": "venue_club_fox",
              "title": "My Blue Soul – CD Release Party",
              "event_time": "2026-09-10T18:00:00",
              "venue_name": "Club Fox",
              "event_start": "2026-09-10T18:00:00",
              "event_date": "2026-09-10",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Thursday September 10MY BLUE SOUL – CD Release Partyw/Special Guest Performances byMitch Woods, Jinx Jones & The Kingtones, and Niecey LivingSingleDoors 6PM / Show 7PM",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/my-blue-soul-cd-release-party-tickets-1995817618222?aff=oddtdtcreator&keep_tld=true",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-08-28T22:45:26.741794Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_95e9f8779858",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-09-10",
              "venue_name": "De Young",
              "event_start": "2026-09-10",
              "event_date": "2026-09-10",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-10",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_80f7843fda7e",
              "venue_id": "venue_david_brower_center",
              "title": "Zeek Workshop",
              "event_time": "2026-09-10T09:00:00",
              "venue_name": "David Brower Center",
              "event_start": "2026-09-10T09:00:00",
              "event_date": "2026-09-10",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-08-29T00:08:40.517051Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-09-10",
              "run_id": "run_e0a968fcb987",
              "run_label": "Zeek Workshop, Sep 10 – Sep 11",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_ca2d26e53dd5",
              "venue_id": "venue_rootstock_arts",
              "title": "Swamp Lotus",
              "event_time": "Thu, 10 Sep 2026\n7:30 PM (PDT)",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-09-10T19:30:00",
              "event_date": "2026-09-10",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://www.viewcy.com/event/swamp_lotus",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-08-29T00:16:02.821734Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e1065eeb1e37",
              "venue_id": "venue_punch_line",
              "title": "FUMI ABE",
              "event_time": "Sep 10, 2026 8:00 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Japanese-American comedian and writer Fumi Abe delivers his clever, sharp-witted stand-up on millennial life and cultural identity.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/fumi-abe-san-francisco-california-09-10-2026/event/1C0064AD432B8E36",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b163a82eab15",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "COBB'S COMEDY SHOWCASE",
              "event_time": "Thu Sep 10, 2026 7:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-09-10T19:30:00",
              "event_date": "2026-09-10",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "This showcase features a curated lineup of local and touring stand-up comedians performing live at Cobb's Comedy Club.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/cobbs-comedy-showcase-san-francisco-california-09-10-2026/event/1C0064D8226609F4",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_91e9fba3890e",
              "venue_id": "venue_san_jose_improv",
              "title": "Murder Mystery Trivia",
              "event_time": "Sep 10 8:00pm",
              "venue_name": "San Jose Improv",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "62 S 2nd St, San Jose, CA 95113",
              "description": "Put your sleuthing and general trivia knowledge to the test in this interactive crime-solving event. Guests work in teams to crack clues, answer trivia questions, and solve a comedic whodunit mystery.",
              "event_types": [
                "sports"
              ],
              "price_info": "BUY NOW",
              "url": "https://improv.com/sanjose/comic/murder+mystery+trivia/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_improv",
                  "source_name": "San Jose Improv",
                  "fetched_at": "2026-08-29T01:07:49.368865Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_improv|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_33335d258160",
              "venue_id": "venue_felton_music_hall",
              "title": "GREYLAN JAMES",
              "event_time": "2026-09-10T20:00:00",
              "venue_name": "Felton Music Hall",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "6275 Highway 9, Felton, CA 95018",
              "description": "Enjoy an evening of laughs featuring a lineup of stand-up comedians performing live at Felton Music Hall.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_felton_music_hall",
                  "source_name": "Felton Music Hall",
                  "fetched_at": "2026-08-30T10:15:46.824711Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_felton_music_hall|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_af445029528e",
              "venue_id": "venue_the_elbo_room",
              "title": "Comedy Oakland at The Elbo Room",
              "event_time": "2026-09-10T19:30:00",
              "venue_name": "The Elbo Room",
              "event_start": "2026-09-10T19:30:00",
              "event_date": "2026-09-10",
              "venue_address": "311 Broadway, Oakland, CA 94607",
              "description": "Live stand-up comedy in Oakland featuring comedians seen on TV, radio, and major comedy festivals.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Free RSVP / From $0.00",
              "url": "https://dothebay.com/events/2026/9/10/comedy-oakland-at-the-elbo-room-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_elbo_room",
                  "source_name": "The Elbo Room",
                  "fetched_at": "2026-08-31T10:09:45.262566Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_elbo_room|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_714a3c5aedf7",
              "venue_id": "venue_yoshis",
              "title": "DOMINIQUE FILS-AIMÉ",
              "event_time": "September 10, 2026 - 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-10T19:30:00",
              "event_date": "2026-09-10",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "TAKE ADVANTAGE OF 25% OFF THIS SHOW. CODE:SUMMER25 OFFER VALID FOR ONLINE PURCHASES ONLY I OFFER EXPIRES MON, JUN 29 AT 11:59PM PST LIMITED DISCOUNTED TICKETS AVAILABLE",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$40 - $79",
              "url": "https://yoshis.com/events/buy-tickets/dominique-fils-aime/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fdba990856d1",
              "venue_id": "venue_winters",
              "title": "Runaway Fire/tba",
              "event_time": "2026-09-10T20:00:00",
              "venue_name": "Winters",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "Live music performance featuring Runaway Fire.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQF3K2JbmGQ3oyDk4CTl1QJRWuCVxAunADRtnX7nvXsncya7dx6I0X3IsZfAlpaBMWnloVzEqg9CwuFEuNc3xk7CtqZqbmOVf0UQRxGhAu8hFOclrKXrGbtHF0T3jTzMn4YQeSPx3PL36VsTIfxW",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-08-31T12:39:12.063314Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_winters|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_ff904684fb48",
              "venue_id": "venue_cal_academy_of_science",
              "title": "NightLife: For the Birds",
              "event_time": "2026-09-10T18:00:00",
              "venue_name": "Cal Academy of Science",
              "event_start": "2026-09-10T18:00:00",
              "event_date": "2026-09-10",
              "venue_address": "55 Music Concourse Dr, San Francisco, CA 94118",
              "description": "Big bird energy only. Swoop in for insightful talks and wing-worthy surprises all night long.",
              "event_types": [
                "community"
              ],
              "price_info": "$26.00",
              "url": "https://www.calacademy.org/nightlife/nightlife-for-the-birds",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cal_academy_of_science",
                  "source_name": "Cal Academy of Science",
                  "fetched_at": "2026-08-31T12:46:28.638169Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_cal_academy_of_science|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5a42d674798f",
              "venue_id": "venue_boom_boom_room",
              "title": "Robby D & The Efg’s",
              "event_time": "Thu, Sep 10, 2026 Doors: 7 pm // Show: 8:30 pm",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-09-10T20:30:00",
              "event_date": "2026-09-10",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "Date: Thursday Night, September 10thDoors: 7:00PMShow: 8:30PM going 'til 1:30AMTix Price: No Cover Charge/Admission Gratis/ No Tickets Needed   ** ROBBY D and THE EFG's **_______________ ROBBY D and THE EFG's   San Francisco! Get yourself off the couch and move it on up to BBR—Robby D and the EFG’s are hitting it hard all night long kicking off at 8:30pm until 1:30am++   If you’re not in the know, Robby D and the EFG’s is a kick ass show! Our style throws blistering renditions of new wave, funk, soul, and indie rock hits along with our latest and greatest original dance music. We’ll see you on the dance floor 9:00 on Thursday night—don’t miss it! Featuring: ROB DIETRICH - Guitar (Matt Jaffe, Harmonic Law)CHRIS COLMENERO - Bass (King Tide)BRIAN FISHLER - Drums (Bumpin’, Simon Rowe Organ Trio)NATALYN DANIELS - Keys (Girl Swallows Nightingale, Mahawam)   Robby D and the EFG’s are a Bay Area rock and roll band! Playing an original and invigorating mix of high energy dance songs and scandalous slow jams, bandmates Brian Fishler (drums), Chris Colmenero (Bass), and Natalyn Daniels (Keys) join leadsinger and guitarist Rob Dietrich on a quest to bring rooms to life before knocking ‘em dead. One fan has described their music as sounding like the child of Prince and Tom Petty. That might be biologically impossible, but they will 100% take it. What’s an EFG?Come to the show an learn the shocking truth!  We’re absolutely stoked to be at Boom Boom Room! This is a fantastic club and the exact type of venue our music was made for.    We’ve got new original tunes and dance charged originals you will be shaking that ass!  Please join us .. it's gonna be a wonderful night!_______________ No Cover Charge/Admission Gratis/ No Tickets Needed",
              "event_types": [
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://boomboomroom.com/event/robby-d-the-efgs-no-cover-charge-7/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-08-31T14:05:05.078255Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_da23fca8eb8c",
              "venue_id": "venue_dna_lounge",
              "title": "PIG",
              "event_time": "Thu Sep 10",
              "venue_name": "DNA Lounge",
              "event_start": "2026-09-10",
              "event_date": "2026-09-10",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "Pig!\n\tIndustrial, Dark Electro! Pig is Raymond Watts, a British\n\tmusician whose brand of electronic rock is danceable and deadly\n\tserious in turn. Watts's words spring from the well of gallows humor\n\tin a world of corruscating cruelty and truth. Pig climbs peaks and\n\tmines troughs, as musical genres slide and collide like tectonic\n\tplates. Cyanotic's sound is perpetuated with rumbling bass lines and\n\tscreeching guitar, punctuated by the pounding of drums and the eerie\n\twail of electronic synths.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.dnalounge.com/calendar/2026/09-10d.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dna_lounge",
                  "source_name": "DNA Lounge",
                  "fetched_at": "2026-08-31T14:15:19.938818Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_878ce1a1ddaa",
              "venue_id": "venue_ashkenaz",
              "title": "Ann Savoy & The Magnolia Sisters",
              "event_time": "09/10/2026 7:30 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-09-10T19:30:00",
              "event_date": "2026-09-10",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "Cuban Dance Music & Tropical Jazz",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/193559",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-08-31T14:45:33.243069Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_54b3e0a6015e",
              "venue_id": "venue_yerba_buena_center",
              "title": "GaHee Park: Behind the Curtain",
              "event_time": "2026-09-10",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-10",
              "event_date": "2026-09-10",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Park invites us to peek behind the curtain, as she lays claim to her own power as a surrealist painter working across fantasy and intimacy.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/gahee-park-behind-the-curtain/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-10",
              "run_id": "run_5353f80886f6",
              "run_label": "GaHee Park: Behind the Curtain, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d3276194b180",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dream",
              "event_time": "2026-09-10",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-10",
              "event_date": "2026-09-10",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public art installation commissioned by YBCA and co-sponsored by San Francisco Public Works.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dream-public-art/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-10",
              "run_id": "run_b6a5ba4e8809",
              "run_label": "Dream, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fc7cfd6523c2",
              "venue_id": "venue_yerba_buena_center",
              "title": "SoMa Mahal Kita",
              "event_time": "2026-09-10",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-10",
              "event_date": "2026-09-10",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A message of love for the SoMa neighborhood and community, inspired by weaving practices in the Phillipines and the colors of the Filipino flag.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/soma-mahal-kita-soma-i-love-you-ciriaco-sayoc/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-10",
              "run_id": "run_0c5141fff335",
              "run_label": "SoMa Mahal Kita, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4b007221b1b2",
              "venue_id": "venue_yerba_buena_center",
              "title": "We Rooted in Flight",
              "event_time": "2026-09-10",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-10",
              "event_date": "2026-09-10",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public artwork inviting passerbyers to join in the journey of collective flight",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/we-fly-for-a-liberated-we-we-rooted-in-flight/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-10",
              "run_id": "run_1d34139aedcf",
              "run_label": "We Rooted in Flight, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9ccfef0ae23c",
              "venue_id": "venue_club_fugazi",
              "title": "Story Night with Diane Amos",
              "event_time": "2026-09-10T19:30:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-10T19:30:00",
              "event_date": "2026-09-10",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "literary",
                "theater"
              ],
              "price_info": "$27.50 Pre-Sale / $33 Walk-up",
              "url": "https://www.clubfugazisf.com/funny",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_65d3c92e6a0c",
              "venue_id": "venue_pier_23",
              "title": "KEN SEIDEMAN TRIO",
              "event_time": "Thursday, September 10, 2026 4:00 PM\n              \n              7:00 PM",
              "venue_name": "Pier 23",
              "event_start": "2026-09-10T16:00:00",
              "event_date": "2026-09-10",
              "venue_address": "23 The Embarcadero,San Francisco, CA 94111",
              "description": "The Ken Seideman Jazz Trio blends traditional jazz with an eclectic mix of blues, rock, and the occasional country flair. With a deep-rooted passion for music, Ken Seideman (piano), Ed Molyneaux (bass), and Tim Caldwell (drums) bring their unique talents and extensive musical backgrounds to every performance.Join us tonight for an unforgettable musical experience that that will rtake you on a journey of rhythm, harmony, and artistry. Bring a friend!",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.pier23cafe.com/events/2026/10/10/ken-seideman-trio",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pier_23",
                  "source_name": "Pier 23",
                  "fetched_at": "2026-08-31T15:57:39.793972Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:49.350985Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pier_23|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7cb0695fe7cb",
              "venue_id": "venue_magic_theatre",
              "title": "African Stew",
              "event_time": "Thu, Sep 10, 2026 8:00 PM",
              "venue_name": "Magic Theatre",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "Lorraine Hansberry Theatre\n\nPresents\nAfrican Stew by Lisa B. Thompson",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://magictheatre.org/calendar/a-rashomon-46dxw",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_magic_theatre",
                  "source_name": "Magic Theatre",
                  "fetched_at": "2026-08-31T16:15:16.566450Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_magic_theatre|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b9a62c220795",
              "venue_id": "venue_biscuits__blues",
              "title": "Darnell Cole and the Vibe",
              "event_time": "2026-09-10T19:00:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-09-10T19:00:00",
              "event_date": "2026-09-10",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "Pasadena guitarist Darnell Cole fronts a powerhouse blues-rock trio swinging from gospel testimony to Sly and the Family Stone funk.",
              "event_types": [
                "live_music",
                "rock",
                "rnb_soul_funk"
              ],
              "price_info": "$15 - $45",
              "url": "https://biscuitsandblues.com",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-08-31T16:25:33.031111Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_e348183cdfda",
              "venue_id": "venue_chase_center",
              "title": "Premium Suites",
              "event_time": "2026-09-10T18:45:00",
              "venue_name": "Chase Center",
              "event_start": "2026-09-10T18:45:00",
              "event_date": "2026-09-10",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "At Select-A-Suite on Thursday, September 17, 2026, not only will you have the opportunity to reserve your suites before they are released to the public, but attendees can also enjoy complimentary food and beverage tastings throughout the event, network with fans and business professionals, and have the opportunity to capture a photo with the Larry O'Brien Trophies.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://chasecenter.com/premium-experiences/premium-suites/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-08-31T17:38:13.687686Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-09-10",
              "run_id": "run_bed5be826f7c",
              "run_label": "Premium Suites, Sep 10 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4e918f1b6aaa",
              "venue_id": "venue_great_star_theater",
              "title": "Elton Dom: The Young Elton Experience",
              "event_time": "September 10, 2026",
              "venue_name": "Great Star Theater",
              "event_start": "2026-09-10",
              "event_date": "2026-09-10",
              "venue_address": "636 Jackson Street, San Francisco, CA 94133",
              "description": "Be transported back to the birth of a legend. As Elton Dom, 21-year-old musical prodigy DOMINICK FULCO doesn’t just sing the hits—he becomes the era-defining icon who first stormed the stage with raw energy and outrageous glamour. Backed by a powerhouse 9-piece band, Elton Dom blazes through Sir Elton’s greatest hits with the frenetic passion of the early '70s, capturing every note, every flamboyant flick of the wrist, and every ounce of rock 'n' roll spectacle that made Elton John a global superstar. Forget the gentle nostalgia—this high-voltage, piano-pounding show is not just a tribute; it’s a time machine.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Tickets and More Info Here",
              "url": "https://www.greatstartheater.org/airotic",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_great_star_theater",
                  "source_name": "Great Star Theater",
                  "fetched_at": "2026-08-31T18:08:20.593452Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_star_theater|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f543e21411ce",
              "venue_id": "venue_the_knockout",
              "title": "Analog Africa & Rasta Pasta Records",
              "event_time": "Thu 10 Sep ― 8:00pm",
              "venue_name": "The Knockout",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "ANALOG AFRICA & RASTA PASTA RECORDS ON TOUR! AFROBEAT DANCE PARTY! OUR DJs WILL BE LAYING DOWN BRAND NEW FLOOR FILLING AFRO GROOVES AND TROPICAL KILLERS ON VINYL ALL NIGHT LONG! IT’S GONNA BE A TUFF SWINGING EVENT YOU WON’T WANNA MISSI! • DOORS 8PM • SHOW ...",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$11.33",
              "url": "https://link.dice.fm/L58eb02fc958?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-09-02T10:33:16.877437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_956532cfad9a",
              "venue_id": "venue_the_saloon",
              "title": "Rayner Brock",
              "event_time": "September 10 @ 4:00 pm - 8:00 pm",
              "venue_name": "The Saloon",
              "event_start": "2026-09-10T16:00:00",
              "event_date": "2026-09-10",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "Rayner Brock is a vocalist, musician, and songwriter appearing at The Saloon, leading a band that features Bruce Zwieg on keyboards, Marcus David on drums, and Brock on guitar and vocals. Beginning on electric bass and later extending his work to voice, guitar, keys, and studio production, he has moved from years as a sideman...",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/rayner-brock-5/2026-09-10/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:49.350985Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_saloon|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_ef9229eb9640",
              "venue_id": "venue_the_grove",
              "title": "Ian Santillano",
              "event_time": "September 10 @ 5:00 pm - 8:00 pm",
              "venue_name": "The Grove",
              "event_start": "2026-09-10T17:00:00",
              "event_date": "2026-09-10",
              "venue_address": "690 Mission St, San Francisco, CA 94105",
              "description": "Ian Santillano is a Hayward-born Filipino-American singer, songwriter, guitarist, and producer appearing at The Grove. A second-generation genre-bending artist, he blends clever harmonies, soulful melodies, and vulnerable lyrics with exceptional guitar work, drawing on a range of influences to create an intimate, emotionally resonant set well suited to The Grove's relaxed neighborhood café atmosphere.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/ian-santillano/2026-09-10/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:49.350985Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_grove|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_1375ac402c43",
              "venue_id": "venue_scopo_divino",
              "title": "Viajó de la Música",
              "event_time": "September 10 @ 6:00 pm - 9:00 pm",
              "venue_name": "Scopo Divino",
              "event_start": "2026-09-10T18:00:00",
              "event_date": "2026-09-10",
              "venue_address": "2800 California St, San Francisco, CA 94115",
              "description": "Viajó de la Música brings a traveling soundtrack of Latin jazz, boleros to the intimate wine‑bar glow of Scopo Divino. Led by saxophonist Renner, this jazz quartet moves effortlessly from...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/latin-jazz-with-viajo-de-la-musica-2/2026-09-10/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:49.350985Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scopo_divino|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_8371ed75c78a",
              "venue_id": "venue_comstock_saloon",
              "title": "Katy Stephan",
              "event_time": "September 10 @ 8:00 pm - 11:00 pm",
              "venue_name": "Comstock Saloon",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "155 Columbus Ave, San Francisco, CA 94133",
              "description": "Kathy Stephan brings torch songs, swing standards, and a touch of twang to the Comstock Saloon’s polished‑but‑raucous barroom. Her voice leans into the room’s natural reverb, floating over brushed drums, piano, and upright bass while cocktails clink and the lights stay low. Expect classic tunes, a few deep‑cut surprises, and the kind of between‑song banter...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/kathy-stephan/2026-09-10/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:49.350985Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_comstock_saloon|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_097bdef4da8f",
              "venue_id": "venue_lions_den",
              "title": "Rotating Bands at the Lion’s Den",
              "event_time": "September 10 @ 8:00 pm - 11:00 pm",
              "venue_name": "Lion's Den",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "57 Wentworth Pl, San Francisco, CA 94108",
              "description": "Experience the resurgence of San Francisco’s historic Chinatown nightlife at the Lion’s Den.  Tucked away on Wentworth Place, this bi-level lounge and performance space blends modern cocktail culture with the East meets West spirit of the Chinatown’s golden age. Every week, the venue transforms into a unique destination for live music, featuring a rotating roster...",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/live-music-at-the-lions-den-2-2/2026-09-10/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:49.350985Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_lions_den|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_d7a2daa9d7a6",
              "venue_id": "venue_local_edition",
              "title": "WestSide Jazz Club",
              "event_time": "September 10 @ 8:00 pm - 11:59 pm",
              "venue_name": "Local Edition",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Live Performance 8:00pm - 12amFronted by Tenor Saxman Scott Silverberg, WestSide Jazz is what it says it is, a club. A bunch of like minded cats, all digging deep, all the time.WestSide Jazz Club, from the Westside of SF is full of local boys, living here in town, keeping the jazz pot stirred. Always driving, always vibrant. You hear funk when you’d of thought swing. And never mind all the other infectious grooves. Latin, Second Line, Boogie and what not. Cool party band. Killer Chops. You'll wonder why there aren't more local jazz bands like this ! The bands always having fun, feeling it. And how about them Vocals?",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/westside-jazz-club-2/2026-09-10/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:49.350985Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-09-03T12:59:31.047351Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_2d531de4eef7",
              "venue_id": "venue_the_saloon",
              "title": "Cathy Lemons",
              "event_time": "September 10 @ 9:30 pm - 1:30 am",
              "venue_name": "The Saloon",
              "event_start": "2026-09-10T21:30:00",
              "event_date": "2026-09-10",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "The Saloon welcomes legendary blues firebird Cathy Lemons — a Dallas‑born vocalist and songwriter whose “velvety and hypnotic voice, resonant of a female Howlin’ Wolf” has mesmerized audiences for over 30 years. Drawing inspiration from Aretha Franklin, Lou Ann Barton, and Big Mama Thornton, she earned her stripes across Texas, recording with Anson Funderburgh, sharing...",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/cathy-lemons/2026-09-10/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:49.350985Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_saloon|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_bce478b0c70d",
              "venue_id": "venue_discretion_brewing",
              "title": "Medicine Road",
              "event_time": "2026-09-10T17:30:00",
              "venue_name": "Discretion Brewing",
              "event_start": "2026-09-10T17:30:00",
              "event_date": "2026-09-10",
              "venue_address": "2703 41st Ave Ste A, Soquel, CA 95073",
              "description": "Live Music 5:30-8:00pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_discretion_brewing",
                  "source_name": "Discretion Brewing",
                  "fetched_at": "2026-09-02T11:35:03.120781Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_discretion_brewing|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a1bfa2327740",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy",
              "event_time": "2026-09-10T19:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-09-10T19:45:00",
              "event_date": "2026-09-10",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "Stand-up comedy show at Shelton Theater. Listing says each show features five to six hand-picked, experienced comedians and an occasional guest drop-in.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$25.00",
              "url": "https://tickets.cttcomedy.com/events/2556/cheaper-than-therapy-stand-up-comedy-thu-sep-10/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-09-02T11:40:03.690341Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_084aa169a1e8",
              "venue_id": "venue_madrone_art_bar",
              "title": "2-Step THURSDAY with VEOTIS",
              "event_time": "September 10 @ 9:30 pm - 12:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-10T21:30:00",
              "event_date": "2026-09-10",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "2-Step THURSDAY with VEOTIS Soul, Jazz, and Funk Live Music starts at 9:30pm No Cover",
              "event_types": [
                "rnb_soul_funk",
                "jazz",
                "live_music"
              ],
              "price_info": "No Cover",
              "url": "https://madroneartbar.com/event/2-step-thursday-with-veotis-2-2026-09-10/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_62b8b4e592e9",
              "venue_id": "venue_madrone_art_bar",
              "title": "Kitten on The Keys",
              "event_time": "September 10 @ 6:30 pm - 8:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-10T18:30:00",
              "event_date": "2026-09-10",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Happy Hour Entertainment 6:30-8:30PM with Kitten on The Keys Suzanne Ramsey aka Kitten on the Keys is a Bay Area Native who has toured extensively through the US and Europe. Her songbook is deep and wide. Pianist, accordionist, and singer- she plays a hodge podge of styles and eras. Kitschy Cabaret Originals, bawdy blues, unexpected [&hellip;]",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/kitten-on-the-keys-7-2025-12-11-2026-07-09/2026-09-10/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_415bf0c941a5",
              "venue_id": "venue_piedmont_piano_company",
              "title": "Jack West",
              "event_time": "2026-09-10T19:00:00",
              "venue_name": "Piedmont Piano Co",
              "event_start": "2026-09-10T19:00:00",
              "event_date": "2026-09-10",
              "venue_address": "1728 San Pablo Ave, Oakland, CA 94612",
              "description": "WAA Showcase: Jack West's Percussive Acoustic Guitar Duo featuring James Nash, blending folk, jazz, funk, and rock with West's percussive acoustic style.",
              "event_types": [
                "live_music",
                "jazz",
                "folk",
                "rock"
              ],
              "price_info": "General Admission: $25 in advance / $30 at the door",
              "url": "https://piedmontpiano.com/calendar/2026/9/10/jack-west",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_piano_company",
                  "source_name": "Piedmont Piano Co",
                  "fetched_at": "2026-09-03T10:22:09.546608Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_piedmont_piano_company|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_8f60c20eed51",
              "venue_id": "venue_moes_alley",
              "title": "The Snares",
              "event_time": "2026-09-10T20:00:00",
              "venue_name": "Moe's Alley",
              "event_start": "2026-09-10T20:00:00",
              "event_date": "2026-09-10",
              "venue_address": "1535 Commercial Way, Santa Cruz, CA 95065",
              "description": "Show: 8:00 PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_moes_alley",
                  "source_name": "Moe's Alley",
                  "fetched_at": "2026-09-03T10:23:10.512238Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_moes_alley|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_524b8276bb93",
              "venue_id": "venue_kuumbwa_jazz",
              "title": "Nduduzo Makhathini Trio",
              "event_time": "2026-09-10T19:00:00",
              "venue_name": "Kuumbwa Jazz Center",
              "event_start": "2026-09-10T19:00:00",
              "event_date": "2026-09-10",
              "venue_address": "320-2 Cedar St, Santa Cruz, CA 95060",
              "description": "Nduduzo Makhathini is an improvisor, scholar and musicologist at the University of KwaZulu-Natal school of the arts with a PhD in music.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kuumbwa_jazz",
                  "source_name": "Kuumbwa Jazz Center",
                  "fetched_at": "2026-09-03T10:24:11.929813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kuumbwa_jazz|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2a7af1ff2d9e",
              "venue_id": "venue_black_cat",
              "title": "PHER",
              "event_time": "2026-09-10T19:00:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-10T19:00:00",
              "event_date": "2026-09-10",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Soul, jazz, R&B, gospel, and deep groove powered by one of the Bay Area’s most distinctive voices.\n\n\n\n\nOakland-born vocalist and songwriter PHER brings a commanding live presence that moves from intimate storytelling and heartfelt ballads to explosive improvisation and full-band fire. His music blends contemporary R&B, jazz, soul, funk, and gospel into something deeply personal, emotionally direct, and built to connect in the room.\n\n\n\n\nFormerly known as Chris Turner, PHER has recorded and performed with artists including Jon Batiste, Esperanza Spalding, Snarky Puppy, Prince, Stevie Wonder, The Roots, Robert Glasper, Jill Scott, Common, Bilal, and the SFJAZZ Collective.\n\n\n\n\nAs The New York Times wrote: “Mr. Turner is the rare male jazz singer with no time for mannered nostalgia… In his own misty, grooving music, Mr. Turner exudes both composure and longing.”\n\n\n\n\nHis latest album, Songs by PHER, explores love, vulnerability, family, struggle, sensuality, and self-discovery, while his forthcoming PHER Sings the Blues turns toward the jazz tradition through his unmistakable voice.\n\n\n\n\nBand Lineup:\n\nTBA",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://blackcatsf.turntabletickets.com/shows/12809/2026-09-10",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4809cabec16a",
              "venue_id": "venue_black_cat",
              "title": "PHER",
              "event_time": "2026-09-10T21:15:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-10T21:15:00",
              "event_date": "2026-09-10",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Soul, jazz, R&B, gospel, and deep groove powered by one of the Bay Area’s most distinctive voices.\n\n\n\n\nOakland-born vocalist and songwriter PHER brings a commanding live presence that moves from intimate storytelling and heartfelt ballads to explosive improvisation and full-band fire. His music blends contemporary R&B, jazz, soul, funk, and gospel into something deeply personal, emotionally direct, and built to connect in the room.\n\n\n\n\nFormerly known as Chris Turner, PHER has recorded and performed with artists including Jon Batiste, Esperanza Spalding, Snarky Puppy, Prince, Stevie Wonder, The Roots, Robert Glasper, Jill Scott, Common, Bilal, and the SFJAZZ Collective.\n\n\n\n\nAs The New York Times wrote: “Mr. Turner is the rare male jazz singer with no time for mannered nostalgia… In his own misty, grooving music, Mr. Turner exudes both composure and longing.”\n\n\n\n\nHis latest album, Songs by PHER, explores love, vulnerability, family, struggle, sensuality, and self-discovery, while his forthcoming PHER Sings the Blues turns toward the jazz tradition through his unmistakable voice.\n\n\n\n\nBand Lineup:\n\nTBA",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://blackcatsf.turntabletickets.com/shows/12809/2026-09-10",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5c53febe2e05",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Sherri Roberts feat. Harvie S",
              "event_time": "Thursday, September 10, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-10T19:00:00",
              "event_date": "2026-09-10",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Thursday, September 10, 2026 @ 7pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $30 per show",
              "url": "https://keysjazzbistro.com/event/the-sherri-roberts-quartet-feat-harvie-s/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_932b03e92bf0",
              "venue_id": "venue_z_space",
              "title": "San Francisco Hysterical Historium",
              "event_time": "2026-09-10T19:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-09-10T19:00:00",
              "event_date": "2026-09-10",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "Killing My Lobster & Z Space present: San Francisco Hysterical Historium, a Co-Production with Red Barn Productions. Sketch comedy that ain't fool's gold!",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-09-03T10:55:35.787344Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_z_space|2026-09-10",
              "run_id": "run_6cdec2f9a529",
              "run_label": "San Francisco Hysterical Historium, Sep 4 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3c8aec4e6cb9",
              "venue_id": "venue_pacific_film_archive",
              "title": "On Call",
              "event_time": "Sep 10, 2026 7 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-10T19:00:00",
              "event_date": "2026-09-10",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "One small medical office holds an eternity of stories in Alice Diop’s fly-on-the-wall observational documentary that bears witness to a doctor’s steady stream of patients—immigrants, refugees, and undocumented immigrants—as they reveal their physical and mental suffering. “To see On Call is a therapy against the reflexes of exclusion” (Olivier Barlet, Black Camera).",
              "event_types": [
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/on-call",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2c9b93b13088",
              "venue_id": "venue_4_star_theater",
              "title": "Fugs Film with Michael Mouse",
              "event_time": "10 September 2026 7:30 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-10T19:30:00",
              "event_date": "2026-09-10",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "In the 1960’s radical culture breeding ground of downtown New York City, there were two hometown bands – The Velvet Underground and The Fugs. It took time, but today Lou Reed and The Velvets are internationally revered rock & roll legends; The Fugs – not so much. And yet, both bands pushed boundaries with radical sounds and iconic attitudes that influenced rock music more than and other ‘60’s bands. Through interviews with head Fug Ed Sanders and elusive drummer Ken Weaver, as well as underground legends such as Aline & R. Crumb, Lenny Kaye (Patti Smith Group), Chris Stein (Blondie), and others, “FUGS FILM!” recounts the short but highly influential career of The Fugs. A band that fused poetry and Rock and Roll and put the “punk” into folk music. The film also documents the band’s anti-authoritarian political actions defying censorship rules and protesting the Vietnam War - including their famous levitation of the Pentagon in 1967. “FUGS FILM!” is more than just a music doc about an irreverent band, it’s an emotional call for citizens of the world to stand-up for freedom, democracy, and just the right amount of crazy.",
              "event_types": [
                "film",
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/fugs-film",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_82bc98b2baab",
              "venue_id": "venue_cat_club",
              "title": "1984",
              "event_time": "September 10, 2026 9:00 PM",
              "venue_name": "Cat Club",
              "event_start": "2026-09-10T21:00:00",
              "event_date": "2026-09-10",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "The Best of the 80s on 2 Dance Floors\n——\n9pm-2am | No Cover",
              "event_types": [
                "dj_party"
              ],
              "price_info": "No Cover",
              "url": "https://www.sfcatclub.com/calendar/ymp4cekk5sb4y8x-chwt8-3rd9b-ztzra-abpta-7a9be-3m6a8-74c9n-sz9cw-jztgp-ntp9n-nlygf-6j7mm-gfrn9-bgknm-ysm82-fzhm2-krz5d-yzj7d-f4ysm-2d5kp",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cat_club",
                  "source_name": "Cat Club",
                  "fetched_at": "2026-09-03T13:24:58.141502Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c43ac3fd5414",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Happy Hour",
              "event_time": "10 September 2026",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-10",
              "event_date": "2026-09-10",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Take advantage of Etcetera Wine Bar's happy hour specials on select drinks and light fare. It offers a relaxed neighborhood setting to unwind after work or kick off an evening of live music.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-09-03T13:50:21.930604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8ad126b2687c",
              "venue_id": "venue_caravan_lounge",
              "title": "Shrine Goth DJ Night",
              "event_time": "09/10/2026",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-09-10",
              "event_date": "2026-09-10",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "Welcome to The Caravan Lounge THE CARAVAN LOUNGE is a friendly, owner-operated bar located in the heart of downtown San Jose. As well as being one of San Jose’s oldest live music venues, the Caravan provides other fun activities such as karaoke, comedy, burlesque, pool table, and DJ nights. The Caravan is also extremely affordable for those trying to stretch a budget. And let’s not forget the music! All the shows at the Caravan are FREE! Open 7 days a week 2pm – Close “Aside from the obvious draw of affordable libations poured by heavy-handed barkeeps, The Caravan sets itself apart from other no-frills bars as the place to go to see up-and-coming bands. The bar has hosted plenty of local bands’ first shows, and regularly features smaller touring acts. If you’re a music fan always on the lookout for your new favorite group, make sure to pay attention to who is coming to Caravan.” -Metro FEATURED VIDEOS – Go to our YouTube Channel by clicking here to see more… SEPTEMBER 2026 TUES. SEPT 1st- Karaoke with Ronnie Roach WED. SEPT 2nd – The Caravan Lounge Comedy Show hosted by Chelsea Costanza THURS. SEPT 3rd – SWEAT with DJ SNAQ FRI. SEPT 4th – Rebelskamp, Magick Blues Band, TBA SAT. SEPT 5th – Skool Of Sharks TUES. SEPT 8th- Karaoke with Ronnie Roach WED. SEPT 9th – The Caravan Lounge Comedy Show Hosted by Nyoki THURS. SEPT 10th – Shrine Goth DJ Night with Hex Embrace, C_Death, and Owen FRI. SEPT 11th – Circus Of Sin 10 Year Sinnaversary! Hosted By Some Guy SAT. SEPT. 12th – CaveFest II We Love You Curtis Castro! Abysmal Piss, Ominous Ruin, Lost To The Void TUES. SEPT 15th – Karaoke with Ronnie Roach WED. SEPT 16th -The Caravan Lounge Comedy Show Hosted by Ato Walker THURS. SEPT 17th – TBA FRI. SEPT 18th – TBA SAT. SEPT 19th – Facekicker, American Standard, 12 Steps To Nothing TUES. SEPT 22nd – Karaoke with Ronnie Roach WED. SEPT 23rd- The Caravan Lounge Comedy Show hosted by Matt Kennedy THURS. SEPT 24th – Sweethearts DJ Night FRI. SEPT 25th – Ding Mao, Diamantide, Clou",
              "event_types": [
                "dj_party"
              ],
              "price_info": "FREE",
              "url": "http://s172518151.onlinehome.us/caravan/site/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-09-03T14:20:40.572990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9ea2e875edc6",
              "venue_id": "venue_wyldflowr_arts",
              "title": "Swamp Lotus",
              "event_time": "2026-09-10T19:30:00",
              "venue_name": "Wyldflowr Arts",
              "event_start": "2026-09-10T19:30:00",
              "event_date": "2026-09-10",
              "venue_address": "809 37th St, Oakland, CA 94609",
              "description": "Kai Eckhardt's \"Swamp",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_wyldflowr_arts",
                  "source_name": "Wyldflowr Arts",
                  "fetched_at": "2026-09-04T10:03:06.916081Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_wyldflowr_arts|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3afd4b9519d1",
              "venue_id": "venue_hillside_club",
              "title": "Drop-In Meditation",
              "event_time": "Sep 10, 2026, 9:30 AM – 10:30 AM",
              "venue_name": "Hillside Club",
              "event_start": "2026-09-10T09:30:00",
              "event_date": "2026-09-10",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "Free, Weekly Drop-in Guided Meditation group.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.hillsideclub.org/event-details/meditation-for-every-mind-community-drop-in-meditation-group-2026-09-10-09-30",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-09-04T10:10:10.864332Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hillside_club|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_af0fc9f15ec8",
              "venue_id": "venue_poor_house_bistro",
              "title": "Jefe Meduri Famiglia Band",
              "event_time": "2026-09-10T18:00:00",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-09-10T18:00:00",
              "event_date": "2026-09-10",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-09-04T10:11:13.938872Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_516c55be5746",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-09-10",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-10",
              "event_date": "2026-09-10",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "Music by Marc Shaiman & Thomas Meehan. Lyrics by Mark Shaiman & Scott Wittman. A 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to change her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "On Stage Now",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-09-04T10:15:07.852694Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-10",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_72e5d361aa60",
              "venue_id": "venue_roxy",
              "title": "Fantastic Planet",
              "event_time": "Thursday, September 10, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-09-10",
              "event_date": "2026-09-10",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "Nothing else has ever looked or felt like director René Laloux’s animated marvel Fantastic Planet , a politically minded and visually inventive work of science fiction. The film is set on a distant planet called Ygam, where enslaved humans (Oms) are the playthings of giant blue native inhabitants (Draags). After Terr, kept as a pet since infancy, escapes from his gigantic child captor, he is swept up by a band of radical fellow Oms who are resisting the Draags’ oppression and violence. With its eerie, coolly surreal cutout animation by Roland Topor; brilliant psychedelic jazz score by Alain Goraguer; and wondrous creatures and landscapes, this Cannes-awarded 1973 counterculture classic is a perennially compelling statement against conformity and violence.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/fantastic-planet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-09-04T10:24:35.292955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0eb9fe87cacb",
              "venue_id": "venue_roxy",
              "title": "Barrio triste",
              "event_time": "Thursday, September 10, 2026",
              "venue_name": "Roxy",
              "event_start": "2026-09-10",
              "event_date": "2026-09-10",
              "venue_address": "3117 16th St, San Francisco, CA 94103",
              "description": "Medellin, 1987. A group of teen outcasts steals a news camera to document every detail of their dangerous lives. The first feature from acclaimed photographer and Bad Bunny music video director Stillz redefines the found footage genre as a haunting, poignant coming-of-age story with a disturbing twist. Set to an awe-inspiring score by Arca and produced by Harmony Korine’s collective EDGLRD, the film taps into the anxieties of a youth culture from the margins of history yearning to be understood.",
              "event_types": [
                "film"
              ],
              "price_info": "Buy Tickets",
              "url": "https://roxie.com/film/barrio-triste/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roxy",
                  "source_name": "Roxy",
                  "fetched_at": "2026-09-04T10:24:35.292955Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roxy|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e6eff4a2378e",
              "venue_id": "venue_kilowatt",
              "title": "Turnabout & White Ring",
              "event_time": "Thu 10 Sep ― 7:00pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-10T19:00:00",
              "event_date": "2026-09-10",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "**Turnabout:** https://www.instagram.com/tturnaboutt/\n\n**White Ring:** https://www.instagram.com/whitering999/\n\n**Silicone Valley:** https://www.instagram.co...",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$29.87",
              "url": "https://link.dice.fm/w99745e41f16?pid=ff10e59d",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-09-04T10:33:38.052132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_423746b8413c",
              "venue_id": "venue_kilowatt",
              "title": "Professor Bang DJ Set",
              "event_time": "Thu 10 Sep ― 10:00pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-10T22:00:00",
              "event_date": "2026-09-10",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Keep track of what’s coming up by saving events, sharing them with friends, or even listening to new music in the app.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/l0a65a7999f9?pid=ff10e59d",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-09-04T10:33:38.052132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d5197ed5b842",
              "venue_id": "venue_sevys_aptos",
              "title": "Wine30 Thursdays",
              "event_time": "September 10, Thursday 5:00 PM",
              "venue_name": "Sevy's Bar & Kitchen",
              "event_start": "2026-09-10T17:00:00",
              "event_date": "2026-09-10",
              "venue_address": "7500 Old Dominion Ct, Aptos, CA 95003",
              "description": "",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sevys_aptos",
                  "source_name": "Sevy's Bar & Kitchen",
                  "fetched_at": "2026-09-04T10:39:41.919005Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sevys_aptos|2026-09-10",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-09-11": {
          "date": "2026-09-11",
          "updated_at": "2026-09-04T10:39:45.133282Z",
          "events": [
            {
              "event_id": "evt_a2476a809f50",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Bratmobile / The Okmonics",
              "event_time": "Friday September 11 2026 8:00PM doors -- music at 9 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Friday September 11 2026\n 8:00PM doors -- music at 9:00PM\n  •••  ALL AGES\n$35\n$41.81 in advance [35 face value + 6.81 service fee]\nBratmobile \n punk rock\nThe Okmonics \n garage punk rock",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35 $41.51 in advance [35 face value + 6.51 service fee]",
              "url": "http://www.bottomofthehill.com/20260911.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_69a3c12a1a8f",
              "venue_id": "venue_regency_ballroom",
              "title": "Altin Gun, Alex Maas",
              "event_time": "2026-09-11T20:00:00",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Experience a night of Anatolian rock and psychedelic folk featuring the Turkish-Dutch band Altin Gün alongside a performance by Alex Maas. This event brings a unique blend of global rhythms and indie-psych sounds to the Kilowatt stage.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "a/a",
              "url": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQHEK8AyiEyXM10duOsW2Z1PUQoMa-ES5GNRVJBo19lpCsaLVdIOym8dhXVQgrM9i2lx3j8dTqz5FLWVEXjgVekGq0b6NmKsNO8dhLEt1RniEqt-AzY0GGlWITIc7ozL1bFEl6fRIjQAItUr=",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-04-13T04:13:31.972558Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c621ad393647",
              "venue_id": "venue_the_ritz",
              "title": "POWERMAN 5000",
              "event_time": "2026-09-11T19:00:04-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-09-11T19:00:04",
              "event_date": "2026-09-11",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "Industrial metal band Powerman 5000 brings their high-octane sound and sci-fi aesthetic to the stage for a loud and energetic performance. Fans can expect a night of heavy riffs and electronic-infused rock anthems.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25 Advance –  $30 Day-of-Show",
              "url": "https://www.ticketweb.com/event/powerman-5000-the-ritz-tickets/14761163",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-04-13T05:23:07.709302Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_ritz|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7db1035a61c3",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Michael Blaustein: Taste Me Tour",
              "event_time": "September 11, 2026 7:00pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-09-11T19:00:00",
              "event_date": "2026-09-11",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Another Planet Entertainment & Outback present",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thefoxoakland.com/events/michael-blaustein-260911",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-18T07:48:06.867851Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_96239c72daeb",
              "venue_id": "venue_bimbos_365",
              "title": "Super Diamond & Starman SF",
              "event_time": "Sep 11 7pm/8pm",
              "venue_name": "Bimbos 365",
              "event_start": "2026-09-11T19:00:00",
              "event_date": "2026-09-11",
              "venue_address": "1025 Columbus Ave, San Francisco, CA 94133",
              "description": "Another Planet presents Super Diamond - The Neil Diamond Tribute with special guest Starman SF at Bimbo's 365 Club. 21 and up.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://bimbos365club.com/tm-event/super-diamond-5/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bimbos_365",
                  "source_name": "Bimbos 365",
                  "fetched_at": "2026-05-06T11:40:58.948379Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bimbos_365|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ee40c493a4b3",
              "venue_id": "venue_greek_theatre",
              "title": "FOSTER THE PEOPLE",
              "event_time": "September 11, 2026 8:00pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "LIVE 105 presents\nGood Mourning Sunshine Tour - Goth Babe",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thegreekberkeley.com/events/foster-the-people-260911",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-06-01T15:33:04.336593Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_greek_theatre|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7a94f0720991",
              "venue_id": "venue_august_hall",
              "title": "ASAL: KISS THE SUN TOUR",
              "event_time": "sep 11 8pm",
              "venue_name": "August Hall",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.augusthallsf.com/tm-event/asal-kiss-the-sun-tour/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-06-01T16:02:43.081274Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_august_hall|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1698e3d5f737",
              "venue_id": "venue_mountain_winery",
              "title": "Jesse McCartney",
              "event_time": "Sep 11, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-11T19:30:00",
              "event_date": "2026-09-11",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Jesse McCartney Friday, September 11 Doors 5:30PM, Show 7:30PM All Ages to Enter, 21 & Over to Drink The Mountain Winery Buy Tickets Event Info No refunds or exchanges. All shows are rain or shine. Children age 3 and older require a ticket. A child under the age of 3 is considered a lap child and does not require a ticket. For directions, dining, parking, or carpool information, please visit www.mountainwinery.com. For information on how to purchase VIP season tickets including suites and box seats, please visit https://www.mountainwinery.com/vip-seating/ Doors open 2 hours prior to the show time. Seating begins 1 hour prior to the show time. Artist Info Since the start of his career, New York-born and Los Angeles-based singer, songwriter, artist, and actor Jesse McCartney has built a catalog of instantly recognizable anthems and captivated audiences on the road and on-screen. His first three albums — the Platinum Beautiful Soul [2004], Right Where You Want Me [2006], and Departure [2008] — consecutively bowed in the Top 15 of the Billboard Top 200 with the singles \"Beautiful Soul\" minted Gold and \"Leavin'\" certified Platinum. Plus, he collaborated with T-Pain on the cross-genre banger \"Body Language.\" Meanwhile, SPIN touted In Technicolor among its \"Top 20 Pop Albums of 2014.\" Along the way, he performed in arenas alongside the likes of New Kids on the Block and Backstreet Boys in addition to packing global headline tours and hosting shows for both George W. Bush and Barack Obama. A sought-after songwriter, he notably wrote the 4x-Platinum GRAMMY® Award-nominated \"Bleeding Love\" for Leona Lewis. In 2018, the one-off single \"Better With You\" racked up nearly 30 million cumulative streams and paved the way for his fifth offering. Simultaneously, his acting credits grew to include everything from Chernobyl Diaries and Fear The Walking Dead to Alvin and the Chipmunks, and even voicing the character Roxas/Ventus in gamer favorite Kingdom Hearts. In 2020, Jesse was revea",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1389185",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-06-02T10:55:16.293558Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_68773ef29767",
              "venue_id": "venue_the_independent",
              "title": "Arlo, Fromclay",
              "event_time": "9.11 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-11T21:00:00",
              "event_date": "2026-09-11",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List Arlo fromclay Fri, Sep 11 Doors: 8:30 pm | Show: 9:00 pm 18 and up Please note - there is a delivery delay set for 2 weeks prior to show. Buy Tickets Share + Google Calendar Related Events FOUR SQUARE VOL. 2 – A HIP-HOP VIDEO GAME LIVE THEATRE EXPERIENCE Aug 14 Buy Tickets Krooked Kings Aug 15 Buy Tickets Artists Arlo fromclay Back to Event List Upcoming Events FOUR SQUARE VOL. 2 – A HIP-HOP VIDEO GAME LIVE THEATRE EXPERIENCE Fri Aug 14 Krooked Kings Sat Aug 15 Angine de Poitrine Wed Aug 19 G Flip Thu Aug 20 Niina Soleil Fri Aug 21 Pearl & The Oysters Sat Aug 22 Son Rompe Pera Thu Aug 27 Wax + DJ Hoppa Fri Aug 28 Brenn! Sat Aug 29 Tonic Walter Fri Sep 4 The Emo Night Tour Sat Sep 5 PawPaw Rod Tue Sep 8",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/arlo/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-06-19T10:41:22.925526Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-06-19T16:21:26.861254Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-25T10:40:49.247198Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_independent|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3abc7ec7ea36",
              "venue_id": "venue_public_works",
              "title": "Fatima Hajji, S.i.m. & Sandra Mane",
              "event_time": "09/11/2026 9pm-2:30am",
              "venue_name": "Public Works",
              "event_start": "2026-09-11T21:00:00",
              "event_date": "2026-09-11",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "Public Works presents Fatima Hajji with a special Loft takeover featuring Give Until Gone. Supported by Sandra Mane and S.I.M.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$15-30 | 21+",
              "url": "https://www.tixr.com/groups/publicsf/events/fatima-hajji-presented-by-public-works-193237",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-06-19T16:21:26.861254Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-06-23T15:04:29.490593Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_public_works|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2bdf5c892474",
              "venue_id": "venue_thee_stork_club",
              "title": "Combo Tezeta, Discomovil Salazar",
              "event_time": "2026-09-11T20:00:00",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Fri., 9/11/26 Combo Tezeta, Discomovil Salazar 8:00pm, $18 adv., $20 door Combo Tezeta plays a blend of instrumental cumbias, chichas and musica tropical inspired by the late 60's and early 70's era of psychedelic Peru. Layering the reverb fueled sounds of surf onto the foundations of cumbia, the band's focus is to highlight the rich melodies and hypnotic rhythms birthed from the Afro-Latin diaspora. https://combotezeta.bandcamp.com/album/ritmo-interestelar-c-ndores-al-viento https://www.instagram.com/combotezeta/?hl=en Discomovil Salazar https://www.instagram.com/discomovilsalazar",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$18.00 - $20.00",
              "url": "https://dothebay.com/events/2026/09/11/combo-tezeta-discomovil-salazar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-06-23T13:15:25.595460Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-25T10:40:49.247198Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0aa4c93bac57",
              "venue_id": "venue_ivy_room",
              "title": "The Snares, The Strange Ones, Slow Coast",
              "event_time": "Friday Sep 11 7:30 pm ivy room presents THE SNARES + THE STRANGE ONES + SLOW COAST genre - garage, surf, alternative indie PURCHASE TICKETS",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-11T19:30:00",
              "event_date": "2026-09-11",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "ivy room presents - genre - garage, surf, alternative indie",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/187542",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-06-30T12:17:32.380701Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-30T18:59:56.104919Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_39c7bb15feb6",
              "venue_id": "venue_the_warfield",
              "title": "Blood Orange",
              "event_time": "sep 11 8pm",
              "venue_name": "The Warfield",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "Producer, multi-instrumentalist, composer, director and vocalist, London born polymath Devonté Hynes is among the most influential voices in music today. Raised in England by Guyanese and Sierra Leonean immigrant parents, Hynes started out as a teenage punk in the UK band Test Icicles before releasing two orchestral acoustic pop records as Lightspeed Champion. In 2011, he released Coastal Grooves, the first so far of five solo albums under the moniker Blood Orange. His 2016 album, Freetown Sound , was released to critical acclaim, and saw Hynes defined as one of the foremost musical voices of his time, receiving comparisons to the likes of Kendrick Lamar and D’Angelo for his own searing and soothing personal document of life as a black man in America. His 2018 album, Negro Swan , was released to equally rapturous response, exploring elements of black depression and identity. His most recent release, the 2019 mixtape Angel's Pulse, described by Hynes as an epilogue to Negro Swan, further explores and builds upon those themes. He has collaborated with Solange Knowles, fka twigs, A$AP Rocky, Puff Daddy, Mariah Carey Janet Mock, and many more, and was recently one of four artists invited to the Kennedy Center to perform alongside Philip Glass. In addition to his production work, he has sold out headlining tours around the world, directed and edited 7 Blood Orange music videos as well as one for Beck's 2019 \"Uneventful Days\", and composed the scores for the films “Palo Alto,” directed by Gia Coppola, and \"Queen & Slim\", directed by Melina Matsoukas.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.thewarfieldtheatre.com/events/detail/1472466",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-30T18:59:56.104919Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-06-30T19:48:03.889784Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8fd84d5293bf",
              "venue_id": "venue_the_chapel",
              "title": "Acid Tongue: The Farewell Show",
              "event_time": "Fri Sep 11 2026 9:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-09-11T21:00:00",
              "event_date": "2026-09-11",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "Acid Tongue takes the stage at The Chapel for their Farewell Show, featuring special guests Los Dug Dug's.",
              "event_types": [
                "live_music",
                "folk",
                "rock"
              ],
              "price_info": "$28.00-$32.00",
              "url": "https://wl.seetickets.us/event/acid-tongue-the-farewell-show/698511?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-07-12T10:19:14.388752Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-12T11:45:29.263581Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_chapel|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4aea2c5859e2",
              "venue_id": "venue_san_jose_civic",
              "title": "Codiciado",
              "event_time": "Sep 11, 2026 @ 8:00pm",
              "venue_name": "San Jose Civic",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "Born Erick de Jesús Aragón Alcantar in Tijuana, Baja California, Codiciado is a regional Mexican music artist who achieved recognition with Banda La Fantástica in Los Angeles and as the co-founder…",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://events.timely.fun/jc0x91t0/event/78215634",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-07-14T10:57:41.573315Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_516d8efb5c25",
              "venue_id": "venue_guild_theatre",
              "title": "Marcus Rezak's Shred is Dead",
              "event_time": "Sep 11, 2026 8:00 pm",
              "venue_name": "Guild Theatre",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "Marcus Rezak's Shred is Dead with Special Guests Featuring: Mads Tolling , Dave Ellis, Anna Elva, Scott Guberman and Murph Murphy with special guests Jackie LaBranch, Sunshine Becker and Stephanie Mandela Marcus Rezak GENRE: Progressive, Jam Website Marcus Rezak carves out a distinguished style in the world of guitar with several cutting-edge groups such as Shred is Dead, Digital Tape Machine, Stratosphere All-Stars, Katharsis, Supernatural Beings in addition to frequent engagements as an artist-at-large. Known as a master of jazz improvisation and art of the sit-in, Rezak is a frequent call among bands and musicians carving out his unique niche in the performance world. Having a commanding stage presence, Rezak takes the euphoric freedom of live music and directs its path into a unique approach, as if every jam is a live recording session. Rezak’s 2018 debut as a bandleader saw him collaborating alongside Kris Myers and Joel Cummins of Umphrey’s McGee, Arthur Barrow of Frank Zappa’s band, and legendary saxophonist Bill Evans. Since then, he has toured across the US with eclectic lineups featuring the likes of Ike Willis, Kris Myers, Jay Lane, Scott Page, and more; led his band through two tours on the US Virgin Islands; spearheaded official Umphrey’s McGee afterparties, and continued to hone his chops in his home studio and licensing endeavors. ‘Truth in Sound’ is Rezak’s most recent endeavor featuring members of Trey Anastasio Band, esteemed percussionist Kaylan Pathak, and more. The ability to keep exceptionally comprehensive mental notes on what works, what doesn’t, and how to improve have garnered Rezak much-deserved respect in the music world and have leveraged his ability to take his craft to integral heights. — Mads Tolling GENRE: Violin Website Mads Tolling is an internationally renowned violinist and composer originally from Copenhagen, Denmark, now living in San Francisco. As a former nine-year member of both bassist Stanley Clarke’s band and the celebrat",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$46+",
              "url": "https://www.guildtheatre.com/shows/marcus-rezak-s-shred-is-dead-with-special-guests-11-sep",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-07-28T10:29:20.161138Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_guild_theatre|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b80726fa6c70",
              "venue_id": "venue_halcyon",
              "title": "Byorn, Babga MC & Taking Back Sundance",
              "event_time": "09/11/2026 10:00pm",
              "venue_name": "Halcyon",
              "event_start": "2026-09-11T22:00:00",
              "event_date": "2026-09-11",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "BYORN the prominent Belgian DJ and producer known for his dynamic blend of hard dance, hard techno, and psytrance infused with cinematic elements makes his SF debut! BABA MC + TAKING BACK SUNDANCE support the Beatport best-selling hard techno artist!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$12",
              "url": "https://link.dice.fm/r9b9840b92d4?pid=d6c08999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-07-31T15:20:21.495651Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-06T11:58:22.520624Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f095fa214218",
              "venue_id": "venue_the_lab",
              "title": "Heart Trio",
              "event_time": "Friday, September 11, 2026 8:00 PM",
              "venue_name": "The Lab",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "2948 16th St, San Francisco, CA 94103",
              "description": "A collectively improvised performance uniting master improvisers William Parker, Cooper-Moore, and Hamid Drake exploring deep ancestral folk connections and acoustic sound.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$40 / Member tickets available Aug 10",
              "url": "https://www.thelab.org/projects/2026/9/11/heart-trio-william-parker-hamid-drake-cooper-moore",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lab",
                  "source_name": "The Lab",
                  "fetched_at": "2026-08-12T10:20:53.578127Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-14T10:07:47.535282Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_lab|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_79281cffd9fa",
              "venue_id": "venue_audio",
              "title": "Ezequiel Arias",
              "event_time": "2026-09-11T21:30:00",
              "venue_name": "Audio",
              "event_start": "2026-09-11T21:30:00",
              "event_date": "2026-09-11",
              "venue_address": "316 11th St, San Francisco, CA 94103",
              "description": "Ezequiel Arias plays Audio with support from 1 to 1 and Jerry Chiu B2B Krissh.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "From $21.07",
              "url": "https://audiosf.com/event/ezequiel-arias-09-11-26/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audio",
                  "source_name": "Audio",
                  "fetched_at": "2026-08-15T10:43:36.782348Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_audio|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2e929b00690b",
              "venue_id": "venue_great_american_music_hall",
              "title": "Necrot, Iron Lung, Deathgrave",
              "event_time": "sep 11 8pm",
              "venue_name": "Great American",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Iron Lung, Death Grave, Street Tombs | with Iron Lung, Death Grave, Street Tombs",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25/$30",
              "url": "https://wl.seetickets.us/event/necrot/694824?afflky=GreatAmericanMusicHall",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-08-16T10:06:47.988032Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_61adc37a989b",
              "venue_id": "venue_dna_lounge",
              "title": "Apollyon, Selena Catwoman, dj 5umk1d, Fantoms",
              "event_time": "sep 11 9:30pm",
              "venue_name": "DNA Lounge",
              "event_start": "2026-09-11T21:30:00",
              "event_date": "2026-09-11",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "18+",
              "event_types": [
                "dj_party",
                "electronic",
                "live_music"
              ],
              "price_info": "$10/$20",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_dna_lounge|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_a0aaf8005ee6",
              "venue_id": "venue_the_monarch",
              "title": "Hear + There X Locator",
              "event_time": "11 September 2026 9:00 PM",
              "venue_name": "The Monarch",
              "event_start": "2026-09-11T21:00:00",
              "event_date": "2026-09-11",
              "venue_address": "101 6th St, San Francisco, CA 94103",
              "description": "Traveling party Hear + There and SF-based Locator Records come together for a night of dubbed out minimal house, acid, and groove.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Buy Ticket",
              "url": "https://www.eventbrite.com/e/hear-there-x-locator-mungo-sound-machine-tickets-1995983157354",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monarch",
                  "source_name": "The Monarch",
                  "fetched_at": "2026-08-20T12:12:16.271150Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_resident_advisor_sf_ra",
                  "source_name": "Resident Advisor SF (RA)",
                  "fetched_at": "2026-08-28T22:15:14.237667Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_monarch|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f697eacea147",
              "venue_id": "venue_1015_folsom",
              "title": "PENDULUM (DJ SET)",
              "event_time": "2026/09/11 Fri: Sep 11 (10pm)",
              "venue_name": "1015 Folsom",
              "event_start": "2026-09-11T22:00:00",
              "event_date": "2026-09-11",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "Friday September 11th, 2026 DNBNL, DJ Dials, Brownies and Lemonade & 1015 Folsom Present: Pendulum Andromedik 10pm • 21+ Only Table Reservations: BottleService@1015.com",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS | Bottle Service",
              "url": "https://wl.eventim.us/event/pendulum/702000?afflky=1015Folsom",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-08-20T12:52:11.701520Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_resident_advisor_sf_ra",
                  "source_name": "Resident Advisor SF (RA)",
                  "fetched_at": "2026-08-28T22:15:14.237667Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_1015_folsom|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_87256bed3e70",
              "venue_id": "venue_underground_sf",
              "title": "Prox with Jason Kendig",
              "event_time": "September 11 @ 6:00 pm",
              "venue_name": "Underground SF",
              "event_start": "2026-09-11T18:00:00",
              "event_date": "2026-09-11",
              "venue_address": "424 Haight St, San Francisco, CA 94117",
              "description": "Jason Kendig - New York Originally inspired by the music electrifying Detroit’s airwaves and reverberating through it's warehouses, Jason Kendig has been collecting and mixing a broad range of dance […]",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$20",
              "url": "https://undergroundsf.com/event/prox-jason-kendig-dr-rek-kenvulsion-m4rc0-andrew-butcher/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_underground_sf",
                  "source_name": "Underground SF",
                  "fetched_at": "2026-08-20T13:00:19.745983Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_underground_sf|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f79c45ac5d97",
              "venue_id": "venue_the_riptide",
              "title": "DJ Damon 80s nite @20thcenturygoth",
              "event_time": "September 11 9:30 PM - September 12 1:30 AM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-11T21:30:00",
              "event_date": "2026-09-11",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "DJ Damon never disappoints with his selection of the best the 80s has to offer!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ce613245b8f2",
              "venue_id": "venue_gray_area",
              "title": "Agentworld x Superdark Factory",
              "event_time": "09/11/2026",
              "venue_name": "Gray Area",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "2665 Mission St, San Francisco, CA 94110",
              "description": "​ Marek Poliks is a theoretical researcher in deep learning and AI. He is Head of AI at LaunchDarkly . Marek's work is primarily concerned with the autonomy and self-organizing character of technical infrastructure. He frequently collaborates with Roberto Alonso Trillo (HKBU). Marek and Roberto won Google's 2024 Art and Machine Intelligence Award for their work in AI interface design. Marek's research lab Disintegrator (which he leads with Roberto) studies aspects of agency and technology. The lab's eponymous podcast has been named \"the most sophisticated conversations about AI going\" ( Novara Media ). Disintegrator's first book, Exocapitalism: Economies with Absolutely No Limits , has been described as \"unbelievably inspiring\" (Hito Steyerl, Die Welt ) and \"era-defining; the Das Kapital of the 21st Century\" ( New Models ).",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://grayarea.org/event/agentworld-x-superdark-factory-antikythera-x-disintegrator/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_gray_area",
                  "source_name": "Gray Area",
                  "fetched_at": "2026-08-22T11:08:17.231968Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_gray_area|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_efa3371758c5",
              "venue_id": "venue_mabuhay_gardens",
              "title": "LIGHTS ON BROADWAY",
              "event_time": "2026-09-11",
              "venue_name": "The Mab",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "443 Broadway, San Francisco, CA 94133",
              "description": "Every bulb on the BROADWAY sign is a place to belong. Light an open one with your own dedication — or add your support to a story already shining.",
              "event_types": [
                "community"
              ],
              "price_info": "Read the stories About the Campaign",
              "url": "https://lightsonbroadway.org/sponsor-a-light/?face=east&letter=R",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mabuhay_gardens",
                  "source_name": "The Mab",
                  "fetched_at": "2026-08-22T11:20:57.510347Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mabuhay_gardens|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_41bbb1703ef8",
              "venue_id": "venue_crepe_place",
              "title": "Two Of Us",
              "event_time": "2026-09-11",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "TICKETS",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "FREE",
              "url": "https://thecrepeplace.com/shows-list/two-of-us-live-jazz-on-the-garden-stage-saturday-april-25-from-5-to-7pm-free-event",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d9cf3a485e10",
              "venue_id": "venue_colligan_theater",
              "title": "Puccini's Girl of the Golden West",
              "event_time": "Friday, September 11 7 – 10pm",
              "venue_name": "Colligan Theater",
              "event_start": "2026-09-11T19:00:00",
              "event_date": "2026-09-11",
              "venue_address": "1010 River St, Santa Cruz, CA 95060",
              "description": "7pm to 10pm, Puccini's Girl of the Golden West, Calendar: Colligan Events, No location, September 11, 2026",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_colligan_theater",
                  "source_name": "Colligan Theater",
                  "fetched_at": "2026-08-22T12:44:15.808279Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_colligan_theater|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d219319ef6ac",
              "venue_id": "venue_act_theater",
              "title": "Crushing",
              "event_time": "2026-09-11",
              "venue_name": "ACT Theater",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "Limited Engagement",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-08-22T13:54:28.481304Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_act_theater|2026-09-11",
              "run_id": "run_b8d49cfc30e6",
              "run_label": "Crushing, Sep 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_ecda1e5a97e3",
              "venue_id": "venue_crows_nest_sc",
              "title": "BIG BAD WOLF",
              "event_time": "Friday September 11th 08:00 PM",
              "venue_name": "The Crow's Nest",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "2218 East Cliff Dr, Santa Cruz, CA 95062",
              "description": "Friday September 11th Blues based classic rock Starts at 08:00 PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$7 cover",
              "url": "https://www.bigbadrockingwolf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crows_nest_sc",
                  "source_name": "The Crow's Nest",
                  "fetched_at": "2026-08-22T15:19:13.909618Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crows_nest_sc|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e1cc7638bb82",
              "venue_id": "venue_sc_beach_boardwalk",
              "title": "Fall Campout",
              "event_time": "2026-09-11",
              "venue_name": "Santa Cruz Beach Boardwalk",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "400 Beach St, Santa Cruz, CA 95060",
              "description": "Experience a one‑of‑a‑kind overnight adventure at the Boardwalk. Perfect for families, friends, schools, clubs, teams, and anyone ready to create unforgettable memories together.",
              "event_types": [
                "community"
              ],
              "price_info": "$99.95",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sc_beach_boardwalk",
                  "source_name": "Santa Cruz Beach Boardwalk",
                  "fetched_at": "2026-08-22T16:30:12.819028Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sc_beach_boardwalk|2026-09-11",
              "run_id": "run_3a5cc1cccd2b",
              "run_label": "Fall Campout, Sep 11 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_415f83300603",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Alice for Wonderland",
              "event_time": "Sep 11, 2026 @ 7:30pm",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-11T19:30:00",
              "event_date": "2026-09-11",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "| Performances: Sept. 8-13 |  \n \n“Be Our Guest” at Disney’s BEAUTY AND THE BEAST, Disney’s first North American touring production of the beloved musical in over 25 years.\nThis enchanting and timeless…",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sanjosetheaters.org/event/78443615-20260911193000",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "San Jose CPA",
                  "fetched_at": "2026-08-28T18:46:14.894140Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-11",
              "run_id": "run_304a2c902844",
              "run_label": "Alice for Wonderland, Aug 22 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_ccffcfecea9a",
              "venue_id": "venue_the_marsh_sf",
              "title": "Dan Hoyle TAK",
              "event_time": "2026-09-11",
              "venue_name": "The Marsh SF",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "Dan Hoyle’s Takes All Kinds Winner of SF Bay Area Critics Circle Award “Best Solo Performance” Live & In Person at The Marsh San Francisco Mainstage Written & Performed by Dan Hoyle Directed by Aldo Billingslea & Michael Moran Developed with Charlie Varon Online ticket sales close 2 hours before each performance, and additional tickets may be available for purchase at the door. August 1 – September 18, 2026 Select Fridays at 7:30 pm, Select Saturdays at 5:00 pm (please check ticket link for show dates and times) May 8 – 100th Performance & Post-show Talkback with Mark Follman, National Editor of Mother Jones magazine Award-winning journalist Mark Follman is the national affairs editor at Mother Jones and author of the bestselling book, “Trigger Points: Inside the Mission to Stop Mass Shootings in America” May 22 – Post-show Talkback with Arlie Hochschild, Berkeley Sociologist and author of Stolen Pride Named one of Barack Obama’s Favorite Books of 2024 and a New York Times Notable Book of the Year. For all the attempts to understand the state of American politics and the blue/red divide, we’ve ignored what economic and cultural loss can do to pride . In Stolen Pride , renowned sociologist Arlie Russell Hochschild ventures to Appalachia to uncover the “pride paradox” that has given the right’s appeals such resonance. June 6 – Post-show Talkback on The Science Behind How People’s Minds Change with UCSF Professor and Researcher Michael Geschwind Michael Geschwind, MD, PhD, is a professor of neurology at the UCSF Weill Institute for Neurosciences and a clinician-researcher at the UCSF Edward and Pearl Fein Memory and Aging Center. A behavioral neurologist, he specializes in understanding how changes in thinking, behavior, emotion, and movement reflect underlying brain changes. In his clinical work, he evaluates patients with memory disorders, rapidly progressive dementias, movement disorders, and other neurological conditions, using detailed assessments of cognition, be",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://themarsh.org/shows_and_events/marshstream/dan-hoyle-takes-all-kinds/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-08-22T17:28:42.838285Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-09-11",
              "run_id": "run_76a851d0a0e5",
              "run_label": "Dan Hoyle TAK, Aug 1 – Sep 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_0e62e115bb66",
              "venue_id": "venue_scpl_downtown",
              "title": "Bridge Club @ La Selva Beach",
              "event_time": "September 11 2026 10:30am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-11T10:30:00",
              "event_date": "2026-09-11",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Sharpen your word skills and enjoy friendly competition at our Scrabble Club - fun for all levels.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15200157",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_409aa2e35c36",
              "venue_id": "venue_scpl_downtown",
              "title": "Discovery Zone Playgroup",
              "event_time": "September 11 2026 11:00am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-11T11:00:00",
              "event_date": "2026-09-11",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "A time for free play for children with a participating adult.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15607419",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a08d7dd3a9d2",
              "venue_id": "venue_scpl_downtown",
              "title": "Knitting @ Live Oak",
              "event_time": "September 11 2026 11:00am - 1:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-11T11:00:00",
              "event_date": "2026-09-11",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "This month's book will be selected at the August 14 meeting.",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17068429",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d552b7b328c3",
              "venue_id": "venue_scpl_downtown",
              "title": "Preschool Story Time & Craft @ Aptos",
              "event_time": "September 11 2026 11:30am - 12:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-11T11:30:00",
              "event_date": "2026-09-11",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Come join Librarian Emily for stories, songs, and lots of fun for preschoolers and their caregivers in our beautiful, newly-renovated Scotts Valley Library Branch every Friday at 11:30am.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16251516",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f6bd22c3d9d4",
              "venue_id": "venue_scpl_downtown",
              "title": "Encompass Outreach Worker Office Hours",
              "event_time": "September 11 2026 1:00pm - 3:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-11T13:00:00",
              "event_date": "2026-09-11",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Connecting people to social services, county mental health and more.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15565216",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_383e1c7485e4",
              "venue_id": "venue_scpl_downtown",
              "title": "Hand & Foot Card Games",
              "event_time": "September 11 2026 1:00pm - 3:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-11T13:00:00",
              "event_date": "2026-09-11",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Play cards with fun folks every 2nd and 4th Friday.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17136512",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8d270ac9c68b",
              "venue_id": "venue_scpl_downtown",
              "title": "In-person Tech Help @ Branciforte",
              "event_time": "September 11 2026 2:00pm - 4:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-11T14:00:00",
              "event_date": "2026-09-11",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Are you stuck with a technology question? You can make a free appointment with a tech savvy library staff member!",
              "event_types": [
                "other"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15630340",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e9a9f7c78191",
              "venue_id": "venue_scpl_downtown",
              "title": "Lego Friday Fun",
              "event_time": "September 11 2026 3:30pm - 4:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-11T15:30:00",
              "event_date": "2026-09-11",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Use your imagination and build anything you can dream! Lego and Duplo blocks will be available for children and youth to tinker with, build, explore, and creatively play! No registration necessary.",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15559938",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_04975e5e16aa",
              "venue_id": "venue_the_418_project",
              "title": "The Wind of Ayahuasca",
              "event_time": "Friday, September 11, 2026\n7:30 PM - 9:30 PM",
              "venue_name": "The 418 Project",
              "event_start": "2026-09-11T19:30:00",
              "event_date": "2026-09-11",
              "venue_address": "155 S River St, Santa Cruz, CA 95060",
              "description": "The first film to offer an authentic and honest depiction of an ayahuasca healing ceremony (a traditional South American shamanic ritual)",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://the418project.org/events/the-wind-of-ayahuasca-el-viento-del-ayahuasca",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_418_project",
                  "source_name": "The 418 Project",
                  "fetched_at": "2026-08-22T20:30:04.363966Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_418_project|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1802c767c9d0",
              "venue_id": "venue_underground_sf",
              "title": "Club Music",
              "event_time": "2026/09/11 Fri: Sep 11 (9pm-2am)",
              "venue_name": "Underground SF",
              "event_start": "2026-09-11T21:00:00",
              "event_date": "2026-09-11",
              "venue_address": "424 Haight St, San Francisco, CA 94117",
              "description": "club, house, moombahton, hyphy, bmore, baile funk, electro, jersey club, afrobeats, techno, juke, perreo",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$5 | 21+",
              "url": "https://ra.co/events/2515192",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_underground_sf|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_e7facb1b848c",
              "venue_id": "venue_the_midway",
              "title": "Flux Pavilion",
              "event_time": "2026/09/11 Fri: Sep 11 (9pm-2am)",
              "venue_name": "The Midway",
              "event_start": "2026-09-11T21:00:00",
              "event_date": "2026-09-11",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "dubstep, drum and bass, electro house",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$25+ | 21+",
              "url": "https://www.tixr.com/groups/midwaysf/events/flux-pavilion-188802",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-08-30T10:57:54.572474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_edecd848d616",
              "venue_id": "venue_madarae",
              "title": "Amour Propre & The Smith Brothers",
              "event_time": "2026/09/11 Fri: Sep 11 (9pm-3am)",
              "venue_name": "Madarae",
              "event_start": "2026-09-11T21:00:00",
              "event_date": "2026-09-11",
              "venue_address": "46 Minna St, San Francisco, CA 94105",
              "description": "French Duo AMOUR PROPRE (Indie Dance & Afro House) at MadaRae San Francisco",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10 b4 11 w rsvp / $12-23+ | 21+",
              "url": "https://posh.vip/f/dcbab?t=19hz",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_madarae",
                  "source_name": "Madarae",
                  "fetched_at": "2026-08-26T12:13:29.475695Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madarae|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_111efce47466",
              "venue_id": "venue_tommy_ts",
              "title": "COREY HOLCOMB",
              "event_time": "SEPT 11th & 12th",
              "venue_name": "Tommy T's",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "COREY HOLCOMB\nSEPT 11th & 12th\nTickets – Video",
              "event_types": [
                "comedy"
              ],
              "price_info": "Tickets",
              "url": "https://tommyts-com.seatengine.com/events/134312",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-08-22T21:57:38.329553Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_953e20f82a8d",
              "venue_id": "venue_the_sound_room",
              "title": "Amy D Quintet",
              "event_time": "Friday, September 11, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-09-11T19:30:00",
              "event_date": "2026-09-11",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Amy D.'s innate ability to carry a lyric and capture the essence of a song can be traced back to her early years. Embodying the longing in Great American Songbook standards and the depth of Quiet Storm R&B, she's found a timeless sound entirely her own.\n\nA San Jose native now based in Oakland, Amy D. (Amy Dabalos) is a vocalist and songwriter whose luminescent voice and performances have graced stages throughout the San Francisco Bay Area and beyond since 2010 — including SFJAZZ, Yoshi's Oakland, The Sound Room, Keys Jazz Bistro, San Jose Jazz Summer Fest, Healdsburg Jazz Festival, and more. Drawing from jazz, soul, and R&B, she moves between styles and eras with effortless warmth.\n\nHer debut album Like You was released in 2019 on Unspeakable Records, co-produced with Michael Aaberg (Goapele, Lalah Hathaway, Derrick Hodge). In addition to presenting her own performances as a bandleader, she co-leads Heart Matter, a collaborative project with vibraphonist Dillon Vado.Her appearance on 9/11 at The Sound Room features:William Johnston Bohrer, guitarLukas Vesely, bassDavid Aguiar, drums\n\nTickets at Amy D Quartet",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/amy-d-quartet",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-08-26T10:25:42.190144Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ab4b88839443",
              "venue_id": "venue_la_pena",
              "title": "Conmemoración 11 de Septiembre",
              "event_time": "September 11 @ 6:00 pm",
              "venue_name": "La Pena",
              "event_start": "2026-09-11T18:00:00",
              "event_date": "2026-09-11",
              "venue_address": "3105 Shattuck Ave, Berkeley, CA 94705",
              "description": "Ven a compartir un evento gratuito e íntimo lleno de música, arte, comida, memoria y amistad. Conmemoración 11 de Septiembre 1973 Este año conmemoramos 53 años del Golpe de Estado […]",
              "event_types": [
                "community",
                "live_music",
                "art"
              ],
              "price_info": "Free – $20",
              "url": "https://lapena.org/event/conmemoracion-11-de-septiembre-1973/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_la_pena",
                  "source_name": "La Pena",
                  "fetched_at": "2026-08-26T11:21:24.604733Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_la_pena|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_722e1342c5e3",
              "venue_id": "venue_center_for_new_music",
              "title": "Improvised Ambient Soundscapes",
              "event_time": "FRIDAY, SEPTEMBER 11, 2026 — 7:30 PM",
              "venue_name": "Center for New Music",
              "event_start": "2026-09-11T19:30:00",
              "event_date": "2026-09-11",
              "venue_address": "55 Taylor St, San Francisco, CA 94102",
              "description": "Improvised ambient soundscapes and modal grooves [More]",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://centerfornewmusic.com/event/alex-heigl-nora-free-chris-trinidad-ian-mckenzie/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_new_music",
                  "source_name": "Center for New Music",
                  "fetched_at": "2026-08-27T10:18:52.916672Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-31T10:04:42.136151Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_center_for_new_music|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d7b001412001",
              "venue_id": "venue_the_freight__salvage",
              "title": "Afghan Music Project",
              "event_time": "2026-09-11T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-11T19:00:00",
              "event_date": "2026-09-11",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Salar Nader (tabla) presents The Afghan Music Project, with Quraishi (rubab) - Live in Berkeley on 11 September !! doors 7pm / showtime 8pm https://www.salarnader.org/about Afghan tabla virtuoso Salar Nader curates a program of the rich and varied legacy of classical compositions and folk melodies of this ancient Central Asian nation. At the heart of this musical odyssey lies the enchanting sounds of the rûbab, Afghanistan's revered 21-stringed lute, renowned for its hauntingly soulful timbre. Accompanied by the tabla's rhythmic pulse, Salar's innovative fusion of Afghan and Indian percussion draws out the musical parallels with Hindustani music, exploring the essence of Ragas and the profound connection between two diverse yet harmonious traditions. Salar Nader, disciple of the legendary Ustad Zakir Hussain, has toured extensively with NEA Jazz Master Stanley Clarke, appeared on Broadway with “The Kite Runner,” and took part in a series of recordings of the music of Afghanistan and Central Asia sponsored by Aga Khan Music Initiative for the Smithsonian Folkways label. Quraishi Roya is a legendary master and composer of the Rubab, Afghanistan's national instrument. A self-taught musician originally from Kabul, he is widely celebrated for keeping the rich tradition of classical Afghan court music and regional folk styles alive. In a time when music has been banned in Afghanistan, the music of these master musicians serves as a powerful reminder of the resilience and importance of preserving cultural heritage. &list=RDUgLR6ZsaeiI&start_radio=1",
              "event_types": [
                "live_music",
                "latin_world",
                "folk"
              ],
              "price_info": "TICKETS SOLD BY CO-PRESENTER",
              "url": "https://tickets.worldclassmusic.live/events/wcml/2301957",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a9407ee81591",
              "venue_id": "venue_meyhouse",
              "title": "Jackie Ryan: Bossas, Ballads, and Blues",
              "event_time": "Sep 11, 2026, 5:00 PM – 8:00 PM",
              "venue_name": "Meyhouse Palo Alto",
              "event_start": "2026-09-11T17:00:00",
              "event_date": "2026-09-11",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.meyhousejazz.com/event-details/jackie-ryan-bossas-ballads-and-blues-fri-9-11-5-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Palo Alto",
                  "fetched_at": "2026-08-28T12:28:47.745590Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_meyhouse|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_eba5c38c1ccb",
              "venue_id": "venue_meyhouse",
              "title": "Jackie Ryan: Bossas, Ballads, and Blues",
              "event_time": "Sep 11, 2026, 8:00 PM – 10:00 PM",
              "venue_name": "Meyhouse Palo Alto",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.meyhousejazz.com/event-details/jackie-ryan-bossas-ballads-and-blues-fri-9-11-8-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Palo Alto",
                  "fetched_at": "2026-08-28T12:28:47.745590Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_meyhouse|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5d14167680a7",
              "venue_id": "venue_valley_center",
              "title": "Our 2026 Season",
              "event_time": "September 11, 2026",
              "venue_name": "Valley Center for Performing Arts",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "3500 Mountain Blvd, Oakland, CA 94602",
              "description": "Experience the full lineup of live music, theater, and cultural performances featured at the Valley Center for Performing Arts throughout 2026. This showcase offers audiences a look at the venue's complete schedule of upcoming events and ticket options for the year.",
              "event_types": [
                "classical",
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_oakland_civic_orchestra",
                  "source_name": "Oakland Civic Orchestra",
                  "fetched_at": "2026-08-28T13:15:38.759200Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_valley_center|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_01587c3ad662",
              "venue_id": "venue_sfjazz_lab",
              "title": "PAUL CORNISH TRIO",
              "event_time": "2026-09-11 7:00 PM",
              "venue_name": "SFJAZZ Lab",
              "event_start": "2026-09-11T19:00:00",
              "event_date": "2026-09-11",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "A pianist and composer best known for his work with Joshua Redman, Paul Cornish sets down in Joe Henderson Lab with his finely minted trio and music from his newest Blue Note release You’re Exaggerating! Hailing from the Houston hotbed of jazz talent, and shaped by the rich musical culture of Los Angeles, Paul Cornish has rapidly emerged as one of the most compelling young pianists in contemporary jazz. Equally grounded in gospel, classical music, hip-hop, and modern improvisation, Cornish developed a distinctive voice that balances technical sophistication with emotional openness. After studying at the prestigious Thelonious Monk Institute of Jazz Performance at UCLA and winning the American Jazz Piano Competition in 2018, he went on to perform with major artists including Joshua Redman, Terrace Martin, and Snoh Aalegra, establishing himself as both an imaginative accompanist and a daring bandleader. Cornish’s artistry has drawn widespread acclaim for its lyricism, rhythmic elasticity, and fearless harmonic language. His signing to Blue Note Records marked a significant milestone, placing him within one of jazz’s most storied legacies while signaling the arrival of a major new creative force. With You’re Exaggerating! , Cornish and his trio deliver a vibrant, deeply personal statement—music that moves fluidly between groove, abstraction, and cinematic beauty, revealing an artist pushing modern jazz toward exhilarating new horizons.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/paul-cornish-trio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_lab|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_3a5ad0da05d7",
              "venue_id": "venue_sfjazz_miner",
              "title": "CHRISTIAN MCBRIDE",
              "event_time": "2026-09-11 7:30 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-09-11T19:30:00",
              "event_date": "2026-09-11",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "w/ Benny Green & Gregory Hutchinson",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/christian-mcbride-ray-brown-centennial-celebration/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_9f238ec071ac",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Ochs / Johnston / Mezzacappa / Davis",
              "event_time": "2026-09-11 7:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-09-11T19:00:00",
              "event_date": "2026-09-11",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "Other Dimensions in Sound is our Friday music series curated and hosted by Boohaabian multi reed player extraordinare David Boyce. Each week David will be inviting different musical guests to join him in our galeria for a night of musical medicina.\n\nTonight’s dose of musical medicina is being provided by Ochs/Johnston/Mezzacappa/Davis.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/xebz6zgsfygejg5bcmy43hx5sms8a4",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-08-28T14:05:33.197491Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-31T10:04:42.136151Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d6cf847e02ad",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-09-11",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-09-11",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e1aafebc1aed",
              "venue_id": "venue_the_cats",
              "title": "Raised on Video",
              "event_time": "2026-09-11 7:00 PM – 10:00 PM",
              "venue_name": "The Cats",
              "event_start": "2026-09-11T19:00:00",
              "event_date": "2026-09-11",
              "venue_address": "17533 Santa Cruz Hwy, Los Gatos, CA 95033",
              "description": "« All Events Raised on Video September 11 @ 7:00 PM – 10:00 PM We are Raised on video and so are you! Re-live the sights and sounds of the decade of decadence with the Bay Area’s most radical 80’s tribute band. The Cats at Los Gatos 17533 Santa Cruz Hwy Los Gatos , CA 95033 United States + Google Map (408) 354-3060 View Venue Website About The Cats Add to calendar Google Calendar iCalendar Outlook 365 Outlook Live Leave a Reply Cancel reply Your email address will not be published. Required fields are marked * Comment * Name* Email* Website Save my name, email, and website in this browser for the next time I comment. Δ Event Navigation « Mark Van Haren Third Rail »",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.thecatslosgatos.com/event/raised-on-video/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_cats",
                  "source_name": "The Cats",
                  "fetched_at": "2026-08-28T15:00:29.173610Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_cats|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_622fce3efcfd",
              "venue_id": "venue_dawn_club",
              "title": "“FOG CITY FRIDAYS” FEAT. FOG CITY",
              "event_time": "Friday, September 11, 2026 8:00 PM 11:59 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Fog City Swing was created by Trumpeter Daniel Herrera in 2023, the goal, to become the “world’s smallest big band!” Rapidly becoming one of the preeminent Jazz and Swing bands in the Bay Area, their ongoing Friday night residency at San Francisco’s premier Jazz venue, the Dawn Club, features some of Northern California’s top vocalists and instrumentalists to consistently sold out crowds. With a completely original sound and a song list ranging from classic Sinatra and Count Basie to Quincy Jones and Michael Jackson, listeners will experience a memorable show that cannot be found anywhere else. Reserve your spot today for an unforgettable night of music!\n\n\n  \n#block-f902b53ee4734a923423 {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n\n\n  }\n\n  #block-f902b53ee4734a923423 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-f902b53ee4734a923423 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-f902b53ee4734a923423 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-f902b53ee4734a923423 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-f902b53ee4734a923423 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-f902b53ee4734a923423 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/2ctyct385mnhy39-tg9wh-66t2b-5jsrn-ybz7p-btef8-l3cer-ynsl3-jjzrz-hp743-wybnk-z9nak-t6pph-eacgd-dsnc4-7azxb-p6za4-9hznt-scfhn",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-08-28T15:32:50.415811Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1777f88829bd",
              "venue_id": "venue_omca",
              "title": "Duniya Dance & Bongo Sidbe",
              "event_time": "2026-09-11T17:00:00",
              "venue_name": "OMCA",
              "event_start": "2026-09-11T17:00:00",
              "event_date": "2026-09-11",
              "venue_address": "1000 Oak St, Oakland, CA 94607",
              "description": "This Friday Night at OMCA comes alive with the vibrant sounds of West Africa as Bongo Sidbe & The TonTons take the Garden Stage for an electrifying live performance.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_omca",
                  "source_name": "OMCA",
                  "fetched_at": "2026-08-28T16:49:24.654558Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_omca|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_848ed55b13c4",
              "venue_id": "venue_meyhouse_san_ramon",
              "title": "Alan Broadbent Trio",
              "event_time": "Fri, Sep 11 5 pm",
              "venue_name": "Meyhouse San Ramon",
              "event_start": "2026-09-11T17:00:00",
              "event_date": "2026-09-11",
              "venue_address": "6000 Bollinger Canyon Rd, San Ramon, CA 94583",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.meyhousejazz.com/event-details/two-time-grammy-winner-alan-broadbent-with-harvie-s-akira-tana-fri-9-11-5-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse_san_ramon",
                  "source_name": "Meyhouse San Ramon",
                  "fetched_at": "2026-08-28T17:52:26.464636Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_meyhouse_san_ramon|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c8b18e05209c",
              "venue_id": "venue_meyhouse_san_ramon",
              "title": "Alan Broadbent Trio",
              "event_time": "Fri, Sep 11 8 pm",
              "venue_name": "Meyhouse San Ramon",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "6000 Bollinger Canyon Rd, San Ramon, CA 94583",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.meyhousejazz.com/event-details/two-time-grammy-winner-alan-broadbent-with-harvie-s-akira-tana-fri-9-11-8-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse_san_ramon",
                  "source_name": "Meyhouse San Ramon",
                  "fetched_at": "2026-08-28T17:52:26.464636Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_meyhouse_san_ramon|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3e26e37b0b1a",
              "venue_id": "venue_envelop_sf",
              "title": "Burial - Untrue",
              "event_time": "Friday, September 11, 09/11/2026",
              "venue_name": "Envelop SF",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "2439 3rd St, San Francisco, CA 94107",
              "description": "LISTEN is a series of iconic album listenings in Envelop, allowing us to listen together within the music. Here's the important info to know before you arrive - Envelop SF is a pioneering immersive listening space that allows you to experience sound like never before. Our events are low capacity by design and tickets can sell out quickly. We encourage you to make your purchase ahead of time so we don’t miss you. Envelop SF is a shoeless venue. We want you to be as comfortable as possible, and this helps us keep the space extra clean for everyone. You can find us easily. Envelop SF is within The Midway at 900 Marin St, SF, CA. Enter from the Michigan St side of the building through the patio. Envelop SF is ADA compliant. If you have any accessibility needs, please feel free to reach out ahead of time and we’ll be happy to support. A cash bar for wine, beer, and tea is available. No outside drinks or food are allowed. No admittance into Envelop SF beyond 15 mins after start time. The main gate will be closed. Arriving late disrupts the listening. Please arrive before the event begins. Please avoid in's and out's during listening events to respect everyone's experience. Listening events are seated, dance parties are not. This event's seating map is below the description. We have a comfortable space waiting for you.﻿ Please no phones while listening, and please silence your ringer. We encourage you to take photos before and after the event. Please also be respectful of other people's experiences in the space during the event. All sales are final. There are no refunds or ticket exchanges.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://envelop.us/event/ESF20260911-burial-untrue-listen",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_envelop_sf",
                  "source_name": "Envelop SF",
                  "fetched_at": "2026-08-28T18:09:17.910007Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_envelop_sf|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6ef7e674a136",
              "venue_id": "venue_the_back_room",
              "title": "Yolandra Rhodes",
              "event_time": "Fri, Sep 11, 8pm - 10pm PDT",
              "venue_name": "Back Room",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "1984 Bonita Ave,Berkeley,CA 94704",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://events.humanitix.com/yolandra-rhodes-sept-11?hxchl=hex-col",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_back_room",
                  "source_name": "Back Room",
                  "fetched_at": "2026-08-28T18:22:02.750823Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_back_room|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_13d55e8756b6",
              "venue_id": "venue_cry_baby",
              "title": "Lil Kayla",
              "event_time": "2026-09-11T07:00:00.000Z",
              "venue_name": "Cry Baby",
              "event_start": "2026-09-11T07:00:00",
              "event_date": "2026-09-11",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "California Live Presents Lil Kayla - Live in Oakland! Fri Sep 11, 2026 6:00 PM All Ages Buy Tickets Additional Info + Google Calendar Related Events Buy Tickets Sat Sep 19 ¡DESMADRE! w/ OtebNSolrac + Mar E. Fresh B2B Wockie & PATIO TAKOVER by Bussdown Collective Buy Tickets Sun Sep 20 The Market Arts Festival - 5 Year Anniversary! w/ DJ Sandio + DJ Rell + JC-Caution + J-Blenz Buy Tickets Sat Sep 26 Nef the Pharaoh & D-Lo - Burn The City Tour",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://crybaby.live/tm-event/lil-kayla-live-in-oakland/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-08-28T19:56:15.638282Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cry_baby|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4ff30a2da646",
              "venue_id": "venue_the_lost_church",
              "title": "Am I The A*hole?",
              "event_time": "2026-09-11T19:30:00",
              "venue_name": "The Lost Church",
              "event_start": "2026-09-11T19:30:00",
              "event_date": "2026-09-11",
              "venue_address": "988 Columbus Ave, San Francisco, CA 94133",
              "description": "An interactive comedy show where comedians playfully litigate ridiculous real-life interpersonal disputes and let the audience deliver the final verdict.",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "https://thelostchurch.my.salesforce-sites.com/ticket#/instances/a0FUh00000AuxsTMAR",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lost_church",
                  "source_name": "The Lost Church",
                  "fetched_at": "2026-08-28T20:03:22.982745Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_lost_church|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_aa7b300143ce",
              "venue_id": "venue_exploratorium",
              "title": "Storytime Science for Kids: Space Is the Place",
              "event_time": "2026-09-11",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Join us for Storytime Science and enjoy an engaging storybook read-aloud followed by a related activity geared toward children and their grown-ups. Come hear a story, get hands-on, and learn something new!",
              "event_types": [
                "workshop",
                "literary"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/storytime-science-kids-space-place-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-11",
              "run_id": "run_d76b7c3ece9a",
              "run_label": "Storytime Science for Kids: Space Is the Place, Aug 29 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_93231b0d034a",
              "venue_id": "venue_exploratorium",
              "title": "Daytime Members-Only Hours",
              "event_time": "2026-09-11",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Please consider joining us today ! Members are the backbone of our organization and help ensure the continuity of our mission to create inquiry-based experiences that transform learning worldwide. We can’t wait to see you at the museum.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/member-hours",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-11",
              "run_id": "run_e38dfc952011",
              "run_label": "Daytime Members-Only Hours, Aug 30 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_17a044c9f72c",
              "venue_id": "venue_oasis",
              "title": "Mall Drag",
              "event_time": "2026-09-11T21:30:00",
              "venue_name": "Oasis",
              "event_start": "2026-09-11T21:30:00",
              "event_date": "2026-09-11",
              "venue_address": "298 11th St, San Francisco, CA 94103",
              "description": "Mall Drag party night at SF Oasis.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/mall-drag-tickets-1998017896313",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_oasis",
                  "source_name": "Oasis",
                  "fetched_at": "2026-08-28T21:03:01.054070Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_oasis|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_0ddd805bd4be",
              "venue_id": "venue_bix",
              "title": "Solo Piano",
              "event_time": "2026-09-11T20:30:00",
              "venue_name": "Bix",
              "event_start": "2026-09-11T20:30:00",
              "event_date": "2026-09-11",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-08-28T21:10:29.119399Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bix|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_57829f44eb4b",
              "venue_id": "venue_neck_of_the_woods",
              "title": "Double XP",
              "event_time": "Fri, Sep 11 Show: 8:00 pm",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$14.60",
              "url": "https://www.neckofthewoodssf.com/tm-event/double-xp-zapstar-ulyssescfm-luna-ivy-quinkana/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_neck_of_the_woods",
                  "source_name": "Neck of the Woods",
                  "fetched_at": "2026-08-28T21:30:17.641164Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c9538756d952",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "Crashing Out Live",
              "event_time": "2026-09-11T19:00:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-09-11T19:00:00",
              "event_date": "2026-09-11",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "Live presentation of Crashing Out at the Palace of Fine Arts Theatre.",
              "event_types": [
                "community"
              ],
              "price_info": "$30 - $80 USD",
              "url": "https://www.palaceoffinearts.org/event/crashing-out-live/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-08-28T21:32:02.715078Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_6513c67c546d",
              "venue_id": "venue_club_fox",
              "title": "Eric Barnett’s Tribute to Jeff Beck",
              "event_time": "Friday September 11th",
              "venue_name": "Club Fox",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Friday September 11thEric Barnett’sA TRIBUTE TO JEFF BECKw/Stu Hamm, Eric Barnett, Alex Skolnick & More!Doors",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/eric-barnetts-tribute-to-jeff-beck-tickets-1993874103116?aff=oddtdtcreator&keep_tld=true",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-08-28T22:45:26.741794Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0083e019702d",
              "venue_id": "venue_rhythmix",
              "title": "The Locals: Opening Reception",
              "event_time": "2026-09-11T18:00:00",
              "venue_name": "Rhythmix",
              "event_start": "2026-09-11T18:00:00",
              "event_date": "2026-09-11",
              "venue_address": "2513 Blanding Ave, Alameda, CA 94501",
              "description": "Expressing themselves in everything from junk to clay, and ceramics to oil paint, 12 artists living or working within 12 miles of Rhythmix present the third installation of The Locals.\n\n \n\nCurated by Ginny Parsons, The Locals showcases art created with an eclectic mix of materials and techniques including textured paintings, local landscapes, junk sculptures, sea urchin jewelry, ceramics, an interactive photo installation and more.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "Price not listed",
              "url": "https://www.rhythmix.org/upcoming-exhibits/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rhythmix",
                  "source_name": "Rhythmix",
                  "fetched_at": "2026-08-28T23:14:01.025318Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rhythmix|2026-09-11",
              "run_id": "run_566a8f02098a",
              "run_label": "The Locals: Opening Reception, Sep 11 – Oct 25",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_cfcfa3137763",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "9/11/2026 1 pm",
              "venue_name": "De Young",
              "event_start": "2026-09-11T13:00:00",
              "event_date": "2026-09-11",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-11",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c934fef24052",
              "venue_id": "venue_david_brower_center",
              "title": "Zeek Workshop",
              "event_time": "2026-09-11T09:00:00",
              "venue_name": "David Brower Center",
              "event_start": "2026-09-11T09:00:00",
              "event_date": "2026-09-11",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-08-29T00:08:40.517051Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-09-11",
              "run_id": "run_e0a968fcb987",
              "run_label": "Zeek Workshop, Sep 10 – Sep 11",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_48ce9a145dc3",
              "venue_id": "venue_punch_line",
              "title": "FUMI ABE",
              "event_time": "Sep 11, 2026 7:30 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-11T19:30:00",
              "event_date": "2026-09-11",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Japanese-American comedian and writer Fumi Abe delivers his clever, sharp-witted stand-up on millennial life and cultural identity.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/fumi-abe-san-francisco-california-09-11-2026/event/1C0064AD432F8E49",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1c0244b3f0a3",
              "venue_id": "venue_punch_line",
              "title": "FUMI ABE",
              "event_time": "Sep 11, 2026 9:45 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-11T21:45:00",
              "event_date": "2026-09-11",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Japanese-American comedian and writer Fumi Abe delivers his clever, sharp-witted stand-up on millennial life and cultural identity.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/fumi-abe-san-francisco-california-09-11-2026/event/1C0064AD43338E4E",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_45aeb4375d9b",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "ANNIE LEDERMAN",
              "event_time": "Fri Sep 11, 2026 7:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-09-11T19:00:00",
              "event_date": "2026-09-11",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Comedian and podcaster Annie Lederman brings her bold, unfiltered, and quick-witted stand-up to Cobb's Comedy Club.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/annie-lederman-san-francisco-california-09-11-2026/event/1C0064E7333D665E",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ba3b2bc69928",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "ROAST BATTLE BAY AREA",
              "event_time": "Fri Sep 11, 2026 9:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-09-11T21:30:00",
              "event_date": "2026-09-11",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Local and touring comedians face off in a fast-paced, insult-heavy competition to see who can deliver the sharpest roasts.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/roast-battle-bay-area-san-francisco-california-09-11-2026/event/1C0064E72EC25951",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c35fd0661064",
              "venue_id": "venue_san_jose_improv",
              "title": "Sheryl Underwood’s I Need a Job Tour",
              "event_time": "Sep 11-12 4 shows",
              "venue_name": "San Jose Improv",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "62 S 2nd St, San Jose, CA 95113",
              "description": "Emmy-winning television host and veteran stand-up Sheryl Underwood brings her unapologetic humor to the stage on her 'I Need a Job Tour'. Audiences can expect an evening of candid stories and side-splitting comedy.",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY NOW",
              "url": "https://improv.com/sanjose/event/sheryl+underwood%e2%80%99s+i+need+a+job+tour/15014683/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_improv",
                  "source_name": "San Jose Improv",
                  "fetched_at": "2026-08-29T01:07:49.368865Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_improv|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3798977e4963",
              "venue_id": "venue_shapeshifters",
              "title": "Gravitational Lensing: Feminist Film Dialogues",
              "event_time": "2026-09-11",
              "venue_name": "Shapeshifters",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "Program 17: Family Portraits/Relational Exercises includes a spectrum of diaristic films—from uncanny documentary to autobiographical re-enactments—that manifest different ways filmmakers choose to represent their relationships to family and, more broadly, to home (both literal and conceptual) through cinematic language.",
              "event_types": [
                "film"
              ],
              "price_info": "San Francisco Cinematheque",
              "url": "https://sfcinematheque.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shapeshifters",
                  "source_name": "Shapeshifters",
                  "fetched_at": "2026-08-30T10:04:33.112973Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-09-11",
              "run_id": "run_8afbca984fe1",
              "run_label": "Gravitational Lensing: Feminist Film Dialogues, Sep 9 – Nov 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_aac9ad36a3bb",
              "venue_id": "venue_felton_music_hall",
              "title": "GIMME GIMME DISCO",
              "event_time": "2026-09-11T20:00:00",
              "venue_name": "Felton Music Hall",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "6275 Highway 9, Felton, CA 95018",
              "description": "Enjoy an evening of laughs featuring a lineup of stand-up comedians performing live at Felton Music Hall.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_felton_music_hall",
                  "source_name": "Felton Music Hall",
                  "fetched_at": "2026-08-30T10:15:46.824711Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_felton_music_hall|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_06a5757ccf8c",
              "venue_id": "venue_the_elbo_room",
              "title": "Comedy Oakland at The Elbo Room",
              "event_time": "2026-09-11T19:30:00",
              "venue_name": "The Elbo Room",
              "event_start": "2026-09-11T19:30:00",
              "event_date": "2026-09-11",
              "venue_address": "311 Broadway, Oakland, CA 94607",
              "description": "Comedy Oakland showcases award-winning comedy featuring diverse comedians seen on TV and late-night shows at Elbo Room Jack London.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Free RSVP / From $0.00",
              "url": "https://www.eventbrite.com/e/comedy-oakland-at-the-elbo-room-fri-sep-11-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_elbo_room",
                  "source_name": "The Elbo Room",
                  "fetched_at": "2026-08-31T10:09:45.262566Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_elbo_room|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_2feb8d2025d4",
              "venue_id": "venue_yoshis",
              "title": "ANEESA STRINGS",
              "event_time": "September 11, 2026 - 7:30 PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-11T19:30:00",
              "event_date": "2026-09-11",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "BASSIST, VOCALIST, COMPOSER AND STORYTELLER",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "$29 - $69",
              "url": "https://yoshis.com/events/buy-tickets/aneesa-strings-4/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a07c650c0942",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "DAVY WILLIAMSON",
              "event_time": "Fri Sep 11 8:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "Another Evening with",
              "event_types": [
                "live_music"
              ],
              "price_info": "21+, $10.00",
              "url": "https://wl.seetickets.us/event/davy-williamson/703966?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-08-31T12:12:52.447528Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_703e3ec78cf1",
              "venue_id": "venue_brava_theater",
              "title": "Tribute to Juan Gabriel on Strings",
              "event_time": "September 11, 2026",
              "venue_name": "Brava Theater",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "2781 24th St, San Francisco, CA 94110",
              "description": "⭐ Candlelight concerts bring the magic of a live, multi-sensory musical experience to awe-inspiring locations like never seen before in San Francisco. Get your tickets now to discover the music of Juan Gabriel on Strings at Brava Theater Center under the gentle glow of candlelight.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://www.brava.org/all-events/candlelightjuangabrielsept-hkswk-l8a7g-rtztf-kwa2a-zswe8-48bgd-292pb-zzhn5",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brava_theater",
                  "source_name": "Brava Theater",
                  "fetched_at": "2026-08-31T12:29:43.593913Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brava_theater|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a6c86bc51db4",
              "venue_id": "venue_winters",
              "title": "MATINEE***The Sound Dunes",
              "event_time": "2026-09-11T16:00:00",
              "venue_name": "Winters",
              "event_start": "2026-09-11T16:00:00",
              "event_date": "2026-09-11",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "Afternoon matinee live music with The Sound Dunes.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-08-31T12:39:12.063314Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_winters|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_078dee35aea8",
              "venue_id": "venue_winters",
              "title": "Dusted Angel/Winter Wind/Curb Creeps",
              "event_time": "2026-09-11T20:00:00",
              "venue_name": "Winters",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "Live music featuring Santa Cruz bands Dusted Angel (Doom/Heavy), Winter Wind (Hard Rock), and Curb Creeps (Skate Punk).",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-08-31T12:39:12.063314Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_winters|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_ee98b19a3667",
              "venue_id": "venue_cornerstone",
              "title": "It's A 2000s Party: Berkeley",
              "event_time": "2026-09-11T20:30:00",
              "venue_name": "Cornerstone",
              "event_start": "2026-09-11T20:30:00",
              "event_date": "2026-09-11",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "A throwback dance party playing 2000s anthems and hits at Cornerstone.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.cornerstoneberkeley.com",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-08-31T14:04:10.183515Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cornerstone|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_3d3cb9f1e6db",
              "venue_id": "venue_dna_lounge",
              "title": "MORTIFIED",
              "event_time": "Fri Sep 11",
              "venue_name": "DNA Lounge",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "Mortified!\n\tHailed as a \"cultural phenomenon\" by Newsweek and\n\tcelebrated for years by the likes of This American Life, The Today\n\tShow, The Onion AV Club, & Entertainment Weekly, Mortified is a\n\tcomic excavation of teen angst artifacts (journals, poems, letters,\n\tlyrics, home movies, schoolwork) as shared by their original authors\n\t-- in front of total strangers! Where else can you hear grown men\n\tand women confront their past with firsthand tales of their first\n\tkiss, first puff, worst prom, fights with mom, life at bible camp,\n\tworst hand job, best mall job, and reasons they deserved to marry\n\tBon Jovi?",
              "event_types": [
                "literary",
                "comedy"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.dnalounge.com/calendar/2026/09-11a.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dna_lounge",
                  "source_name": "DNA Lounge",
                  "fetched_at": "2026-08-31T14:15:19.938818Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b4cc94e042d1",
              "venue_id": "venue_ashkenaz",
              "title": "Stu Allen & Mars Hotel",
              "event_time": "09/11/2026 7:30 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-09-11T19:30:00",
              "event_date": "2026-09-11",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "A Grateful Dead Night",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/194486",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-08-31T14:45:33.243069Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_41962b90856a",
              "venue_id": "venue_yerba_buena_center",
              "title": "GaHee Park: Behind the Curtain",
              "event_time": "2026-09-11",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Park invites us to peek behind the curtain, as she lays claim to her own power as a surrealist painter working across fantasy and intimacy.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/gahee-park-behind-the-curtain/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-11",
              "run_id": "run_5353f80886f6",
              "run_label": "GaHee Park: Behind the Curtain, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_61c943048de1",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dream",
              "event_time": "2026-09-11",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public art installation commissioned by YBCA and co-sponsored by San Francisco Public Works.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dream-public-art/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-11",
              "run_id": "run_b6a5ba4e8809",
              "run_label": "Dream, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9d3347d70205",
              "venue_id": "venue_yerba_buena_center",
              "title": "SoMa Mahal Kita",
              "event_time": "2026-09-11",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A message of love for the SoMa neighborhood and community, inspired by weaving practices in the Phillipines and the colors of the Filipino flag.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/soma-mahal-kita-soma-i-love-you-ciriaco-sayoc/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-11",
              "run_id": "run_0c5141fff335",
              "run_label": "SoMa Mahal Kita, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_af415561c6b1",
              "venue_id": "venue_yerba_buena_center",
              "title": "We Rooted in Flight",
              "event_time": "2026-09-11",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public artwork inviting passerbyers to join in the journey of collective flight",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/we-fly-for-a-liberated-we-we-rooted-in-flight/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-11",
              "run_id": "run_1d34139aedcf",
              "run_label": "We Rooted in Flight, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8cdda2c5b12f",
              "venue_id": "venue_club_fugazi",
              "title": "Eddie Pepitone",
              "event_time": "2026-09-11T19:30:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-11T19:30:00",
              "event_date": "2026-09-11",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Comedy cult favorite Eddie Pepitone brings his singular blend of biting social commentary, hilarious self-destruction, and volcanic outrage to the stage.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$37.50 Pre-Sale / $44 Walk-up",
              "url": "https://www.clubfugazisf.com/funny",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_2d6a1f40c360",
              "venue_id": "venue_biscuits__blues",
              "title": "Rick Estrin & The Nightcats",
              "event_time": "2026-09-11T18:30:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-09-11T18:30:00",
              "event_date": "2026-09-11",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "Rick Estrin & The Nightcats deliver a dynamic blend of blues, wit, and razor-sharp musicianship. Frontman Rick Estrin is celebrated for his sly storytelling, harmonica mastery, and charismatic stage presence. The band’s high-energy performances, rich grooves, and tight arrangements have earned them international acclaim. Their music honors traditional blues while adding a fresh, modern spark that keeps audiences engaged and coming back for more.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://biscuitsandblues.com/find-a-show/20260911rickestrinandthenightcat",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-08-31T16:25:33.031111Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_657f4e081a7b",
              "venue_id": "venue_elis_mile_high",
              "title": "Stay Out, Bloodsugar & Friends",
              "event_time": "Fri, Sep 11, 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "Stay out, Bloodsugar, Tess & The Details, Fatale Fri, Sep 11 | Eli's Mile High Club Buy Tickets Time & Location Sep 11, 2026, 8:00 PM – 11:50 PM Eli's Mile High Club, 3629 Martin Luther King Jr Way, Oakland, CA 94609, USA About the event DOORS: 8pm - MUSIC: 9pm 21+ Stay Out is a high-energy punk rock band from Oakland, California, rooted deep in the East Bay DIY scene and driven by a relentless commitment to authenticity, connection, and explosive live performance. Formed in the summer of 2016 by Grant Pack and Mason McGeorge, the band quickly established itself as a force in underground punk- blending raw, aggressive energy with undeniably catchy hooks and melodic sensibility. INSTAGRAM SPOTIFY WEBSITE Bloodsugar formed in late 2024 in Chico, and has been making waves in the California Alt-Rock scene ever since. Their debut EP Gut Feeling released in February 2026, and the band have been playing shows across the west coast, bringing their angry, grungy, confessional songs to every ear that might listen. Their live shows are a force to be reckoned with-- loud guitars, a tight-as-hell band, and stage presence you just can't look away from.… Show More Tickets Ticket type General Admission Sale ends Sep 11, 10:30 PM Price $10.00 +$0.25 ticket service fee Quantity 0 Total $0.00 Checkout Share this event",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.elismilehighclub.com/events/stay-out-bloodsugar-tess-the-details-fatale",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-08-31T16:36:06.503526Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b98caadf122c",
              "venue_id": "venue_stay_gold_deli",
              "title": "Press On / Xtranos / Must Be Nice",
              "event_time": "2026-09-11T18:00:00",
              "venue_name": "Stay Gold Deli",
              "event_start": "2026-09-11T18:00:00",
              "event_date": "2026-09-11",
              "venue_address": "2635 San Pablo Ave, Oakland, CA 94612",
              "description": "Live show featuring Press On, Xtranos, Must Be Nice, and East Brothers Band at Stay Gold Deli. All ages.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10",
              "url": "http://www.foopee.com/punk/the-list/by-club/Stay_Gold_Deli.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stay_gold_deli",
                  "source_name": "Stay Gold Deli",
                  "fetched_at": "2026-08-31T16:43:30.435878Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_stay_gold_deli|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_0653bf1780ea",
              "venue_id": "venue_chase_center",
              "title": "Premium Suites",
              "event_time": "2026-09-11",
              "venue_name": "Chase Center",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "At Select-A-Suite on Thursday, September 17, 2026, not only will you have the opportunity to reserve your suites before they are released to the public, but attendees can also enjoy complimentary food and beverage tastings throughout the event, network with fans and business professionals, and have the opportunity to capture a photo with the Larry O'Brien Trophies.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://chasecenter.com/premium-experiences/premium-suites/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-08-31T17:38:13.687686Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-09-11",
              "run_id": "run_bed5be826f7c",
              "run_label": "Premium Suites, Sep 10 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bb45702ec09d",
              "venue_id": "venue_tupelo",
              "title": "Marshall Law",
              "event_time": "Friday September 11th 9:30PM - 1:30AM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-11T21:30:00",
              "event_date": "2026-09-11",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "Long time staple at Tupelo, Marshall Law delivers a powerful punch of blazing guitar, heavy hitting and crowd favorites. From classic rock to today's favorites, this trio will blow you away!",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f87740c5cdab",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Kevin Farley",
              "event_time": "2026-09-11 2026-09-12T19:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Special event comedy show featuring Kevin Farley with Kris Fried and Sophia Garrow.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Price not found in the specific listing.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/131524",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-08-31T18:20:03.865483Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-09-11",
              "run_id": "run_cfb4ac84a2c8",
              "run_label": "Kevin Farley, Sep 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_da42578110fb",
              "venue_id": "venue_rickshaw_stop",
              "title": "HOUSE OF HEAVY",
              "event_time": "Fri Sep 11 8:30PM",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-09-11T20:30:00",
              "event_date": "2026-09-11",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Friday, September 11 HOUSE OF HEAVY 8pm doors Tickets: $17 limited adv / $20 adv / $24 doors All Ages House of Heavy is a night built for the fans who crave the pit, the riffs, the breakdowns, and the chaos, but are tired of waiting for the next tour to hit their city. We’re bringing the energy of a packed metal show to you all year long: the nu-metal nostalgia, the alt-metal anthems, the metal-core breakdowns. Come scream along, throw down with friends, and lose yourself in the heaviest night out your city has to offer! https://www.instagram.com/itshouseofheavy/ ﻿",
              "event_types": [
                "live_music"
              ],
              "price_info": "All Ages, $17.00-$24.00",
              "url": "https://wl.seetickets.us/event/house-of-heavy/694434?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-09-02T10:05:07.555428Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3f868479f444",
              "venue_id": "venue_the_knockout",
              "title": "Maximum Intervention Dance Party",
              "event_time": "Fri 11 Sep ― 9:00pm",
              "venue_name": "The Knockout",
              "event_start": "2026-09-11T21:00:00",
              "event_date": "2026-09-11",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "MAXIMUM INTERVENTION DANCE PARTY! MOVE TO THE GROOVES WITH DJ LIFESIZE CALEB AND DJ LUIS G! ALL VINYL SELECTIONS, ALL NIGHT! FALL IN AND ENJOY A NIGHT OF CONTINUOUS STOMPING! • 9PM TO CLOSE • NO COVER • 21+",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/K97b02bc61bc?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-09-02T10:33:16.877437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d1dbb1e89eae",
              "venue_id": "venue_f8",
              "title": "MOMENTUM PRESENTS: 2SIINZ",
              "event_time": "2026-09-11T21:00:00",
              "venue_name": "F8",
              "event_start": "2026-09-11T21:00:00",
              "event_date": "2026-09-11",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "Momentum brings 2SIINZ to F8 for a night of hard techno, industrial kicks, and rawstyle pressure, supported by Byrd, SNAQ b2b Dimez, Seira, and Starfvcd.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10 - $20",
              "url": "https://ra.co/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-09-02T10:39:00.610887Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_f8|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_209697cd466b",
              "venue_id": "venue_jax_vinyards",
              "title": "Veotis Latchison Trio",
              "event_time": "September 11 Friday 4-9pm",
              "venue_name": "JAX Vineyards",
              "event_start": "2026-09-11T16:00:00",
              "event_date": "2026-09-11",
              "venue_address": "326 Brannan St, San Francisco, CA 94107",
              "description": "Veotis Latchison is an innovative vocalist, songwriter, and producer from Oakland, CA. His artistic expression is deeply influenced by a mix of hip-hop, R&B, soul, and jazz, drawing inspiration from artists like James Brown, D’Angelo, Donny Hathaway, Big Yuki, and Robert Glasper. Widely known as a strong, spirited vocalist and keyboardist, Veotis performs throughout the Bay and beyond. His original music is best described as “epic storytelling of a young man trying for better.” His writing incorporates colorful and expansive melodies with poetry, comparable to Nat King Cole, Cy Coleman, and Biggie Smalls. Latchison has recently performed at SFJazz Center, Yoshi’s Oakland, Cafe du Nord, Black Cat, Amoeba Music, and Black Cat\n\n\n\n\n\n \nRSVP HERE\nFree Admission",
              "event_types": [
                "live_music",
                "rnb_soul_funk",
                "jazz",
                "hiphop_rap"
              ],
              "price_info": "Free Admission",
              "url": "https://jaxvineyards.com/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_jax_vinyards",
                  "source_name": "JAX Vineyards",
                  "fetched_at": "2026-09-02T11:07:31.509873Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_jax_vinyards|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5c09cd946adc",
              "venue_id": "venue_the_saloon",
              "title": "Mike Henderson",
              "event_time": "September 11 @ 4:00 pm - 8:00 pm",
              "venue_name": "The Saloon",
              "event_start": "2026-09-11T16:00:00",
              "event_date": "2026-09-11",
              "venue_address": "1232 Grant Ave, San Francisco, CA 94133",
              "description": "Mike Henderson, dubbed “the Blues Professor” by John Lee Hooker, is a veteran blues guitarist, singer, and bandleader who holds a monthly afternoon slot at The Saloon, San Francisco’s oldest bar. His sets lean into electric Chicago and West Coast blues, with lived‑in vocals and sharp guitar work. It’s barroom blues at close range.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$5",
              "url": "https://offbeatsf.com/event/mike-henderson-5/2026-09-11/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:49.350985Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_saloon|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_add9c011ad1f",
              "venue_id": "venue_comstock_saloon",
              "title": "Katy Stephan",
              "event_time": "September 11 @ 5:00 pm - 7:00 pm",
              "venue_name": "Comstock Saloon",
              "event_start": "2026-09-11T17:00:00",
              "event_date": "2026-09-11",
              "venue_address": "155 Columbus Ave, San Francisco, CA 94133",
              "description": "Katy Stephan’s residency at Comstock Saloon turns the room into a small, candlelit listening space. At the piano she blends jazz‑inflected originals with reimagined standards and art‑pop tunes, her clear, expressive voice sitting right on top of the clink of glassware and low conversation. It’s an intimate, song‑forward set that feels equally at home as...",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/kathy-stephan-2/2026-09-11/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_offbeat_sf",
                  "source_name": "Offbeat SF",
                  "fetched_at": "2026-09-02T11:10:49.350985Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_comstock_saloon|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_f1a635f6b23b",
              "venue_id": "venue_924_gilman",
              "title": "Worst, Decades In, Midori",
              "event_time": "Friday, September 11, 2026 5:30pm-10:15pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-09-11T17:30:00",
              "event_date": "2026-09-11",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "A live punk and hardcore show at 924 Gilman featuring performances by Worst, Decades In, and Midori.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "http://maps.google.com/?q=$15",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-09-02T11:13:59.237531Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6b190e6eea73",
              "venue_id": "venue_public_works",
              "title": "The Groove Events Night Sessions",
              "event_time": "2026-09-11T21:00:00",
              "venue_name": "Public Works",
              "event_start": "2026-09-11T21:00:00",
              "event_date": "2026-09-11",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "The Groove Events takes over Public Works Loft for a night of house, deep grooves, disco, and club sounds.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$14+",
              "url": "https://www.tixr.com/groups/publicsf/events/the-groove-events-night-sessions",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-09-02T11:21:34.915442Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_public_works|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_bb568e20ecbe",
              "venue_id": "venue_the_midway",
              "title": "Promiscuous: 2000s Party",
              "event_time": "09/11/2026 10:00 PM",
              "venue_name": "The Midway",
              "event_start": "2026-09-11T22:00:00",
              "event_date": "2026-09-11",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "GODS & MONSTERS ∙ INDOORS",
              "event_types": [
                "dj_party"
              ],
              "price_info": "TICKETS",
              "url": "https://www.tixr.com/groups/midwaysf/events/promiscuous-a-2000-s-club-bangers-throwbacks-party-200976",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-09-02T11:30:22.920988Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d4016eb95fee",
              "venue_id": "venue_cow_palace",
              "title": "Just Between Friends Consignment Sale",
              "event_time": "2026-09-11T10:00:00",
              "venue_name": "Cow Palace",
              "event_start": "2026-09-11T10:00:00",
              "event_date": "2026-09-11",
              "venue_address": "2600 Geneva Ave, Daly City, CA 94014",
              "description": "Shop thousands of gently used and new children's and maternity items at bargain prices during this popular community consignment event at the Cow Palace. Families can find great deals on clothing, shoes, baby gear, toys, and nursery essentials all under one roof.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cow_palace",
                  "source_name": "Cow Palace",
                  "fetched_at": "2026-09-02T11:32:56.966259Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cow_palace|2026-09-11",
              "run_id": "run_8189de239dca",
              "run_label": "Just Between Friends Consignment Sale, Sep 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_a7a628a35640",
              "venue_id": "venue_discretion_brewing",
              "title": "Death And Saxes",
              "event_time": "2026-09-11T17:30:00",
              "venue_name": "Discretion Brewing",
              "event_start": "2026-09-11T17:30:00",
              "event_date": "2026-09-11",
              "venue_address": "2703 41st Ave Ste A, Soquel, CA 95073",
              "description": "Live Music 5:30-7:30pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_discretion_brewing",
                  "source_name": "Discretion Brewing",
                  "fetched_at": "2026-09-02T11:35:03.120781Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_discretion_brewing|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3afe892bc7b8",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy",
              "event_time": "2026-09-11T21:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-09-11T21:45:00",
              "event_date": "2026-09-11",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "Stand-up comedy show at Shelton Theater. Listing says each show features five to six hand-picked, experienced comedians and an occasional guest drop-in.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$25.00",
              "url": "https://tickets.cttcomedy.com/events/2558/cheaper-than-therapy-stand-up-comedy-fri-sep-11-9-45-pm/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-09-02T11:40:03.690341Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_be6baf5cba6a",
              "venue_id": "venue_madrone_art_bar",
              "title": "Josh Gelfand",
              "event_time": "September 11 @ 9:30 pm - 1:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-11T21:30:00",
              "event_date": "2026-09-11",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "2nd Fridays at Madrone DJ GORDO AND GUESTS PLAYING CHEESY AND/OR GUILTY PLEASURES FROM ALL GENRES & ALL ERAS $10 at 9:30PM Guarantee your spot!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10",
              "url": "https://madroneartbar.com/event/kitten-on-the-keys-3-2021-11-11-2022-12-08-2025-12-12/2026-09-11/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7cee71d0d5a6",
              "venue_id": "venue_littlefield_concert_hall",
              "title": "People of the West & Short Films",
              "event_time": "Friday, September 11, 2026 at 5:00 PM PDT",
              "venue_name": "Littlefield Hall",
              "event_start": "2026-09-11T17:00:00",
              "event_date": "2026-09-11",
              "venue_address": "5000 MacArthur Blvd, Oakland, CA 94613",
              "description": "CALENDAR Upcoming Events Past Events Home / Calendar / People of the West | The Blackumentary | The Fight to Breath | Unidos — Oakland International Film Festival People of the West | The Blackumentary | The Fight to Breath | Unidos — Oakland International Film Festival Oakland – Film/Movie Friday, September 11, 2026, 5:00 PM M14-202 Music Building Littlefield Concert Hall, M14-Lobby Music Building Tickets Presented by the Oakland International Film Festival Sponsored by Mills Performing Arts & Northeastern University Open to the Public Tickets: $17.85 — Registration requested Free with a Northeastern University ID (limited tickets available at the door) People Of The West Director: Bradley Munoa, Christopher Nataanii Cegielski, Phillip Montgomery, Josh Baker Runtime: 00:60:00 In the ashes of San Francisco's American Indian Center, a new generation rises. Mohawk activist Richard Oakes and student leader LaNada Means rally Native voices from across the nation to reclaim Alcatraz Island, transforming a former prison into a symbol of freedom. As the 'Indians of All Tribes' occupation captures the world's attention, unity and defiance collide with loss and sacrifice. Through courage and conviction, they ignite the Red Power Movement and declare to America, and the world, that Native people are still here, and always will be. The Blacumentary Director: Korise Jubert III Runtime: 00:30:40 The BLACumentary is the story of how six cultural leaders in Oakland started a revolution. This documentary takes you on a proverbial hero’s journey, tracing the Black arts movement in Oakland from its beginning to the threat of cultural erasure experienced today, and the work BLACspace Cooperative is doing to resist and rebuild the movement for the next 100 years Centering the voices of BLACspace Cooperative’s vision keepers and board members, the short film maps the birth of BLACspace and acts as a stirring meditation on what it means to re-establish and protect Black spaces. The Fight",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://performingarts.oakland.northeastern.edu/event-detail?eventId=1415560016",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_littlefield_concert_hall",
                  "source_name": "Littlefield Hall",
                  "fetched_at": "2026-09-03T10:16:56.434298Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_littlefield_concert_hall|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ebc582d2a10a",
              "venue_id": "venue_littlefield_concert_hall",
              "title": "In Love and Struggle & Short Films",
              "event_time": "Friday, September 11, 2026 at 8:30 PM PDT",
              "venue_name": "Littlefield Hall",
              "event_start": "2026-09-11T20:30:00",
              "event_date": "2026-09-11",
              "venue_address": "5000 MacArthur Blvd, Oakland, CA 94613",
              "description": "CALENDAR Upcoming Events Past Events Home / Calendar / In Love and Struggle | Oldman's Blues | The Listeners | Simultanè — Oakland International Film Festival In Love and Struggle | Oldman's Blues | The Listeners | Simultanè — Oakland International Film Festival Oakland – Film/Movie Friday, September 11, 2026, 8:30 PM M14-202 Music Building Littlefield Concert Hall, M14-Lobby Music Building Tickets Presented by the Oakland International Film Festival Sponsored by Mills Performing Arts & Northeastern University Open to the Public Tickets: $17.85 — Registration requested Free with a Northeastern University ID (limited tickets available at the door) In Love and Struggle Director: Na Forest Lim Runtime: 00:20:00 Inspired by the visionary philosophy of James and Grace Lee Boggs, In Love & Struggle celebrates Detorit’s enduring spirit of freedom Dreaming. The film illuminates Detroit’s rich history of grassroots activism and ongoing community transformation—showing the reality and everyday practice of a quiet revolution in action. The film invites viewers to reflect on their own being and becoming — to recognize their agency, practice the future they want to see, and tap into the power of neighborly love Oldman's Blues Director: Ziyi Zeng Runtime: 00:14:59 Grappling with dementia, eighty-year-old Kang longs to return to China. When a yellow crane appears, memory and reality blur — guiding his spirithome in a final goodbye seen only by his granddaughter. The Listeners Director: Joslyn Rose Runtime: 00:14:44 David, a once-brilliant jazz musician, can no longer hear music. Doctors search for a diagnosis while debating whether his condition is neurological or psychological, but answers remain elusive. As pressure mounts to institutionalize him, David is guided through an unconventional therapy that pulls him into memories of faith, discipline, and unresolved trauma. Moving between a hospital, a chapel, and the past, David confronts the voices that shaped him and the fear that",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://performingarts.oakland.northeastern.edu/event-detail?eventId=1415560017",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_littlefield_concert_hall",
                  "source_name": "Littlefield Hall",
                  "fetched_at": "2026-09-03T10:16:56.434298Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_littlefield_concert_hall|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e3d55296be03",
              "venue_id": "venue_piedmont_piano_company",
              "title": "Allan Harris",
              "event_time": "2026-09-11T19:00:00",
              "venue_name": "Piedmont Piano Co",
              "event_start": "2026-09-11T19:00:00",
              "event_date": "2026-09-11",
              "venue_address": "1728 San Pablo Ave, Oakland, CA 94612",
              "description": "WAA SHOWCASE. Swingin' Love Songs features the artistry of jazz vocalist Allan Harris and his swinging trio performing a collection of newly discovered songs by Ike Joseph, an original Brill Building songwriter whose compositions were never released.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "General Admission: $25 in advance / $30 at the door",
              "url": "https://piedmontpiano.com/calendar/2026/9/11/allan-harris",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_piano_company",
                  "source_name": "Piedmont Piano Co",
                  "fetched_at": "2026-09-03T10:22:09.546608Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_piedmont_piano_company|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_f5975416cf08",
              "venue_id": "venue_moes_alley",
              "title": "Space Heater",
              "event_time": "2026-09-11T21:00:00",
              "venue_name": "Moe's Alley",
              "event_start": "2026-09-11T21:00:00",
              "event_date": "2026-09-11",
              "venue_address": "1535 Commercial Way, Santa Cruz, CA 95065",
              "description": "Show: 9:00 PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_moes_alley",
                  "source_name": "Moe's Alley",
                  "fetched_at": "2026-09-03T10:23:10.512238Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_moes_alley|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0c2f838456b1",
              "venue_id": "venue_kuumbwa_jazz",
              "title": "Ballaké Sissoko & Piers Faccini",
              "event_time": "2026-09-11T19:00:00",
              "venue_name": "Kuumbwa Jazz Center",
              "event_start": "2026-09-11T19:00:00",
              "event_date": "2026-09-11",
              "venue_address": "320-2 Cedar St, Santa Cruz, CA 95060",
              "description": "Two decades after their first ever collaboration, British-Italian folk songwriter, Piers Faccini, and Malian kora virtuoso, Ballaké Sissoko, return with a mesmerizing album.",
              "event_types": [
                "live_music",
                "folk",
                "latin_world"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kuumbwa_jazz",
                  "source_name": "Kuumbwa Jazz Center",
                  "fetched_at": "2026-09-03T10:24:11.929813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kuumbwa_jazz|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_943ea619baa3",
              "venue_id": "venue_black_cat",
              "title": "The Sinatra Songbook",
              "event_time": "2026-09-11T19:00:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-11T19:00:00",
              "event_date": "2026-09-11",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $40 , $50 , $60\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n9:30 show: Bar @ 6:00, Doors @ 8:45\n\n*Sunday 9:15 show: Bar @ 6:00, Doors @ 8:30\n\n\n\n\nTimeless vocal jazz with classic swing, effortless charm, and the unmistakable spirit of Sinatra.\n\n\n\n\nAfter sold-out engagements across New York, Oslo, Canada, Mexico, Cincinnati, and San Francisco, acclaimed jazz vocalist and recording artist Richard Cortez brings the timeless music of Frank Sinatra to the stage with an all-star band. \n\n\n\n\nFeaturing beloved classics including Come Fly With Me, Witchcraft, and I’ve Got You Under My Skin, alongside rare gems from Sinatra’s early years with the Tommy Dorsey Orchestra, Richard’s performances celebrate the elegance, swing, and emotional depth that made Sinatra one of the most influential vocalists of the 20th century.\n\n\n\n\nBand Lineup:\n\nRichard Cortez — vocals\n\nAll-Star Band — featuring special guest musicians",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $40 , $50 , $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/9375/2026-09-11",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_dbcf84259885",
              "venue_id": "venue_black_cat",
              "title": "The Sinatra Songbook: Richard Cortez & Sam Hirsh Trio",
              "event_time": "2026-09-11T21:30:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-11T21:30:00",
              "event_date": "2026-09-11",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $40 , $50 , $60\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n9:30 show: Bar @ 6:00, Doors @ 8:45\n\n*Sunday 9:15 show: Bar @ 6:00, Doors @ 8:30\n\n\n\n\nTimeless vocal jazz with classic swing, effortless charm, and the unmistakable spirit of Sinatra.\n\n\n\n\nAfter sold-out engagements across New York, Oslo, Canada, Mexico, Cincinnati, and San Francisco, acclaimed jazz vocalist and recording artist Richard Cortez brings the timeless music of Frank Sinatra to the stage with an all-star band. \n\n\n\n\nFeaturing beloved classics including Come Fly With Me, Witchcraft, and I’ve Got You Under My Skin, alongside rare gems from Sinatra’s early years with the Tommy Dorsey Orchestra, Richard’s performances celebrate the elegance, swing, and emotional depth that made Sinatra one of the most influential vocalists of the 20th century.\n\n\n\n\nBand Lineup:\n\nRichard Cortez — vocals\n\nAll-Star Band — featuring special guest musicians",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $40 , $50 , $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/9375/2026-09-11",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3122c3f63834",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Tiffany Austin- “Thirsty”",
              "event_time": "Friday, September 11, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-11T19:00:00",
              "event_date": "2026-09-11",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Tiffany Austin is a vocalist, composer, educator, and Berkeley Law Juris Doctor. She has performed with luminaries such as Pharoah Sanders, Roy Ayers, John Handy, Cyrus Chestnut, and Doug Carn. Her soulful delivery and musical storytelling has brought her to stages at Birdland and Dizzy’s Den in NYC, Walt Disney Concert Hall in her native Los Angeles and the SFJAZZ Center in San Francisco. Beyond California, she has performed in Europe, Asia, and Australasia, as well as on nationally televised programming in the United States.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/tiffany-austin-ella-and-ellington/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9c532311f746",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Ritmo y Voz: Afro-Cuban Jazz Ignited",
              "event_time": "Friday, September 11, 2026 @ 9pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-11T21:00:00",
              "event_date": "2026-09-11",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Friday, September 11, 2026 @ 9pm",
              "event_types": [
                "live_music",
                "jazz",
                "latin_world"
              ],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/ritmo-y-voz-afro-cuban-jazz-ignited-19/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6e68f8a60182",
              "venue_id": "venue_z_space",
              "title": "San Francisco Hysterical Historium",
              "event_time": "2026-09-11T19:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-09-11T19:00:00",
              "event_date": "2026-09-11",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "Killing My Lobster & Z Space present: San Francisco Hysterical Historium, a Co-Production with Red Barn Productions. Sketch comedy that ain't fool's gold!",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-09-03T10:55:35.787344Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_z_space|2026-09-11",
              "run_id": "run_6cdec2f9a529",
              "run_label": "San Francisco Hysterical Historium, Sep 4 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a2c83e5a67bd",
              "venue_id": "venue_brick_and_mortar",
              "title": "Cuva Bimö",
              "event_time": "9.11 Show: 8:30PM",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-09-11T20:30:00",
              "event_date": "2026-09-11",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Event Details Brick & Mortar Music Hall Presents CuVa Bimö September 11, 2026 8:30 pm PDT (Doors: 8:00 pm ) Brick and Mortar Music Hall , 1710 Mission Street , San Francisco, CA ( map ) $22.94 Buy Tickets + Google Calendar CuVa Bimö JUST ANNOUNCED Felukah — HibisKiss Tour October 28, 2026 Thoughts on Bowling November 27, 2026 BIIRD (Night 2) September 20, 2026 MoneyHillCasino October 11, 2026 Hayden Everett October 29, 2026 Follow us on Instagram Join the Brick & Mortar Newsletter",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$22.94",
              "url": "https://www.brickandmortarmusic.com/tm-event/cuva-bimo/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-09-03T11:13:51.689688Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7ff5132d0d41",
              "venue_id": "venue_stookeys_blue_room",
              "title": "Mr. Lucky & The Cocktail Party",
              "event_time": "Fri, Sep 11",
              "venue_name": "Stookey's Blue Room",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "1523 Sutter St, San Francisco, CA 94109",
              "description": "Shocking Jazz\n8-10:30\n$10",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$10",
              "url": "https://www.stookeysblueroom.com/event-details/mr-lucky-the-cocktail-party-2",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stookeys_blue_room",
                  "source_name": "Stookey's Blue Room",
                  "fetched_at": "2026-09-03T12:18:49.462512Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stookeys_blue_room|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6755fd53fb18",
              "venue_id": "venue_pacific_film_archive",
              "title": "Vivre sa vie",
              "event_time": "Sep 11, 2026 7 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-11T19:00:00",
              "event_date": "2026-09-11",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Jean-Luc Godard’s fragmentary portrait of a prostitute makes Anna Karina an object of endless visual fascination. It inspired Rainer Werner Fassbinder to cast Karina in Chinese Roulette. “A film of extraordinary purity” (Manny Farber).",
              "event_types": [
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/vivre-sa-vie",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9bc829a6b048",
              "venue_id": "venue_4_star_theater",
              "title": "Gordi, Gracie and Rachel",
              "event_time": "11 September 2026 8:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "If We Could, Would We is the latest effort from Brooklyn-based duo Gracie and Rachel (Gracie Coates and Rachel Ruggles), who have become known for their innovative brand of elevated indie-pop, complete with baroque string work and piercingly spare song structures. After releasing their self-titled debut to critical acclaim in 2017, Gracie and Rachel have been seen on stages opening for Ani DiFranco, Tori Amos, Julien Baker, Lucy Dacus, and others. They have performed two NPR Tiny Desk Concerts and been praised by the outlet to “mix pop and classical in stark, infectious ways and make unforgettable, surprising music.” Their 2025 single “WTF” earned praise from The Line of Best Fit who raved, “Gracie and Rachel Deliver Folk-Pop for the Future on “WTF,”’” and Rolling Stone which named it a “Song You Need To Know.”",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/live-music-gordi",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_eb8a839d1bd8",
              "venue_id": "venue_local_edition",
              "title": "Kiana Melendez & Band",
              "event_time": "September 11, 2026 8:00 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-09-11T20:00:00",
              "event_date": "2026-09-11",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Live Performance  8pm - 12amBacked by an amazing band of talented musicians, Kiana Melendez takes the stage with a modern take on Jazz Classics and Jazzy twist on today’s Pop.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/2024/12/31/nye-with-wobbly-world-9-1230-b6j97-lfnr3-jma6x-xjxjj-79zw2-m4yph",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-09-03T12:59:31.047351Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4e9d706f0f8e",
              "venue_id": "venue_the_monarch",
              "title": "Mungo Sound Machine",
              "event_time": "11 September 2026 9:00 PM",
              "venue_name": "The Monarch",
              "event_start": "2026-09-11T21:00:00",
              "event_date": "2026-09-11",
              "venue_address": "101 6th St, San Francisco, CA 94103",
              "description": "Mungo Sound Machine headlines at Monarch 9/11!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Buy Ticket",
              "url": "https://www.eventbrite.com/e/hear-there-x-locator-mungo-sound-machine-tickets-1995983157354",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monarch",
                  "source_name": "The Monarch",
                  "fetched_at": "2026-09-03T13:00:26.245791Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monarch|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_03c191ed10b9",
              "venue_id": "venue_cat_club",
              "title": "NIGHTSHIFT",
              "event_time": "September 11, 2026 9:30 PM",
              "venue_name": "Cat Club",
              "event_start": "2026-09-11T21:30:00",
              "event_date": "2026-09-11",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "Synth, Darkwave, Post, Goth, Industrial\n——\n9:30pm-2am\n$10 Cover",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10 Cover",
              "url": "https://www.sfcatclub.com/calendar/101124-9g9em-jwzb6-4a7cl-z8ktf-bjppb-kbalk-zwjpl-tmzdd-9spgt-9zbjl-kf85z-6zs4g-ttll3-g4a7m-rpd2t-h64yr-ylg88",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cat_club",
                  "source_name": "Cat Club",
                  "fetched_at": "2026-09-03T13:24:58.141502Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e6de8bf81b47",
              "venue_id": "venue_pier_23",
              "title": "KANTRABAN KARTEL",
              "event_time": "Friday, September 11, 2026 4:00 PM\n              \n              7:00 PM",
              "venue_name": "Pier 23",
              "event_start": "2026-09-11T16:00:00",
              "event_date": "2026-09-11",
              "venue_address": "23 The Embarcadero,San Francisco, CA 94111",
              "description": "Bryce Washington’s work is influenced by African culture, African history, and life experiences rarely depicted in art. he is motivated by a range of themes, from lesser-known historic Black excellence to the significance of African hair design. The expressive qualities of Emory Douglas and Samella Lewis inspired him to pursue a path into the arts. His favorite tools?Digital apps like Procreate and Photoshop. Join us for a creative night filled with enthusiasm and music from Kantraban Kartel.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://www.pier23cafe.com/events/2026/8/7/kantraban-kartel-4-7pm-xnf6c",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pier_23",
                  "source_name": "Pier 23",
                  "fetched_at": "2026-09-03T13:40:31.659066Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pier_23|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bc04317867be",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Hipsteria",
              "event_time": "11 September 2026",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Hipsteria performs an energetic mix of swing jazz, soul, and party classics live at Etcetera Wine Bar. Guests can enjoy wine and tapas accompanied by lively rhythms and classic jazz grooves.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-09-03T13:50:21.930604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3186edb80139",
              "venue_id": "venue_cry_baby",
              "title": "Lil Kayla",
              "event_time": "Fri, Sep 11 • 6:00 PM",
              "venue_name": "Cry Baby",
              "event_start": "2026-09-11T18:00:00",
              "event_date": "2026-09-11",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "Eventbrite - Nok Ent/California Live presents Lil Kayla Live in Oakland! - Friday, September 11, 2026 at Crybaby, Oakland, CA. Find event and ticket information.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "From $28.52",
              "url": "https://www.eventbrite.com/e/lil-kayla-live-in-oakland-tickets-1996183733282?aff=ebdssbcategorybrowse",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_eventbrite_oak",
                  "source_name": "Eventbrite OAK",
                  "fetched_at": "2026-09-03T14:11:10.588415Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cry_baby|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_b16f8ed34743",
              "venue_id": "venue_caravan_lounge",
              "title": "Circus Of Sin 10 Year Sinnaversary",
              "event_time": "09/11/2026",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "Welcome to The Caravan Lounge THE CARAVAN LOUNGE is a friendly, owner-operated bar located in the heart of downtown San Jose. As well as being one of San Jose’s oldest live music venues, the Caravan provides other fun activities such as karaoke, comedy, burlesque, pool table, and DJ nights. The Caravan is also extremely affordable for those trying to stretch a budget. And let’s not forget the music! All the shows at the Caravan are FREE! Open 7 days a week 2pm – Close “Aside from the obvious draw of affordable libations poured by heavy-handed barkeeps, The Caravan sets itself apart from other no-frills bars as the place to go to see up-and-coming bands. The bar has hosted plenty of local bands’ first shows, and regularly features smaller touring acts. If you’re a music fan always on the lookout for your new favorite group, make sure to pay attention to who is coming to Caravan.” -Metro FEATURED VIDEOS – Go to our YouTube Channel by clicking here to see more… SEPTEMBER 2026 TUES. SEPT 1st- Karaoke with Ronnie Roach WED. SEPT 2nd – The Caravan Lounge Comedy Show hosted by Chelsea Costanza THURS. SEPT 3rd – SWEAT with DJ SNAQ FRI. SEPT 4th – Rebelskamp, Magick Blues Band, TBA SAT. SEPT 5th – Skool Of Sharks TUES. SEPT 8th- Karaoke with Ronnie Roach WED. SEPT 9th – The Caravan Lounge Comedy Show Hosted by Nyoki THURS. SEPT 10th – Shrine Goth DJ Night with Hex Embrace, C_Death, and Owen FRI. SEPT 11th – Circus Of Sin 10 Year Sinnaversary! Hosted By Some Guy SAT. SEPT. 12th – CaveFest II We Love You Curtis Castro! Abysmal Piss, Ominous Ruin, Lost To The Void TUES. SEPT 15th – Karaoke with Ronnie Roach WED. SEPT 16th -The Caravan Lounge Comedy Show Hosted by Ato Walker THURS. SEPT 17th – TBA FRI. SEPT 18th – TBA SAT. SEPT 19th – Facekicker, American Standard, 12 Steps To Nothing TUES. SEPT 22nd – Karaoke with Ronnie Roach WED. SEPT 23rd- The Caravan Lounge Comedy Show hosted by Matt Kennedy THURS. SEPT 24th – Sweethearts DJ Night FRI. SEPT 25th – Ding Mao, Diamantide, Clou",
              "event_types": [
                "community"
              ],
              "price_info": "FREE",
              "url": "http://s172518151.onlinehome.us/caravan/site/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-09-03T14:20:40.572990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4b62375ee5c8",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Friday Happy Hour | September 11",
              "event_time": "September 11, 2026  4:30 pm – 7:30 pm",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-09-11T16:30:00",
              "event_date": "2026-09-11",
              "venue_address": "San Francisco, CA 94118",
              "description": "Featuring Hobo Paradise",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://illuminate.org/event/friday-happy-hour-september-11/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_illuminate",
                  "source_name": "Illuminate",
                  "fetched_at": "2026-09-03T14:32:31.098793Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_3049d35a070e",
              "venue_id": "venue_amoeba_music_sf",
              "title": "Dub Revolution Book Release",
              "event_time": "Friday September 11th 5pm",
              "venue_name": "Amoeba Music SF",
              "event_start": "2026-09-11T17:00:00",
              "event_date": "2026-09-11",
              "venue_address": "1855 Haight St, San Francisco, CA 94117",
              "description": "Celebrate the release of Dub Revolution: Jamaica's Sonic Innovators and the Birth of Remix Culture (White Rabbit) with author David Katz at Amoeba SF on Friday, September 11th at 5pm! David will be in conversation with local DJ Andrew Rush (Natural Selector), then sign books while Natural Selector spins an all-vinyl set. Purchase the book at Amoeba SF and get it signed!",
              "event_types": [
                "literary"
              ],
              "price_info": "",
              "url": "https://www.amoeba.com/live-shows/upcoming/detail-3159/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_amoeba_music",
                  "source_name": "Amoeba Music",
                  "fetched_at": "2026-09-03T14:33:59.605406Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_amoeba_music_sf",
                  "source_name": "Amoeba Music SF",
                  "fetched_at": "2026-09-04T10:31:55.733267Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_amoeba_music_sf|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_a9a76dec242e",
              "venue_id": "venue_poor_house_bistro",
              "title": "Johnny Neri Band",
              "event_time": "2026-09-11T18:00:00",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-09-11T18:00:00",
              "event_date": "2026-09-11",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-09-04T10:11:13.938872Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f297f68c2037",
              "venue_id": "venue_sailing_goat",
              "title": "Josh Brough",
              "event_time": "2026-09-11T17:00:00",
              "venue_name": "Sailing Goat",
              "event_start": "2026-09-11T17:00:00",
              "event_date": "2026-09-11",
              "venue_address": "1900 Stenmark Dr, Richmond, CA 94801",
              "description": "Josh Brough Fri, Sep 11 | Sailing Goat at Point San Pablo Harbor Folk, Americana, Country and Bluegrass Time & Location Sep 11, 2026, 5:00 PM – 8:00 PM Sailing Goat at Point San Pablo Harbor, 1900 Stenmark Dr, Richmond, CA 94801, USA About the event Lead singer, multi-instrumentalist and co founder of Northern California jam grass band; Poor Man's Whiskey, explores his Folk, Americana, Country and Bluegrass music roots with heartfelt original songs about life and the human condition. Having served as a Peace Corps Volunteer and working as an educator in the criminal justice system for over two decades, his songs tell tragic and humorous stories of the colorful characters he has met along the way and the ever changing American landscape. Drawing from the deep well of his influences; John Prine, Townes Van Zandt, Bob Dylan, Gregg Allman, The Wood Brothers, Jason Isbell, Neil Young, Guy Clark, Todd Snider, Willie Nelson, Woodie Guthrie and Pete Seeger (to name a few), laugh, cry, sing, dance and contemplate and raise a glass to the good times down the road. https://joshbroughmusic.com/home Show More Share this event",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Free",
              "url": "https://www.sailinggoatrestaurant.com/event-details/josh-brough",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sailing_goat",
                  "source_name": "Sailing Goat",
                  "fetched_at": "2026-09-04T10:13:07.105977Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sailing_goat|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_b760d0f33004",
              "venue_id": "venue_mvcpa",
              "title": "Smuin Contemporary Ballet: French Kiss",
              "event_time": "September 11 7:30 pm",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-09-11T19:30:00",
              "event_date": "2026-09-11",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "Smuin Contemporary Ballet\n\nFriday, September 11 at 7:30 p.m.\nSaturday, September 12 at 2:00 p.m. & 7:30 p.m.\nSunday, September 13 at 2:00 p.m.\nFresh from a commission with the Paris Opera Ballet, My’Kal Stromile makes his Bay Area debut with a world premiere. Amy Seiwert’s French Kiss, a colorful confection hailed by the San Francisco Chronicle as a “sweet, chic dessert,” returns to delight audiences once more. As we mark twenty years since Michael Smuin’s passing, we honor his lasting influence with a revival of his moving Stabat Mater, returning to the stage for the first time since 2016.\n\nStabat Mater, by Michael Smuin\nWorld Premiere, by My’Kal Stromile\nFrench Kiss, by Amy Seiwert\n\nThis performance is 2 hours long, including 2 intermissions, and is appropriate for all ages.\n\nFor subscriptions to Smuin Contemporary Ballet's 2026/27 Season, please use the following link: Subscriptions\n\n\nMainStage | Reserved\n\n$25 - $100, depending on section (Pewter, Bronze, Silver, Gold, or Platinum)\n\nTicket price includes $3 Facility Use Fee",
              "event_types": [
                "dance"
              ],
              "price_info": "$25 - $100",
              "url": "https://tickets.mvcpa.com/eventperformances.asp?evt=776",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mvcpa",
                  "source_name": "MV Center for the Performing Arts",
                  "fetched_at": "2026-09-04T10:13:59.609171Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mvcpa|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6b7a7fe68ac9",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-09-11",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-11",
              "event_date": "2026-09-11",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "Music by Marc Shaiman & Thomas Meehan. Lyrics by Mark Shaiman & Scott Wittman. A 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to change her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "On Stage Now",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-09-04T10:15:07.852694Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-11",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fa2bddff9f29",
              "venue_id": "venue_swedish_american",
              "title": "anaiis",
              "event_time": "9/11/2026 9:00 pm",
              "venue_name": "Swedish American Hall",
              "event_start": "2026-09-11T21:00:00",
              "event_date": "2026-09-11",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Live Nation Presents: anaiis Fri, Sep 11 Doors: 8:00 pm | Show: 9:00 pm Tickets: $33.45 Buy Tickets 21 and up limited first come first served open seating London-based polymath anaiis makes the kind of music that speaks to an innate sense of wonder. On her latest album Devotion & The Black Divine, the songs swell with emotional clarity as she lovingly pushes herself beyond the edges of her comfort zone. Recorded live-to-tape at London’s 5db Studios, the record feels like a conversation with the natural world, our inner selves, and the power of recognising one’s own divinity. anaiis draws from the collective consciousness, and this time, that depth rests on a growing sense of homecoming. Not to a place, but to the self. Artist Presale: Tue Jun 09, 10:00 AM Public Onsale: Fri Jun 12th , 10:00 AM For any event that is listed as 18 or 21 and over, ANY ticket holder unable to present valid identification indicating that they are of age will not be admitted to this event, and will not be eligible for a refund. Any event listed as All Ages, means 6 years of age or older. ALL tickets are standing room only unless otherwise specified. If you need special accommodations, contact info@cafedunord.com. Support acts are subject to change without refund. Professional Cameras are not allowed without prior approval. Professional Camera defined as detachable lens or of professional grade as determined by the venue staff. When in doubt, just email us ahead of the show! We might be able to get you a Photo Pass depending on Artist’s approval. Artists anaiis Video In a 1994 copy of Outlaw Culture: Resisting Representations, famed educator, author, theorist and activist bell hooks wrote: “The function of art is to do more than tell it like it is – it’s to imagine what is possible.” Her words speak to an innate sense of wonder, how truth is all too often stranger than fiction. While hook inks the meaning of art, French-Senegalese artist anaiis (whose name is in lowercase as tribute to hook",
              "event_types": [
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://cafedunord.com/tm-event/anaiis/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cafe_du_nord_and_swedish_american_hall",
                  "source_name": "Cafe Du Nord and Swedish American Hall",
                  "fetched_at": "2026-09-04T10:21:43.132381Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_swedish_american|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_959e08d12366",
              "venue_id": "venue_kilowatt",
              "title": "Caja Magica DJs",
              "event_time": "Fri 11 Sep ― 9:00pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-11T21:00:00",
              "event_date": "2026-09-11",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Keep track of what’s coming up by saving events, sharing them with friends, or even listening to new music in the app.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/Q4f8460d4e51?pid=ff10e59d",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-09-04T10:33:38.052132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0092f97bd90a",
              "venue_id": "venue_sevys_aptos",
              "title": "Live Music: Tsunami",
              "event_time": "September 11, Friday 7:00 PM",
              "venue_name": "Sevy's Bar & Kitchen",
              "event_start": "2026-09-11T19:00:00",
              "event_date": "2026-09-11",
              "venue_address": "7500 Old Dominion Ct, Aptos, CA 95003",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sevys_aptos",
                  "source_name": "Sevy's Bar & Kitchen",
                  "fetched_at": "2026-09-04T10:39:41.919005Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sevys_aptos|2026-09-11",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-09-12": {
          "date": "2026-09-12",
          "updated_at": "2026-09-04T10:41:17.606729Z",
          "events": [
            {
              "event_id": "evt_9db0668acc51",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Bratmobile / A La Tata",
              "event_time": "Saturday September 12 2026 8:00PM doors -- music at 9 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Saturday September 12 2026\n 8:00PM doors -- music at 9:00PM\n  •••  ALL AGES\n$35\n$41.81 in advance [35 face value + 6.81 service fee]\nBratmobile \n punk rock\nA La Tata \n   formerly T.I.T.S.\n synth punk",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35 $41.51 in advance [35 face value + 6.51 service fee]",
              "url": "http://www.bottomofthehill.com/20260912.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5de47e9065b5",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "Opera Ball",
              "event_time": "2026-09-12",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "Secure your place at San Francisco's biggest fundraiser of the year, with proceeds supporting the future of opera and opera education",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_war_memorial_opera_house",
                  "source_name": "War Memorial Opera House",
                  "fetched_at": "2026-04-11T09:56:19.146108Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bba0d10bb501",
              "venue_id": "venue_audio",
              "title": "Joshwa at Audio SF",
              "event_time": "2026-09-12T21:30:00",
              "venue_name": "Audio",
              "event_start": "2026-09-12T21:30:00",
              "event_date": "2026-09-12",
              "venue_address": "316 11th St, San Francisco, CA 94103",
              "description": "Joshwa makes his Audio debut on September 12th. Support from Rhythm N Sound and Cade Connors. 21+ event.",
              "event_types": [
                "other"
              ],
              "price_info": "Check website for pricing",
              "url": "https://audiosf.com/event/joshwa/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audio",
                  "source_name": "Audio",
                  "fetched_at": "2026-04-22T13:04:29.170442Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_audio|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b0e864f2e422",
              "venue_id": "venue_the_warfield",
              "title": "San Holo",
              "event_time": "Sep 12 2026 7pm/8pm",
              "venue_name": "The Warfield",
              "event_start": "2026-09-12T19:00:00",
              "event_date": "2026-09-12",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "Electronic music producer and DJ San Holo brings his vibrant future bass sounds and guitar-driven melodies to the dance floor.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "18+",
              "url": "https://www.axs.com/events/1392926/san-holo-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-01T12:26:10.704788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-05-05T11:51:39.397411Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_warfield|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2f4a975de38e",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Thievery Corporation",
              "event_time": "September 12, 2026 8:00pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "30th Anniversary Tour An all encompassing retrospective - Captain Planet",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "PRESALE 5/14",
              "url": "https://thefoxoakland.com/events/thievery-corporation-260912",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-05-14T10:52:30.693014Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-29T09:21:29.154856Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1cbfdc064ad8",
              "venue_id": "venue_san_jose_civic",
              "title": "SABAI: IKIGAI",
              "event_time": "09/12/2026 8pm",
              "venue_name": "San Jose Civic",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "Blending emotionally driven songwriting with cinematic electronic production, SABAI has emerged as a distinctive voice in melodic dance music. Drawing from melodic bass, future house and pop influences, his sound moves fluidly between high-energy moments and introspective listening.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$48 | 18+",
              "url": "https://www.ticketmaster.com/event/1C00647FE6758CE2",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-16T01:18:06.327301Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-05-17T14:06:31.186722Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_441fcd5dab23",
              "venue_id": "venue_the_fillmore",
              "title": "Public Image Ltd.",
              "event_time": "sep 12 8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "Led by the legendary John Lydon, the iconic post-punk band brings their uncompromising sound and raw energy to the stage. The tour features a career-spanning setlist of their most influential and genre-defying tracks.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/public-image-ltd-this-is-not-san-francisco-california-09-12-2026/event/1C00646688F9920E",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T21:39:26.952332Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-06-05T10:13:38.208208Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a2b6d616c89d",
              "venue_id": "venue_discovery_meadow_sj",
              "title": "Para Siempre",
              "event_time": "09/12/2026 2pm",
              "venue_name": "Discovery Meadow",
              "event_start": "2026-09-12T14:00:00",
              "event_date": "2026-09-12",
              "venue_address": "180 Woz Way, San Jose, CA 95110",
              "description": "Terms & Conditions (please read): ALL SALES FINAL . By purchasing a ticket, you acknowledge and agree that there are zero refunds, zero exchanges, and zero chargebacks for ANY reason whatsoever. This event will proceed rain or shine. Entry is 18+ (VIP 21+ ONLY) and a valid government-issued ID is required. If you cannot meet these requirements, do not purchase a ticket.",
              "event_types": [
                "festival",
                "live_music",
                "latin_world",
                "rnb_soul_funk"
              ],
              "price_info": "18+",
              "url": "https://laylo.com/somethingnew/parasiempre?utm_id=97760_v0_s00_e0_tv3",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-06-04T13:49:24.636935Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_eventbrite_sj",
                  "source_name": "Eventbrite SJ",
                  "fetched_at": "2026-06-14T10:40:34.403983Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_discovery_meadow_sj|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c7de9aee603f",
              "venue_id": "venue_siesta_valley_bowl",
              "title": "Beats Antique",
              "event_time": "Saturday Sep 12, 2026 8:00 PM",
              "venue_name": "Siesta Valley Bowl",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "100 Gateway Blvd, Orinda, CA 94563",
              "description": "Beats AntiqueYou can't know Beats Antique until you've been a part of its journey, and experienced the act as an entity with a life of its own. A stage show that demands more music; music that needs costumes, ships and masks and shadow dances; an audience that comes for art, and takes away stories to feed their imagination.Beats Antique fuses musical worlds, pulling on global sounds for experiments on the fringes of cinematic cabaret, informed by electronic mash-ups and inspirations who have joined them on the journey such as Les Claypool, Alam Khan, The Glitch Mob, Too Many Zooz and the Preservation Hall Jazz Band.Roni KaspiRoni Kaspi is a dynamic force in modern music, a trailblazing drummer, singer-songwriter, and producer whose genre‐defying sound has taken the internationalstage by storm. LA Based and refined at the prestigious Berklee College ofMusic, Roni’s innovative approach fuses jazz fundamentals with a bold blend ofalt‐pop, soul, world music, and electronica. Discovered on Instagram by thelegendary bassist Avishai Cohen in 2020, her electrifying performance soonearned her a coveted spot in his trio, contributing to the critically acclaimedShifting Sands album that redefined contemporary jazz.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$55.70 - $89.70 (includes fees)",
              "url": "https://www.ticketmaster.com/event/1C0064A6C514CB25",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_siesta_valley_bowl",
                  "source_name": "Siesta Valley Bowl",
                  "fetched_at": "2026-06-06T21:59:52.449568Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-06-19T16:21:26.861254Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-30T18:59:56.104919Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_siesta_valley_bowl|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_43515c70bde6",
              "venue_id": "venue_the_independent",
              "title": "BL3SS – 360 SET – NORTH AMERICAN TOUR 2026",
              "event_time": "9.12 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-12T21:00:00",
              "event_date": "2026-09-12",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List In the Round! BL3SS – 360 Set – North American Tour 2026 Sat, Sep 12 Doors: 8:30 pm | Show: 9:00 pm 18 and up Please note - there is a delivery delay set for 2 weeks prior to show. Buy Tickets Share + Google Calendar Related Events Young Franco Jul 10 Buy Tickets bad tuner x veggi Jul 17 Buy Tickets Artists BL3SS Back to Event List Upcoming Events Out & Loud Thu Jun 25 The Lagoons Fri Jun 26 Bay Pride Amplified! Sat Jun 27 Kelly McFarling Thu Jul 2 Mac Gross Project – SF Rock Project Benefit + Against Medical Advice Album Release Fri Jul 3 High Fade Wed Jul 8 Young Franco Fri Jul 10 The Emo Night Tour Sat Jul 11 bad tuner x veggi Fri Jul 17 Los Tranquilos Sat Jul 18 Chinese American Bear Sun Jul 19 Riff Wood Thu Jul 23",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/bl3ss-360-set-north-american-tour-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-06-19T10:41:22.925526Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-06-19T16:21:26.861254Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a3e009de7904",
              "venue_id": "venue_point_san_pablo_harbor",
              "title": "The Allmond Brothers Tribute",
              "event_time": "Saturday, September 12, 2026 6:00 PM - 10:00 PM",
              "venue_name": "Point San Pablo Harbor",
              "event_start": "2026-09-12T18:00:00",
              "event_date": "2026-09-12",
              "venue_address": "1900 Stenmark Dr, Richmond, CA 94801",
              "description": "THE ALLMOND BROTHERS BAND - TRIBUTE TO THE ALLMAN BROTHERS BAND & SOUTHERN ROCK + BOLERO! + SPIRIT HUSTLER - LIVE ON THE WATERFRONT\n\nSat, Sept 12, 2026 - 5:00 PM Gates/Food/Bar - 6:00 PM Music",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$39.19",
              "url": "https://www.pspharbor.com/live-events/allmond-brothers",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_point_san_pablo_harbor",
                  "source_name": "Point San Pablo Harbor",
                  "fetched_at": "2026-06-23T14:08:17.700273Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-30T18:59:56.104919Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_point_san_pablo_harbor|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8831614ed604",
              "venue_id": "venue_regency_ballroom",
              "title": "Moms Feelin' Themselves",
              "event_time": "sep 12 7pm",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-09-12T19:00:00",
              "event_date": "2026-09-12",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Goldenvoice Presents Moms Feelin' Themselves Saturday, September 12 Doors 7:00PM, Show 7:00PM 21 & Over The Regency Ballroom Buy Tickets Event Info Glitz & Glam: The Mom Dance Party® Comes to San Francisco MFT + Baukunst Slip into your sparkliest something and join MFT — the original mental-health-intervention-disguised-as-a-dance-party — for a night of glitz, glam, and unhinged joy on the dance floor. Founded in 2022, MFT threw the country's first Mom Dance Party® in Denver in May 2023 and has since sparked a national movement, with features on CNN, People, TODAY, and more. This SF edition with Baukunst is a love letter to women uplifting women — in business, in motherhood, in every chapter in between. On the decks: Samala and DJ Mama K, co-founders of the Rebel Joy collective and the longest-running 90s dance party in the Western Hemisphere. Decades of experience building companies, communities, and culture — and a shared belief that play is political, joy is rebellion, and gathering is creation. . Play as political. Joy as rebellion. Gathering as creation. Expect a packed dance floor, feel-good throwbacks, and a room full of women who get it . Sequins encouraged. Main character energy required. Moms and mom friends welcome. Let's dance. Artist Info Glitz & Glam: The Mom Dance Party® Comes to San Francisco MFT + Baukunst Slip into your sparkliest something and join MFT — the original mental-health-intervention-disguised-as-a-dance-party — for a night of glitz, glam, and unhinged joy on the dance floor. Founded in 2022, MFT threw the country's first Mom Dance Party® in Denver in May 2023 and has since sparked a national movement, with features on CNN, People, TODAY, and more. This SF edition with Baukunst is a love letter to women uplifting women — in business, in motherhood, in every chapter in between. On the decks: Samala and DJ Mama K, co-founders of the Rebel Joy collective and the longest-running 90s dance party in the Western Hemisphere. Decades of experienc",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theregencyballroom.com/events/detail?event_id=1435108",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-25T10:40:49.247198Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-06-29T11:36:25.735100Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b3e6fc8dd863",
              "venue_id": "venue_canada_theater",
              "title": "Happy Rootin’ Tootin’ Birthday, America!",
              "event_time": "2026-09-12T14:00:00",
              "venue_name": "Cañada College Theater",
              "event_start": "2026-09-12T14:00:00",
              "event_date": "2026-09-12",
              "venue_address": "4200 Farm Hill Blvd, Redwood City, CA 94061",
              "description": "John Williams Liberty Fanfare\nAaron Copland Suite from Billy the Kid (excerpts)\nLeonard Bernstein Danzon from Fancy Free\nRichard Hayman Pops Hoe-Down\n\nConducted by Kyle Baldwin\n\nJohn Philip Sousa The Stars and Stripes Forever\n\nJoin us for Redwood Symphony’s Family Concert!. Kids — and adults — will love this concert, which starts with a Tour of the Orchestra and concludes with a group conducting lesson (free glowing batons for all!) and ten raffle winners conducting the orchestra in a Sousa March!",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Not listed",
              "url": "https://redwoodsymphony.org/42nd-season-2026-2027/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_redwood_symphony",
                  "source_name": "Redwood Symphony",
                  "fetched_at": "2026-06-27T22:21:13.299533Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_canada_theater",
                  "source_name": "Cañada College Theater",
                  "fetched_at": "2026-06-28T02:30:03.668744Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_canada_theater|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0ff4d86ea58f",
              "venue_id": "venue_montgomery_theater",
              "title": "Disney’s Frozen Movie Sing-Along",
              "event_time": "Sep 12, 2026",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "| Today’s Shows: 3pm, 6:30pm | \n \nGet ready to “Let It Go” and sing your heart out as Sing‑Along Live! brings Disney’s beloved hit Frozen to the big screen — complete with on‑screen lyrics, audience p…",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://events.timely.fun/jc0x91t0/78376175",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-07-31T14:33:32.949334Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-08-12T10:48:24.659205Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2ad8011386d4",
              "venue_id": "venue_halcyon",
              "title": "Dxnby, Josh lEe & Ezz",
              "event_time": "09/12/2026 10:00pm",
              "venue_name": "Halcyon",
              "event_start": "2026-09-12T22:00:00",
              "event_date": "2026-09-12",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "DXNBY is a Leeds-based DJ and producer whose distinct sound blends deep tech, garage, and house to create a dynamic and immersive club experience. Originally from Doncaster, DXNBY has built a reputation for his meticulous production and forward-thinking ap Read more",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$12",
              "url": "https://link.dice.fm/x9bba1f0bd8f?pid=d6c08999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-07-31T15:20:21.495651Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-06T11:58:22.520624Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ab5caccd4639",
              "venue_id": "venue_mountain_view_art_wine",
              "title": "Mountain View Art & Wine Festival 2026",
              "event_time": "2026-09-12T10:00:00",
              "venue_name": "Mountain View Art & Wine Festival",
              "event_start": "2026-09-12T10:00:00",
              "event_date": "2026-09-12",
              "venue_address": "Castro St, Mountain View, CA 94041",
              "description": "The 54th Annual Mountain View Art & Wine Festival featuring over 350 artists, live music, gourmet food, craft beer, wine, and family activities on Castro Street.",
              "event_types": [
                "live_music",
                "rock",
                "rnb_soul_funk",
                "latin_world",
                "festival"
              ],
              "price_info": "Free admission",
              "url": "https://www.mvartwine.com/pge-main-stage-artists",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_view_art_wine",
                  "source_name": "Mountain View Art & Wine Festival",
                  "fetched_at": "2026-08-10T10:36:51.078638Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mountain_view_art_wine|2026-09-12",
              "run_id": "run_6a5df145ac6c",
              "run_label": "Mountain View Art & Wine Festival 2026, Sep 12 – Sep 13",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_ac575f280da4",
              "venue_id": "venue_castro_theater",
              "title": "Orville Peck",
              "event_time": "sep 12 8pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "“Blue Skies” were certainly ahead, though not right away, and not in the way he sings about on the song of the same name. Slow, drawn-out percussion and dramatic strings underscore Orville’s lush harmonizing and howling as he croons about (as he describes it) “descending back into darkness, even darker than ever before I went to rehab” before a discordant crash-out and crescendo. Rock bottom comes one night in downtown New York the summer of 2023 in the form of “The Fall,” chronicling the moment Orville knew—based on how his choices had begun to impact those closest to him—that a change needed to come, and quickly. “The lyrics are mostly about yearning for missing everything that I had lost in my life at that point: my relationship, my career, and my sanity,” he says. “But this song is also about finding the clarity that I needed to make a change, clarity that also involved healing some of the resentment I felt towards my ex and myself; this song is the turning point in the album that changes for the better.”",
              "event_types": [
                "live_music"
              ],
              "price_info": "Sold Out!",
              "url": "https://thecastro.com/events/orville-peck-260912",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-08-26T11:11:53.167543Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_daf4ddc9bdec",
              "venue_id": "venue_public_works",
              "title": "Boombox Cartel",
              "event_time": "2026-09-12T21:00:00",
              "venue_name": "Public Works",
              "event_start": "2026-09-12T21:00:00",
              "event_date": "2026-09-12",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "Producer act Boombox Cartel blending electronic and hip-hop, presented by Public Works and Insomniac.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Starts at $43.17",
              "url": "https://dothebay.com/events/2026/9/12/boombox-cartel-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-08-17T10:45:28.908286Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_public_works|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_000aa324ffe4",
              "venue_id": "venue_sap_center",
              "title": "Palomazo Norteño - Clase Maestra",
              "event_time": "2026-09-12T20:00:00",
              "venue_name": "SAP Center",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "Palomazo Norteño brings their Clase Maestra tour to SAP Center.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.sapcenter.com/events/detail/palomazo-norteno",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-08-20T12:59:28.269789Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sap_center|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_75e2709eeb81",
              "venue_id": "venue_center_for_new_music",
              "title": "2x2: Improvisations",
              "event_time": "September 12, 2026 7:30 PM",
              "venue_name": "Center for New Music",
              "event_start": "2026-09-12T19:30:00",
              "event_date": "2026-09-12",
              "venue_address": "55 Taylor St, San Francisco, CA 94102",
              "description": "2x2: Kevin Corcoran/Jacob Heule percussion duo; James Fei/Bill Hsu electronics duo; Corcoron/Fei/Heule/Hsu quartet [More]",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23262",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-21T10:21:29.885923Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_center_for_new_music",
                  "source_name": "Center for New Music",
                  "fetched_at": "2026-08-21T10:40:42.265292Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_center_for_new_music|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_beb1a73ea3fa",
              "venue_id": "venue_the_riptide",
              "title": "O69 BINGO! By the fireplace",
              "event_time": "Saturday, September 12 6:00 PM - 8:00 PM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-12T18:00:00",
              "event_date": "2026-09-12",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "Every Saturday Jean the Bingo Queen or Dr. Bird make dreams come true with Bingo. It's Free to play, so don't miss the fun! Next level fun with O69 Jell-O shots...",
              "event_types": [
                "sports"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2b6d9770b3b5",
              "venue_id": "venue_the_riptide",
              "title": "Velvet Underpants (Lou Reed Covers)",
              "event_time": "Saturday, September 12 9:30 PM - 11:59 PM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-12T21:30:00",
              "event_date": "2026-09-12",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "You can leave your pants on but make sure you have your Velvet Underpants",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9fa3b31b9fbf",
              "venue_id": "venue_the_lab",
              "title": "Michelle Lou / Stefan Maier",
              "event_time": "9/12/2026 8:30 PM",
              "venue_name": "The Lab",
              "event_start": "2026-09-12T20:30:00",
              "event_date": "2026-09-12",
              "venue_address": "2948 16th St, San Francisco, CA 94103",
              "description": "Michelle Lou / Stefan Maier + 100,000,000 Unread MessagesMichelle Lou and Stefan Maier, longtime friends working the field of electroacoustic performance and composition, perform a multichannel duo project at The Lab.Approximately 100,000,000 Unread Messages is the duo of Connor Tomaka and Isabelle Waldner Kalb, investigating the tactility at the edges of electroacoustic instrumentation through compositions for guitar and computer.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "$17 / free or discounted for members",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23356",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-21T21:20:53.694330Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_lab",
                  "source_name": "The Lab",
                  "fetched_at": "2026-08-27T10:16:58.091579Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_lab|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_b4bb3faee6d1",
              "venue_id": "venue_rio_theatre_sc",
              "title": "RUMBO TUMBA",
              "event_time": "2026-09-12",
              "venue_name": "Rio Theatre",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "1205 Soquel Ave, Santa Cruz, CA 95062",
              "description": "COMBO TEZETARUMBO TUMBA is the electroacoustic music project of Argentine multi-instrumentalist, composer, and producer Facundo Salgado, who has captivated audiences worldwide for over 12 years, touring more than 30 countries on all continents.Rumbo Tumba is a craftsman of organic loops, performing, recording, and mixing a variety of handcrafted South American instruments in real time. The live show features an impressive array of wooden instruments with which he constructs a unique natural sound and an atmosphere that transports listeners to the purest places in nature. Loop-based compositions highlight the beauty of traditional folk roots and delicately employ cutting-edge digital tools to project South American folklore into the future.Show time: 8:00 PM, doors 7:00 PMTickets: $42.70Advance tickets: www.tickets.worldclassmusic.liveArtists website: www.rumbotumba.comEvent website: www.worldclassmusic.liveYouTube: www.youtu.be",
              "event_types": [
                "experimental",
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.riotheatre.com/events-2/2026/9/12/rumbotumba",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rio_theatre_sc",
                  "source_name": "Rio Theatre",
                  "fetched_at": "2026-08-22T11:37:08.858495Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rio_theatre_sc|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_85738a42e7ac",
              "venue_id": "venue_crepe_place",
              "title": "Squirrels of Wisdom",
              "event_time": "2026-09-12",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "TICKETS",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "FREE",
              "url": "https://thecrepeplace.com/shows-list/squirrels-of-wisdom-saturday-september-27-5-to-7pm-on-the-garden-stage-free-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e37d07e5aa53",
              "venue_id": "venue_abbott_square",
              "title": "MATT MASIH AND THE MESSENGERS",
              "event_time": "Saturday, September 12, 2026 7:00 PM - 10:00 PM",
              "venue_name": "Abbott Square Market",
              "event_start": "2026-09-12T19:00:00",
              "event_date": "2026-09-12",
              "venue_address": "725 Front St, Santa Cruz, CA 95060",
              "description": "Feel the funk, feed your soul, find that groove and jam out here at Abbott Square Market. You won't want to miss this group! They definitely bring that need to dance energy!\n\nFree and all ages - provided by Abbott Square Market. Grab a bite and enjoy yourself!\n\n**FULL BAND | FUNK , SOUL, GROOVE**\n\nTo find out more:\n\nwww.fb.com/mattmasihmusic",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Free",
              "url": "https://www.abbottsquaremarket.com/events/matt-masih-and-the-messengers-2",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_abbott_square",
                  "source_name": "Abbott Square Market",
                  "fetched_at": "2026-08-22T12:39:51.694804Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_abbott_square|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7a70baa8b2cc",
              "venue_id": "venue_colligan_theater",
              "title": "Best Coast Burlesque",
              "event_time": "Saturday, September 12 7 – 10pm",
              "venue_name": "Colligan Theater",
              "event_start": "2026-09-12T19:00:00",
              "event_date": "2026-09-12",
              "venue_address": "1010 River St, Santa Cruz, CA 95060",
              "description": "7pm to 10pm, Best Coast Burlesque, Calendar: Colligan Events, No location, September 12, 2026",
              "event_types": [
                "dance",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_colligan_theater",
                  "source_name": "Colligan Theater",
                  "fetched_at": "2026-08-22T12:44:15.808279Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_colligan_theater|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e9f4a461e6e6",
              "venue_id": "venue_act_theater",
              "title": "Crushing",
              "event_time": "2026-09-12",
              "venue_name": "ACT Theater",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "Limited Engagement",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-08-22T13:54:28.481304Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_act_theater|2026-09-12",
              "run_id": "run_b8d49cfc30e6",
              "run_label": "Crushing, Sep 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_cdc792b1fbbe",
              "venue_id": "venue_verdi_club",
              "title": "Roaring 20's Dinner Dance Party",
              "event_time": "2026-09-12T17:30:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-09-12T17:30:00",
              "event_date": "2026-09-12",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance",
                "community"
              ],
              "price_info": "",
              "url": "https://www.verdiclub.net/events-calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-08-22T14:55:24.428239Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_verdi_club|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d294a917a849",
              "venue_id": "venue_bayfront_theater",
              "title": "Spontaneous Broadway",
              "event_time": "2026-09-12",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "BATS Improv presents: Spontaneous Broadway",
              "event_types": [
                "comedy"
              ],
              "price_info": "Not specified",
              "url": "https://www.improv.org/shows",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-08-22T15:11:24.975133Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-09-12",
              "run_id": "run_770a2611a1ad",
              "run_label": "Spontaneous Broadway, Sep 5 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b7f7557f7bc9",
              "venue_id": "venue_crows_nest_sc",
              "title": "TIGER'S TALE",
              "event_time": "Saturday September 12th 08:00 PM",
              "venue_name": "The Crow's Nest",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "2218 East Cliff Dr, Santa Cruz, CA 95062",
              "description": "Saturday September 12th Motown, reggae, R&B, blues and soul Starts at 08:00 PM",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$8 cover",
              "url": "https://www.tigerstale.net/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crows_nest_sc",
                  "source_name": "The Crow's Nest",
                  "fetched_at": "2026-08-22T15:19:13.909618Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crows_nest_sc|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_935f7a63a0f3",
              "venue_id": "venue_sc_beach_boardwalk",
              "title": "Fall Campout",
              "event_time": "2026-09-12",
              "venue_name": "Santa Cruz Beach Boardwalk",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "400 Beach St, Santa Cruz, CA 95060",
              "description": "Experience a one‑of‑a‑kind overnight adventure at the Boardwalk. Perfect for families, friends, schools, clubs, teams, and anyone ready to create unforgettable memories together.",
              "event_types": [
                "community"
              ],
              "price_info": "$99.95",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sc_beach_boardwalk",
                  "source_name": "Santa Cruz Beach Boardwalk",
                  "fetched_at": "2026-08-22T16:30:12.819028Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sc_beach_boardwalk|2026-09-12",
              "run_id": "run_3a5cc1cccd2b",
              "run_label": "Fall Campout, Sep 11 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_96c08900b8e9",
              "venue_id": "venue_sc_beach_boardwalk",
              "title": "Oktoberfest",
              "event_time": "2026-09-12",
              "venue_name": "Santa Cruz Beach Boardwalk",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "400 Beach St, Santa Cruz, CA 95060",
              "description": "Join us for an Oktoberfest celebration packed with lederhosen, dirndls, great brews and wines, and delicious Bavarian bites by the beach. This event is for all ages and features live music, games, and festive fun all night long.",
              "event_types": [
                "live_music",
                "community",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sc_beach_boardwalk",
                  "source_name": "Santa Cruz Beach Boardwalk",
                  "fetched_at": "2026-08-22T16:30:12.819028Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sc_beach_boardwalk|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a6b37b5dde03",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Alice for Wonderland",
              "event_time": "2026-09-12",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "| Today’s Shows: 2pm, 7:30pm |\n| Performances: Sept. 8-13 |  \n \n“Be Our Guest” at Disney’s BEAUTY AND THE BEAST, Disney’s first North American touring production of the beloved musical in over 25 year…",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sanjosetheaters.org/event/78443616-20260912000000",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "San Jose CPA",
                  "fetched_at": "2026-08-28T18:46:14.894140Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-12",
              "run_id": "run_304a2c902844",
              "run_label": "Alice for Wonderland, Aug 22 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_dc41a2723917",
              "venue_id": "venue_the_marsh_sf",
              "title": "Dan Hoyle TAK",
              "event_time": "2026-09-12",
              "venue_name": "The Marsh SF",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "Dan Hoyle’s Takes All Kinds Winner of SF Bay Area Critics Circle Award “Best Solo Performance” Live & In Person at The Marsh San Francisco Mainstage Written & Performed by Dan Hoyle Directed by Aldo Billingslea & Michael Moran Developed with Charlie Varon Online ticket sales close 2 hours before each performance, and additional tickets may be available for purchase at the door. August 1 – September 18, 2026 Select Fridays at 7:30 pm, Select Saturdays at 5:00 pm (please check ticket link for show dates and times) May 8 – 100th Performance & Post-show Talkback with Mark Follman, National Editor of Mother Jones magazine Award-winning journalist Mark Follman is the national affairs editor at Mother Jones and author of the bestselling book, “Trigger Points: Inside the Mission to Stop Mass Shootings in America” May 22 – Post-show Talkback with Arlie Hochschild, Berkeley Sociologist and author of Stolen Pride Named one of Barack Obama’s Favorite Books of 2024 and a New York Times Notable Book of the Year. For all the attempts to understand the state of American politics and the blue/red divide, we’ve ignored what economic and cultural loss can do to pride . In Stolen Pride , renowned sociologist Arlie Russell Hochschild ventures to Appalachia to uncover the “pride paradox” that has given the right’s appeals such resonance. June 6 – Post-show Talkback on The Science Behind How People’s Minds Change with UCSF Professor and Researcher Michael Geschwind Michael Geschwind, MD, PhD, is a professor of neurology at the UCSF Weill Institute for Neurosciences and a clinician-researcher at the UCSF Edward and Pearl Fein Memory and Aging Center. A behavioral neurologist, he specializes in understanding how changes in thinking, behavior, emotion, and movement reflect underlying brain changes. In his clinical work, he evaluates patients with memory disorders, rapidly progressive dementias, movement disorders, and other neurological conditions, using detailed assessments of cognition, be",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://themarsh.org/shows_and_events/marshstream/dan-hoyle-takes-all-kinds/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-08-22T17:28:42.838285Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-09-12",
              "run_id": "run_76a851d0a0e5",
              "run_label": "Dan Hoyle TAK, Aug 1 – Sep 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_57fbe4e4fe96",
              "venue_id": "venue_sc_beach_boardwalk",
              "title": "SC Beach Boardwalk: Octoberfest",
              "event_time": "2026-09-12 September 12 @ 5:30 pm - 8:30 pm",
              "venue_name": "Santa Cruz Beach Boardwalk",
              "event_start": "2026-09-12T17:30:00",
              "event_date": "2026-09-12",
              "venue_address": "400 Beach St, Santa Cruz, CA 95060",
              "description": "Head to the Aloha Terrace at the Santa Cruz Beach Boardwalk for a festive 21+ celebration packed with live entertainment, dancing, games, great brews and wines, and delicious Bavarian bites. […]",
              "event_types": [
                "festival",
                "community"
              ],
              "price_info": "$89.95",
              "url": "https://www.santacruz.org/upcoming-event/sc-beach-boardwalk-octoberfest/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_visit_santa_cruz_county",
                  "source_name": "Visit Santa Cruz County",
                  "fetched_at": "2026-08-22T18:34:05.859446Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sc_beach_boardwalk|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_bfa8d63fbfb1",
              "venue_id": "venue_sc_museum_nat_history",
              "title": "Member Meet Up: Hatchery Tour",
              "event_time": "September 12 @ 10:00 am",
              "venue_name": "Santa Cruz Museum of Natural History",
              "event_start": "2026-09-12T10:00:00",
              "event_date": "2026-09-12",
              "venue_address": "1305 E Cliff Dr, Santa Cruz, CA 95062",
              "description": "Meet the salmonids! Join the Monterey Bay Salmon and Trout Project for an exclusive tour of their hatchery in Davenport where you’ll enjoy an overview of salmonids, their lifecycle, ecology, and the natural and human-caused threats they face. This tour will explore the differences between hatchery models, highlighting work focused on conservation, genetic diversity, disease...",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzmuseum.org/event/member-meet-up-hatchery-tour/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sc_museum_nat_history",
                  "source_name": "Santa Cruz Museum of Natural History",
                  "fetched_at": "2026-08-22T19:25:35.374632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sc_museum_nat_history|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_679daa9db717",
              "venue_id": "venue_seymour_center",
              "title": "Seaside Storytime",
              "event_time": "September 12 @ 10:30 am – 11:30 am",
              "venue_name": "Seymour Marine Discovery Center",
              "event_start": "2026-09-12T10:30:00",
              "event_date": "2026-09-12",
              "venue_address": "100 McAllister Way, Santa Cruz, CA 95060",
              "description": "",
              "event_types": [
                "literary",
                "community"
              ],
              "price_info": "",
              "url": "https://events.ucsc.edu/event/seymour-centers-seaside-storytime/2026-09-12/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_seymour_center",
                  "source_name": "Seymour Marine Discovery Center",
                  "fetched_at": "2026-08-22T19:35:23.609406Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_seymour_center|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9abca25c88dd",
              "venue_id": "venue_scpl_downtown",
              "title": "Community Crafters @ Boulder Creek",
              "event_time": "September 12 2026 10:00am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-12T10:00:00",
              "event_date": "2026-09-12",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Join us each Saturday morning for a relaxing time crafting with your neighbors.",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15202670",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e196b9ff964c",
              "venue_id": "venue_scpl_downtown",
              "title": "English Language Conversation Group",
              "event_time": "September 12 2026 10:00am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-12T10:00:00",
              "event_date": "2026-09-12",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "In partnership with the Volunteer Center Literacy Program",
              "event_types": [
                "community",
                "literary"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15223964",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_918202b73774",
              "venue_id": "venue_scpl_downtown",
              "title": "Aptos Library Friends Pop-Up Book Sale",
              "event_time": "September 12 2026 10:00am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-12T10:00:00",
              "event_date": "2026-09-12",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Big stories, tiny prices! Browse our pop-up book sale packed with great finds. $5 a bag!! Every purchase supports the Aptos Library. Stop by, snag a stack, and support your library today!!!",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16005725",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7171319c59cf",
              "venue_id": "venue_scpl_downtown",
              "title": "Zentangle Art",
              "event_time": "September 12 2026 10:30am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-12T10:30:00",
              "event_date": "2026-09-12",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "The Zentangle Method is a fun way to create beautiful images by drawing structured patterns. Join Certified Zentangle Teacher Lisa Hoesing for an introductory workshop and monthly meetup.",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16537225",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6367f6d5f046",
              "venue_id": "venue_scpl_downtown",
              "title": "Whispering Whiskers:",
              "event_time": "September 12 2026 10:30am - 11:30am",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-12T10:30:00",
              "event_date": "2026-09-12",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Meow-wow! Come read and learn about kittens with the Santa Cruz County Animal Shelter!",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16963867",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4b86590983e4",
              "venue_id": "venue_scpl_downtown",
              "title": "Are You Game?",
              "event_time": "September 12 2026 12:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-12T12:00:00",
              "event_date": "2026-09-12",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Adults need playtime, too! Come play some new or old favorite tabletop games. Bring your own or play some of the library's games. No prior gaming experience is necessary. 18+. Every 2nd Saturday.",
              "event_types": [
                "sports",
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15425164",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c0e54cb1614f",
              "venue_id": "venue_scpl_downtown",
              "title": "North County Advisory Council of Teens (ACT)",
              "event_time": "September 12 2026 2:00pm - 4:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-12T14:00:00",
              "event_date": "2026-09-12",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Learn about volunteer opportunities and how teens like you can create change in your library! Followed by a chill activity and free snacks (and get your volunteer hours just for showing up)! ACT now!",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15544295",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b4029bcb4ed1",
              "venue_id": "venue_scpl_downtown",
              "title": "Chess Club with Gjon",
              "event_time": "September 12 2026 2:00pm - 3:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-12T14:00:00",
              "event_date": "2026-09-12",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Downtown Library Youth Chess Club. Open to players ages 6 to 18. Instructor is Chess Master Gjon Feinstein.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16372780",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b69e8cb51174",
              "venue_id": "venue_scpl_downtown",
              "title": "How To Digitize Photos Like A Pro",
              "event_time": "September 12 2026 2:00pm - 3:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-12T14:00:00",
              "event_date": "2026-09-12",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "From organizing your physical photo collection to scanning and backing it up, Lisa Krigsman will share her best tips to ensure your memories are safely preserved for generations to come.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17032004",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ff94abcae170",
              "venue_id": "venue_scpl_downtown",
              "title": "Sewing Machine Basics",
              "event_time": "September 12 2026 2:00pm - 4:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-12T14:00:00",
              "event_date": "2026-09-12",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Bring your sewing machine and build confidence using it as you learn the basics, explore its features, and practice sewing.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17254788",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_151561cfea95",
              "venue_id": "venue_the_midway",
              "title": "Chai & Beats",
              "event_time": "2026/09/12 Sat: Sep 12 (4pm-9pm)",
              "venue_name": "The Midway",
              "event_start": "2026-09-12T16:00:00",
              "event_date": "2026-09-12",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "house, hip-hop, afrobeats, bollywood",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$20-35 | 21+",
              "url": "https://www.tixr.com/groups/midwaysf/events/chai-beats-san-francisco-193865",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-08-30T10:57:54.572474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_55f49647718e",
              "venue_id": "venue_homestead_bowl",
              "title": "Unter Null",
              "event_time": "2026/09/12 Sat: Sep 12 (9pm-1am)",
              "venue_name": "Homestead Bowl & The X Bar",
              "event_start": "2026-09-12T21:00:00",
              "event_date": "2026-09-12",
              "venue_address": "20990 Homestead Rd, Cupertino, CA 95014",
              "description": "industrial, EBM, aggrotech, dark electro",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$25 adv / $30 | 18+",
              "url": "https://www.instagram.com/p/Db3zDlSAfo2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_homestead_bowl|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_647112514106",
              "venue_id": "venue_sf_eagle",
              "title": "Clubknot",
              "event_time": "2026/09/12 Sat: Sep 12 (9pm-2am)",
              "venue_name": "SF Eagle",
              "event_start": "2026-09-12T21:00:00",
              "event_date": "2026-09-12",
              "venue_address": "398 12th St, San Francisco, CA 94103",
              "description": "techno",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$28.75-34.50 | 21+",
              "url": "https://ra.co/events/2506598",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_eagle|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_fa67f70ad78c",
              "venue_id": "venue_the_midway",
              "title": "Whales",
              "event_time": "2026/09/12 Sat: Sep 12 (9pm-2am)",
              "venue_name": "The Midway",
              "event_start": "2026-09-12T21:00:00",
              "event_date": "2026-09-12",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "GODS & MONSTERS ∙ INDOORS",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$12.50-22.50 | 21+",
              "url": "https://www.tixr.com/groups/midwaysf/events/whales-196023",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-08-30T10:57:54.572474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_44885f739ee3",
              "venue_id": "venue_space_550",
              "title": "Salute",
              "event_time": "2026/09/12 Sat: Sep 12 (10pm-3am)",
              "venue_name": "SPACE 550",
              "event_start": "2026-09-12T22:00:00",
              "event_date": "2026-09-12",
              "venue_address": "550 Barneveld Ave, San Francisco, CA 94124",
              "description": "uk garage, deep house",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$48 | 21+",
              "url": "https://ra.co/events/2508124",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_space_550|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_7ef3e89711a1",
              "venue_id": "venue_the_fireside",
              "title": "Second Saturday Night Comedy At Fiureside",
              "event_time": "SEP 12 2026",
              "venue_name": "The Fireside",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Enjoy a night of stand-up comedy featuring a lineup of hilarious local and touring comics at The Fireside. Settle in with a drink and get ready for an evening packed with laughs.",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "https://www.thefiresidelounge.com/#!/e/saturday-night-comedy-jun-19-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-08-24T11:04:43.394724Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fireside|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_162fb539f37d",
              "venue_id": "venue_the_sound_room",
              "title": "Kenny Washington Quartet",
              "event_time": "Saturday, September 12, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-09-12T19:30:00",
              "event_date": "2026-09-12",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "A masterful vocalist and “the superman of the Bay Area jazz scene” (SF Chronicle), Kenny Washington is easily among the most beloved and soulful singers working today. A native of New Orleans, Kenny grew up singing gospel music in church and playing saxophone in the school band. He continued his music studies at Xavier University where he became interested in various styles ranging from traditional and contemporary jazz, to classical, to rhythm-and-blues and pop. Joining the U.S. Navy Band in 1986, Kenny performed and toured nationally and internationally through out the U.S., Asia, Russia, and Australia. After nine years in the Navy, Kenny made his home in the San Francisco Bay Area where he established himself as a top vocalist.\n\nWhile performing with the Michael O’Neill Quintet at the Douglas Beach House, Kenny met vibraphonist Joe Locke who happened to be in the audience. This led to an invitation to perform with Joe at Dizzy’s; Jazz at Lincoln Center (JALC). Since then he has been a featured artist at JALC for over ten years where he has appeared with Joe Locke, Eric Reed, Eric Alexander, Joe Lavano, Branford Marsalis, Roberta Gambarini and Wynton Marsalis. With Wynton, Kenny has performed both in small groups and large including numerous times with the \"Jazz at Lincoln Center Orchestra.” In 2013 Kenny was featured in Wynton’s oratorio: \"Blood On The Fields\" which also included vocalist Gregory Porter. Kenny has headlined performances in Japan, Russia, Scotland, Shanghai, Denmark, Mongolia and many other countries. He has performed at top Jazz Festival including the Monterey Jazz Festival, Mid-Atlantic Jazz Festival and the San Jose Jazz Festival.\n\nKenny is a jazz vocalist virtuoso. Emulating the classic styles of Ella Fitzgerald and Sarah Vaughan and infusing colors of Stevie Wonder and Donny Hathaway, Kenny's free, playful approach, with over a four-octave range is awe inspiring. His tone on ballads is liquid and his scat singing - informed by his saxophone playing - is rapid-fire, passionate, melodious and inventive. His intonation is so precise that it becomes noticeable if the piano wasn’t tuned that day. Kenny is considered by many to be the premiere male vocalist on the planet today. This man is a must-see.\n\nTickets at Kenny Washington Quartet",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/pwa25w23l4kpgybtzt6tat7tcw54f9",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-08-26T10:25:42.190144Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f50fb8ab8675",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Little Shop of Horrors",
              "event_time": "8:00PM, Saturday, September 12, 2026",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Book & Lyrics by Howard Ashman, Music by Alan Menken. Based on the film by Roger Corman, Screenplay by Charles Griffith. Directed by Ben Villegas Randle, Musical Direction by Jad Bernardo, Choreography by Leslie Waggoner",
              "event_types": [
                "theater",
                "live_music"
              ],
              "price_info": "",
              "url": "https://nctcsf.org/event/little-shop/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-08-26T11:06:39.262369Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-09-12",
              "run_id": "run_5315ef200ae4",
              "run_label": "Little Shop of Horrors, Sep 12 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_eeef7af3b63f",
              "venue_id": "venue_rock_the_dock",
              "title": "Groove Ride",
              "event_time": "2026-09-12T15:30:00",
              "venue_name": "Rock the Dock",
              "event_start": "2026-09-12T15:30:00",
              "event_date": "2026-09-12",
              "venue_address": "459 Seaport Court, Redwood City, CA 94063",
              "description": "Pop, R&B, Motown, Funk, and Old School live music performance.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Free admission ($5-$20 suggested donation)",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rock_the_dock",
                  "source_name": "Rock the Dock",
                  "fetched_at": "2026-08-26T11:47:48.099004Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rock_the_dock|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_7e9d705908ca",
              "venue_id": "venue_guild_theatre",
              "title": "Corduroy: Pearl Jam Experience",
              "event_time": "SEP\n12\n8:00 PM",
              "venue_name": "Guild Theatre",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "Pumpkin Heads: Smashing Pumpkins Tribute",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.guildtheatre.com/shows/corduroy-pearl-jam-experience-12-sep",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-08-28T10:40:15.787828Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_guild_theatre|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_da404233b4c2",
              "venue_id": "venue_the_freight__salvage",
              "title": "Ballaké Sissoko and Piers Faccini",
              "event_time": "2026-09-12T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-12T19:00:00",
              "event_date": "2026-09-12",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "worldclassmusic.live and The Freight proudly present Ballake Sissoko and Piers Faccini www.ballakesissoko.com Thursday 9/10 Saturday 9/12 doors 7pm / showtime 8pm The new album is available on CD and vinyl at ticket check-out! 'gentle, captivating work.... poetic songs soaked in nature imagery and beautifully married to Sissoko’s intricate, dazzling playing' - The Guardian Two decades after their first ever collaboration, British-Italian folk songwriter, Piers Faccini, and Malian kora virtuoso, Ballaké Sissoko, return with a mesmerizing album. This new and captivating musical dialogue — between a prodigious instrumentalist at the height of his powers and a gifted songwriter and wordsmith — deftly bridges continents and traditions, inventing new song forms. The seeds of Our Calling were first planted when Sissoko and Faccini met at Label Bleu in the early 2000s. Their friendship grew as they linked and explored uncharted paths between Manding traditions and folksong forms. With its ten finely crafted tracks, Our Calling is a sonic and narrative praise song for migration in all its manifestations: seeds borne by the winds; Nightingales flying between West Africa and Europe at the turn of the seasons; humans, across the centuries, and along trade routes, sharing musical practices and rhythms. The album’s originality is that it feels deeply Malian at its core, while also being seamlessly infused with an essence of folk songwriting; the two elements blending without one ever overshadowing the other. The duo’s ambition when they began imagining the album was clear: the musical language begins and ends with Manding traditions and modes. The songs had that creative brief. Their melodies, although sung in English, are constructed and stepped along Manding lines. The originality of Sissoko and Faccini’s dialogue is best exemplified with the song “If Nothing is Real” — a song that succeeds in finding a home away from home, both on the African and European continents. It is a t",
              "event_types": [
                "live_music",
                "latin_world",
                "folk"
              ],
              "price_info": "TICKETS SOLD BY CO-PRESENTER",
              "url": "https://tickets.worldclassmusic.live/events/wcml/2276359",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_550a23a8f714",
              "venue_id": "venue_california_jazz_conservatory",
              "title": "Jazz Jam at Jupiter",
              "event_time": "2026-09-12",
              "venue_name": "CA Jazz Conservatory",
              "event_start": "2026-09-12T19:30:00",
              "event_date": "2026-09-12",
              "venue_address": "2087 Addison St, Berkeley, CA 94704",
              "description": "Jazz jam session",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://concerts.jazzschool.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_jazz_conservatory",
                  "source_name": "CA Jazz Conservatory",
                  "fetched_at": "2026-08-28T12:15:46.788864Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_california_jazz_conservatory|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_94435fe00839",
              "venue_id": "venue_meyhouse",
              "title": "Alan Broadbent Trio",
              "event_time": "Sep 12, 2026, 5:00 PM – 8:00 PM",
              "venue_name": "Meyhouse Palo Alto",
              "event_start": "2026-09-12T17:00:00",
              "event_date": "2026-09-12",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.meyhousejazz.com/event-details/two-time-grammy-winner-alan-broadbent-with-harvie-s-akira-tana-sat-9-12-5-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Palo Alto",
                  "fetched_at": "2026-08-28T12:28:47.745590Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_meyhouse|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_704055a6f41f",
              "venue_id": "venue_meyhouse",
              "title": "Alan Broadbent Trio",
              "event_time": "Sep 12, 2026, 8:00 PM – 10:00 PM",
              "venue_name": "Meyhouse Palo Alto",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.meyhousejazz.com/event-details/two-time-grammy-winner-alan-broadbent-with-harvie-s-akira-tana-sat-9-12-8-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Palo Alto",
                  "fetched_at": "2026-08-28T12:28:47.745590Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_meyhouse|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_784991f3795c",
              "venue_id": "venue_sfjazz_lab",
              "title": "NDUDUZO MAKHATHINI TRIO",
              "event_time": "2026-09-12 7:00 PM",
              "venue_name": "SFJAZZ Lab",
              "event_start": "2026-09-12T19:00:00",
              "event_date": "2026-09-12",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Over the last decade in jazz’s evolution, no pianist has had the impact of South African keyboard great Nduduzo Makhathini . He brings his working trio and music from his newest Blue Note session, The Myth We Choose , to this SFJAZZ debut. Born in the lush province of KwaZulu-Natal and raised within the spiritual traditions of Zulu culture, Nduduzo Makhathini has become one of the most visionary figures in contemporary jazz. His music fuses the expansive language of American jazz with African spirituality, ritual, and collective memory, creating performances that feel equally like concerts and ceremonies. Deeply influenced by John Coltrane, McCoy Tyner, and South African legends Bheki Mseleku and Abdullah Ibrahim, Makhathini has developed a profoundly personal sound marked by thunderous improvisation, lyrical sensitivity, and emotional depth. A prolific recording artist, educator, and scholar, Makhathini became the first South African artist signed to Blue Note Records in decades, earning international acclaim for albums including Modes of Communication , In the Spirit of Ntu , and uNomkhubulwane . His work has established him as a global ambassador for modern African jazz and one of the music’s most spiritually resonant voices. With The Myth We Choose , Makhathini continues his fearless exploration of identity, ancestry, and liberation, crafting music of breathtaking power, intimacy, and transcendence.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/nduduzo-makhathini-trio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_lab|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_697e77d65046",
              "venue_id": "venue_sfjazz_miner",
              "title": "CHRISTIAN MCBRIDE'S URSA MAJOR",
              "event_time": "2026-09-12 7:30 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-09-12T19:30:00",
              "event_date": "2026-09-12",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Bassist and composer Christian McBride ’s most recent project is a quintet showcasing several of the most exciting young players on the scene. Returning to the Miner Auditorium stage for two nights, the cast features tenor saxophonist Nicole Glover , who has toured with Wynton Marsalis and Jazz at Lincoln Center Orchestra, performed with veteran masters such as drummer Al Foster, vocalist Dee Dee Bridgewater, and bassist Reggie Workman, and recorded with pianist Aaron Diehl’s GRAMMY-nominated 2023 Mary Lou Williams project Zodiac Suite. Ely Perlman is an exciting young guitarist who has collaborated with Terreon Gully and Braxton Cook, and Chicago pianist Mike King has been touring with Dee Dee Bridgewater, and trumpeters Marquis Hill, Theo Croker, and Marcus Printup. Powering the band is Oakland native Savannah Harris , a remarkably poised young drummer who has made a major impact with the likes of vocalist Cécile McLorin Salvant, Kenny Barron, and Immanuel Wilkins. About Christian McBride More than a bass superstar, Christian McBride has become a commanding force in American culture. His responsibilities are legion, from producer and radio host to his recent post as artistic director of the historic Newport Jazz Festival. And that’s to say nothing of his era-defining work as an eleven-time GRAMMY Award-winning bandleader and recording artist who’s collaborated with everyone from McCoy Tyner, Sonny Rollins, Pat Metheny and Chick Corea to Sting, Paul McCartney, Kathleen Battle, The Roots and James Brown.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/christian-mcbride-ursa-major/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_600d23ccfb9f",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Drumming Up Resistance",
              "event_time": "2026-09-12 7:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-09-12T19:00:00",
              "event_date": "2026-09-12",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "Drumming Up Resistance is an engaging presentation by anthropologist, musician, and author Umi Vaughan based on his latest book, Silencing the Drum: Religious Racism and Afro-Brazilian Sacred Music. Drawing on years of conversations with religious leaders, musicians, and community activists across Brazil, Vaughan explores the resilience of Afro-Brazilian sacred traditions in the face of religious intolerance and cultural erasure. The program features rare audio recordings made with master musicians in Brazil and concludes with an opportunity for audience discussion—and perhaps even a little communal music-making. Don't miss it!\n\n\nUmi Vaughan is an artist-scholar who reimagines life and celebrates culture through a Black diasporic lens. His training includes a B.A. in Fine Art and Spanish Language from Morehouse College, a Ph.D. in Cultural Anthropology from the University of Michigan, and music making in communities across the African diaspora, especially the Bay Area, Peru, Colombia, Cuba, and Brazil. He is the co-author of Silencing the Drum: Religious Racism and Afro-Brazilian Sacred Music, author of Carlos Aldama’s Life in Batá: Cuba, Diaspora, and the Drum and Rebel Dance, Renegade Stance: Timba Music and Black Identity in Cuba. To learn more visit UMIART.ART.",
              "event_types": [
                "literary",
                "community"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/drumming-up-resistance-with-umi-vaughan",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-08-28T14:05:33.197491Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a40e566b0925",
              "venue_id": "venue_temescal_arts_center",
              "title": "Improvisation Workshop - First Tuesdays",
              "event_time": "2026-09-12T20:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Improvisation is the key - hosted by Lewis Jordan. Open Workshop and Playground in free improvisation. Spontaneously Assembled Small Groups will collaborate. Come to listen, to be heard, to see, to move. Inviting musicians, poets, dancers, to a non-hierarchical setting to improvise together. Spontaneously composing or conducting, we'll be on a quest for fire.",
              "event_types": [
                "workshop",
                "experimental"
              ],
              "price_info": "Donations encouraged",
              "url": "https://www.temescalartcenter.org/tacmusic.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-08-28T14:09:19.773505Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-09-12",
              "run_id": "run_16a4ae4ccea6",
              "run_label": "Improvisation Workshop - First Tuesdays, Sep 1 – Dec 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_897357d02ac3",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-09-12",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-09-12",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8a1e827533ba",
              "venue_id": "venue_the_uc_theatre",
              "title": "Kuma Sagar",
              "event_time": "Sep 12 - Show: 9:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-09-12T21:00:00",
              "event_date": "2026-09-12",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "Kuma Sagar, is a rising Nepali singer and songwriter celebrated for blending traditional Newa melodies with modern music. Born and raised in Bhaktapur, his journey into music began at a dafa, where he accompanied his grandfather to play traditional instruments like the Khing baja. Early exposure to Newa bhajans and community music fueled his passion for the craft. Sagar’s debut song, Bajeko Bajang, recorded on his mobile phone, marked the start of his professional journey. Kuma Sagaar is celebrated for revitalizing Malla-era melodies and traditional instruments like the Dha, Flute, and Bhusyah. His music celebrates Newa culture, bringing vibrancy to festivals and jatras.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theuctheatre.org/shows/kuma-sagar-12-sep",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-08-28T14:51:03.968103Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a965b748582b",
              "venue_id": "venue_the_cats",
              "title": "Third Rail",
              "event_time": "2026-09-12 7:00 PM – 10:00 PM",
              "venue_name": "The Cats",
              "event_start": "2026-09-12T19:00:00",
              "event_date": "2026-09-12",
              "venue_address": "17533 Santa Cruz Hwy, Los Gatos, CA 95033",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.thecatslosgatos.com/event/third-rail-3/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_cats",
                  "source_name": "The Cats",
                  "fetched_at": "2026-08-28T15:00:29.173610Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_cats|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_52fc1c87b969",
              "venue_id": "venue_dawn_club",
              "title": "OAKLANDO",
              "event_time": "Saturday, September 12, 2026 8:00 PM 11:59 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "What do you get when you fuse the spicy grooves of Afro-Peru with that funky sound of Oaktown? A ground-breaking, new, energetic genre with distinctive rhythms and innovative melodies that will inspire you to hit the dance floor. Oaklando is the brainchild of SF native Patrick Morehead, the composer and keyboardist who’s played with such talents as Karl Perazzo, Steve Turre, Jerry Gonzalez, and Benny Valarde. Conceived at the Patio de Ochun Studios, with drummer Josh Jones (of Omar Sosa) bassist David Pinto (of Susana Baca) and cajon player Juan Medrano Cotito (of Susana Baca) Oaklando was engineered by multi-grammy winner, Greg Landau (of David Byrne fame), and became a recipient of the prestigious Music in Place Grant. Oaklando has regular performances at Local Edition, Lakehouse Jazz, Elevation LVK, and Zeitgeist. Along with Morehead, Cotito and Jones include Charlie Gurke (sax), Chloe Scott ( flute) Pedro Rosales (cajon/vocals) vocalist Marina Lavalle (Peru Negro) with guest appearances on the first recording ‘Lima Oakland’ by NY jazz phenom Yosvany Terry. Check out the newest single OAKLANDO on all platforms Oaklando is honored to present the highly acclaimed Dawn Club with its fusion of Afro-Peruvian rhythms and funky jazz dub.\n\n\n  \n#block-b8ec77e53e4689c1725f {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n\n\n  }\n\n  #block-b8ec77e53e4689c1725f .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-b8ec77e53e4689c1725f {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-b8ec77e53e4689c1725f {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-b8ec77e53e4689c1725f {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-b8ec77e53e4689c1725f {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-b8ec77e53e4689c1725f .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/oaklando-latin-wednesdays-6k4cm-dm8gp-e8kzc-slen5-w6zr9-zt9hj-nkzfm-8e3gw-65a6g-3thg3-dm8ef-hacrf-rprw9",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-08-28T15:32:50.415811Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9ad2197f6036",
              "venue_id": "venue_sfmoma",
              "title": "Matisse’s Femme au chapeau",
              "event_time": "Saturday, Sept 12–Sunday, Sept, 13, 2026 | 10 a.m.–Noon (both days)",
              "venue_name": "SFMoma",
              "event_start": "2026-09-12T10:00:00",
              "event_date": "2026-09-12",
              "venue_address": "151 Third St, San Francisco, CA 94103",
              "description": "Under the CPRA, you have the right to opt-out of the sale or sharing of your personal information to third parties. These cookies collect information for analytics and to personalize your experience with targeted ads. You may exercise your right to opt out of the sale or sharing of personal information by using this toggle switch. If you opt out we will not be able to offer you personalized ads and will not hand over your personal information to any third parties. Additionally, you may contact our legal department for further clarification about your rights as a California consumer by using this Exercise My Rights link.If you have enabled privacy controls on your browser (such as a plugin), we have to take that as a valid request to opt-out. Therefore we would not be able to track your activity through the web. This may affect our ability to personalize ads according to your preferences.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://www.sfmoma.org/event/member-last-looks-matisses-femme-au-chapeau-a-modern-scandal/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sfmoma",
                  "source_name": "SFMoma",
                  "fetched_at": "2026-08-28T16:39:30.693329Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfmoma|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_11f60d0ee03f",
              "venue_id": "venue_omca",
              "title": "Gallery Walk with Alicia Goode",
              "event_time": "2026-09-12T13:00:00",
              "venue_name": "OMCA",
              "event_start": "2026-09-12T13:00:00",
              "event_date": "2026-09-12",
              "venue_address": "1000 Oak St, Oakland, CA 94607",
              "description": "Join Alicia Goode, Preparator Supervisor and Taxidermist, as she leads us on a tour of OMCA’s Gallery of California Natural Sciences. The tour will showcase the beautiful and intricate dioramas, along with other displays and specimens she has helped to design and create for the Museum. This is a unique experience to learn from a professional taxidermist and museum preparator who oversees the maintenance of the permanent natural science exhibits at OMCA.",
              "event_types": [
                "workshop"
              ],
              "price_info": "Free for Members",
              "url": "https://museumca.org/event/member-tours-gallery-walk-with-preparator-supervisor-and-taxidermist-alicia-goode/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_omca",
                  "source_name": "OMCA",
                  "fetched_at": "2026-08-28T16:49:24.654558Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_omca|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_100ca491f8b6",
              "venue_id": "venue_omca",
              "title": "Good Medicine",
              "event_time": "2026-09-12T18:00:00",
              "venue_name": "OMCA",
              "event_start": "2026-09-12T18:00:00",
              "event_date": "2026-09-12",
              "venue_address": "1000 Oak St, Oakland, CA 94607",
              "description": "After selling out venues across the country, the smash-hit, all-Native comedy show, Good Medicine, returns to OMCA for the fourth year for a night of live stand-up from the best and brightest Native comedians across North America. Hosted and produced by comedian Jackie Keliiaa (Netflix) this year’s showcase features Brian Bahe (CBS), Cheyenna Sapp (Acting Good), and Marc Yaffee (Showtime). Doors open at 6 pm and the show starts promptly at 7:30 pm.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$25",
              "url": "https://museumca.org/event/good-medicine-a-night-of-live-native-stand-up-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_omca",
                  "source_name": "OMCA",
                  "fetched_at": "2026-08-28T16:49:24.654558Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_omca|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_71f7c6de020c",
              "venue_id": "venue_meyhouse_san_ramon",
              "title": "Jackie Ryan",
              "event_time": "Sat, Sep 12 5 pm",
              "venue_name": "Meyhouse San Ramon",
              "event_start": "2026-09-12T17:00:00",
              "event_date": "2026-09-12",
              "venue_address": "6000 Bollinger Canyon Rd, San Ramon, CA 94583",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.meyhousejazz.com/event-details/jackie-ryan-bossas-ballads-and-blues-sat-9-12-5-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse_san_ramon",
                  "source_name": "Meyhouse San Ramon",
                  "fetched_at": "2026-08-28T17:52:26.464636Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_meyhouse_san_ramon|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_43a2077c9d78",
              "venue_id": "venue_meyhouse_san_ramon",
              "title": "Jackie Ryan",
              "event_time": "Sat, Sep 12 8 pm",
              "venue_name": "Meyhouse San Ramon",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "6000 Bollinger Canyon Rd, San Ramon, CA 94583",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.meyhousejazz.com/event-details/jackie-ryan-bossas-ballads-and-blues-sat-9-12-8-pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse_san_ramon",
                  "source_name": "Meyhouse San Ramon",
                  "fetched_at": "2026-08-28T17:52:26.464636Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_meyhouse_san_ramon|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_126944a61391",
              "venue_id": "venue_envelop_sf",
              "title": "Lana Del Rey - NFR",
              "event_time": "Saturday, September 12, 09/12/2026",
              "venue_name": "Envelop SF",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "2439 3rd St, San Francisco, CA 94107",
              "description": "LISTEN is a series of iconic album listenings in Envelop, allowing us to listen together within the music. Here's the important info to know before you arrive - Envelop SF is a pioneering immersive listening space that allows you to experience sound like never before. Our events are low capacity by design and tickets can sell out quickly. We encourage you to make your purchase ahead of time so we don’t miss you. Envelop SF is a shoeless venue. We want you to be as comfortable as possible, and this helps us keep the space extra clean for everyone. You can find us easily. Envelop SF is within The Midway at 900 Marin St, SF, CA. Enter from the Michigan St side of the building through the patio. Envelop SF is ADA compliant. If you have any accessibility needs, please feel free to reach out ahead of time and we’ll be happy to support. A cash bar for wine, beer, and tea is available. No outside drinks or food are allowed. No admittance into Envelop SF beyond 15 mins after start time. The main gate will be closed. Arriving late disrupts the listening. Please arrive before the event begins. Please avoid in's and out's during listening events to respect everyone's experience. Listening events are seated, dance parties are not. This event's seating map is below the description. We have a comfortable space waiting for you.﻿ Please no phones while listening, and please silence your ringer. We encourage you to take photos before and after the event. Please also be respectful of other people's experiences in the space during the event. All sales are final. There are no refunds or ticket exchanges.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://envelop.us/event/ESF20260912-lana-del-rey-nfr-listen",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_envelop_sf",
                  "source_name": "Envelop SF",
                  "fetched_at": "2026-08-28T18:09:17.910007Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_envelop_sf|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_087422735c47",
              "venue_id": "venue_the_back_room",
              "title": "Janam",
              "event_time": "Sat, Sep 12, 8pm - 10pm PDT",
              "venue_name": "Back Room",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "1984 Bonita Ave,Berkeley,CA 94704",
              "description": "",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://events.humanitix.com/janam-benefit?hxchl=hex-col",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_back_room",
                  "source_name": "Back Room",
                  "fetched_at": "2026-08-28T18:22:02.750823Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_back_room|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bfdef58ee846",
              "venue_id": "venue_historic_bal_theatre",
              "title": "ULTIMATE DOORS TRIBUTE – STRANGE DAZE BAND",
              "event_time": "Saturday, Sep 12 Show: 8:00 PM",
              "venue_name": "Historic BAL Theatre",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "14808 E 14th St, San Leandro, CA 94578",
              "description": "Fronted by vocalist Max Schimm, the Strange Daze Band delivers accurate renditions of classic hits, B-sides, and deep cuts by The Doors. This tribute captures the legendary sound and psychedelic atmosphere of the iconic rock band.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.baltheatre.com/tm-event/ultimate-doors-tribute-strange-daze-band/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_historic_bal_theatre",
                  "source_name": "Historic BAL Theatre",
                  "fetched_at": "2026-08-28T18:55:07.595027Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_historic_bal_theatre|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cf0119cb6ce4",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Star Wars: Return of the Jedi",
              "event_time": "Saturday, Sep 12, 2026 | 7:30 pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-09-12T19:30:00",
              "event_date": "2026-09-12",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "A cookie is a small piece of data (text file) that a website – when visited by a user – asks your browser to store on your device in order to remember information about you, such as your language preference or login information. Those cookies are set by us and called first-party cookies. We also use third-party cookies – which are cookies from a domain different than the domain of the website you are visiting – for our advertising and marketing efforts. More specifically, we use cookies and other tracking technologies for the following purposes:",
              "event_types": [
                "film",
                "live_music",
                "classical"
              ],
              "price_info": "LEARN MORE",
              "url": "https://www.sfsymphony.org/Buy-Tickets/2026-27/Return-of-the-Jedi",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-08-28T19:38:14.129031Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_04aff2819f93",
              "venue_id": "venue_cry_baby",
              "title": "Afrobashment",
              "event_time": "2026-09-12T07:00:00.000Z",
              "venue_name": "Cry Baby",
              "event_start": "2026-09-12T07:00:00",
              "event_date": "2026-09-12",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "Actually Proper Presents AFROBASHMENT (afrobeats, dancehall, hip-hop & more) Sat Sep 12, 2026 10:00 PM 21+ Buy Tickets Additional Info AFROBASHMENT — The Bay's destination for diaspora dance music. Every month we bring together the sounds that move the culture: afrobeats, dancehall, soca, amapiano, reggaeton, hip-hop, R&B, and the classics that never left the rotation. Our resident DJs curate the night so every set flows seamlessly from Lagos to Kingston to Oakland. Plus a rotating monthly patio takeover featuring guest selectors and sounds from across the diaspora. No passport required — just pull up ready to move. DJs and Patio Takeover TBA! 360 Stage! 21+ | Doors + Music @ 10PM | Drink Specials All Night + Google Calendar Related Events Buy Tickets Fri Aug 28 GEMS x 2000's Party: The Bay's Best Throwback Party! w/ DJ Devere + Nate Rioz + Mia Amore + J. Quest & PATIO TAKEOVER by Berk Visual Buy Tickets Sat Aug 29 Crash Out (afrobeats, dancehall, hip-hop & more) Buy Tickets Fri Sep 4 LIFE OF THE PARTY - Oakland's Top First Friday Party! w/ J.Espinosa + DJ Black Woman + E-Will & PATIO TAKEOVER by H.E.R.E.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://crybaby.live/tm-event/afrobashment-afrobeats-dancehall-hip-hop-more-4/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-08-28T19:56:15.638282Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cry_baby|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ae0ec431e26b",
              "venue_id": "venue_exploratorium",
              "title": "Storytime Science for Kids: Space Is the Place",
              "event_time": "2026-09-12",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Join us for Storytime Science and enjoy an engaging storybook read-aloud followed by a related activity geared toward children and their grown-ups. Come hear a story, get hands-on, and learn something new!",
              "event_types": [
                "workshop",
                "literary"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/storytime-science-kids-space-place-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-12",
              "run_id": "run_d76b7c3ece9a",
              "run_label": "Storytime Science for Kids: Space Is the Place, Aug 29 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a291ecc97d6e",
              "venue_id": "venue_exploratorium",
              "title": "Daytime Members-Only Hours",
              "event_time": "2026-09-12",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Please consider joining us today ! Members are the backbone of our organization and help ensure the continuity of our mission to create inquiry-based experiences that transform learning worldwide. We can’t wait to see you at the museum.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/member-hours",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-12",
              "run_id": "run_e38dfc952011",
              "run_label": "Daytime Members-Only Hours, Aug 30 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e13a04da137d",
              "venue_id": "venue_oasis",
              "title": "Disastrous!",
              "event_time": "2026-09-12T18:00:00",
              "venue_name": "Oasis",
              "event_start": "2026-09-12T18:00:00",
              "event_date": "2026-09-12",
              "venue_address": "298 11th St, San Francisco, CA 94103",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_oasis",
                  "source_name": "Oasis",
                  "fetched_at": "2026-08-28T21:03:01.054070Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_oasis|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_5f6b48c39d8e",
              "venue_id": "venue_oasis",
              "title": "Reparations: Beyoncé",
              "event_time": "2026-09-12T21:30:00",
              "venue_name": "Oasis",
              "event_start": "2026-09-12T21:30:00",
              "event_date": "2026-09-12",
              "venue_address": "298 11th St, San Francisco, CA 94103",
              "description": "An all-Black drag showcase and Beyoncé-themed HOMECOMING tribute hosted by Nicki Jizz, featuring RuPaul's Drag Race All Stars 5 winner Shea Couleé.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.sfoasis.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_oasis",
                  "source_name": "Oasis",
                  "fetched_at": "2026-08-28T21:03:01.054070Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_oasis|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_74ca05b9a6da",
              "venue_id": "venue_bix",
              "title": "Solo Piano",
              "event_time": "2026-09-12T20:30:00",
              "venue_name": "Bix",
              "event_start": "2026-09-12T20:30:00",
              "event_date": "2026-09-12",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-08-28T21:10:29.119399Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bix|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ed6b0c89da7e",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "Kathy Griffin: New Face, New Tour",
              "event_time": "2026-09-12T19:00:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-09-12T19:00:00",
              "event_date": "2026-09-12",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "Stand-up comedy performance by Kathy Griffin.",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "https://www.palaceoffinearts.org/event/kathy-griffin-new-face-new-tour/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-08-28T21:32:02.715078Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_8ce080334528",
              "venue_id": "venue_the_monkey_house",
              "title": "IM, Jhene",
              "event_time": "2026-09-12T19:00:00",
              "venue_name": "The Monkey House",
              "event_start": "2026-09-12T19:00:00",
              "event_date": "2026-09-12",
              "venue_address": "1638 University Avenue, Berkeley, CA",
              "description": "Performers IM and Jhene team up for an intimate night of live music and storytelling at The Monkey House. The event offers an up-close musical showcase in a cozy community venue.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$20-$40 sliding scale donation",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monkey_house",
                  "source_name": "The Monkey House",
                  "fetched_at": "2026-08-28T21:37:06.591184Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monkey_house|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9aaf6b3a3c92",
              "venue_id": "venue_club_fox",
              "title": "You Should Be Dancing: Bee Gees Tribute",
              "event_time": "2026-09-12T19:00:00",
              "venue_name": "Club Fox",
              "event_start": "2026-09-12T19:00:00",
              "event_date": "2026-09-12",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Saturday September 12thYOU SHOULD BE DANCINGA Tribute to the Bee GeesDoors 7PM / Show 8PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "From $40.08",
              "url": "https://www.eventbrite.com/e/you-should-be-dancing-a-tribute-to-the-bee-gees-tickets-1991246886039?aff=oddtdtcreator&keep_tld=true",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-08-28T22:45:26.741794Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1ab94391acd5",
              "venue_id": "venue_the_ritz",
              "title": "It's a 2000s Party",
              "event_time": "2026-09-12T21:00:45-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-09-12T21:00:45",
              "event_date": "2026-09-12",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "Slacker University Presents\nIT’S A 2000’S PARTY\n\n \n\nSATURDAY SEPTEMBER 12, 2026",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$15 GA",
              "url": "https://www.ticketweb.com/event/its-a-2000s-party-the-ritz-tickets/14244904",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-08-28T22:59:09.006281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b974a2662c1e",
              "venue_id": "venue_rhythmix",
              "title": "The Locals: Opening Reception",
              "event_time": "2026-09-12T18:00:00",
              "venue_name": "Rhythmix",
              "event_start": "2026-09-12T18:00:00",
              "event_date": "2026-09-12",
              "venue_address": "2513 Blanding Ave, Alameda, CA 94501",
              "description": "Opening reception for \"The Locals\" exhibit at K Gallery. Exhibit dates listed as September 11 to October 25, 2026.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://www.rhythmix.org/upcoming-exhibits/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rhythmix",
                  "source_name": "Rhythmix",
                  "fetched_at": "2026-08-28T23:14:01.025318Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rhythmix|2026-09-12",
              "run_id": "run_566a8f02098a",
              "run_label": "The Locals: Opening Reception, Sep 11 – Oct 25",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_d3e7ad77261a",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-09-12",
              "venue_name": "De Young",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-12",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_daef11779756",
              "venue_id": "venue_rootstock_arts",
              "title": "The Supplicants",
              "event_time": "Sat, 12 Sep 2026\n7:00 PM (PDT)",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-09-12T19:00:00",
              "event_date": "2026-09-12",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "The Supplicants are an avant-garde, free-jazz ensemble rooted in deep improvisation and the metaphysical, spiritual qualities of sound. Co-founded by drummer Sameer Gupta alongside key collaborators like David Boyce, David Ewell, and Richard Howell, the group approaches music as an entirely uncharted, spontaneous creation with nothing preconceive-driven",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://www.viewcy.com/event/the_supplicants__r_h_1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-08-29T00:16:02.821734Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_575a9b329d60",
              "venue_id": "venue_oakland_arena",
              "title": "Oakland Roots SC vs. Lexington SC",
              "event_time": "Sep 12 / 2026",
              "venue_name": "Oakland Arena",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "7000 Coliseum Way, Oakland, CA 94621",
              "description": "Copyright © 2026 Oakland Arena. Privacy Notice | Cookie Preferences | Your Privacy Choices | Ad Choices | Terms of Use | Accessibility / Site Map a carbon house experience",
              "event_types": [
                "sports"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.theoaklandarena.com/events/detail/oakland-roots-sc-vs-lexington-sc",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_oakland_arena",
                  "source_name": "Oakland Arena",
                  "fetched_at": "2026-08-29T00:36:48.383706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_oakland_arena|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e8975e9ec878",
              "venue_id": "venue_punch_line",
              "title": "FUMI ABE",
              "event_time": "Sep 12, 2026 7:00 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-12T19:00:00",
              "event_date": "2026-09-12",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Japanese-American comedian and writer Fumi Abe delivers his clever, sharp-witted stand-up on millennial life and cultural identity.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/fumi-abe-san-francisco-california-09-12-2026/event/1C0064AD43378E53",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3979c82c6c6e",
              "venue_id": "venue_punch_line",
              "title": "FUMI ABE",
              "event_time": "Sep 12, 2026 9:15 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-12T21:15:00",
              "event_date": "2026-09-12",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Japanese-American comedian and writer Fumi Abe delivers his clever, sharp-witted stand-up on millennial life and cultural identity.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/fumi-abe-san-francisco-california-09-12-2026/event/1C0064AD433B8E62",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_df02978f145c",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "ANNIE LEDERMAN",
              "event_time": "Sat Sep 12, 2026 7:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-09-12T19:00:00",
              "event_date": "2026-09-12",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Comedian and podcaster Annie Lederman brings her bold, unfiltered, and quick-witted stand-up to Cobb's Comedy Club.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/annie-lederman-san-francisco-california-09-12-2026/event/1C0064E733416678",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d76b984f448d",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "EDDIE IFFT",
              "event_time": "Sat Sep 12, 2026 9:15PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-09-12T21:15:00",
              "event_date": "2026-09-12",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Veteran stand-up comedian and podcast host Eddie Ifft brings his unfiltered, high-energy comedy to Cobb's Comedy Club.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/eddie-ifft-san-francisco-california-09-12-2026/event/1C0064FC51593C52",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2a8563b71efc",
              "venue_id": "venue_shapeshifters",
              "title": "Gravitational Lensing: Feminist Film Dialogues",
              "event_time": "2026-09-12",
              "venue_name": "Shapeshifters",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "Program 17: Family Portraits/Relational Exercises includes a spectrum of diaristic films—from uncanny documentary to autobiographical re-enactments—that manifest different ways filmmakers choose to represent their relationships to family and, more broadly, to home (both literal and conceptual) through cinematic language.",
              "event_types": [
                "film"
              ],
              "price_info": "San Francisco Cinematheque",
              "url": "https://sfcinematheque.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shapeshifters",
                  "source_name": "Shapeshifters",
                  "fetched_at": "2026-08-30T10:04:33.112973Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-09-12",
              "run_id": "run_8afbca984fe1",
              "run_label": "Gravitational Lensing: Feminist Film Dialogues, Sep 9 – Nov 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0766e4131d78",
              "venue_id": "venue_felton_music_hall",
              "title": "MATT HECKLER",
              "event_time": "2026-09-12T20:00:00",
              "venue_name": "Felton Music Hall",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "6275 Highway 9, Felton, CA 95018",
              "description": "Enjoy an evening of laughs featuring a lineup of stand-up comedians performing live at Felton Music Hall.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_felton_music_hall",
                  "source_name": "Felton Music Hall",
                  "fetched_at": "2026-08-30T10:15:46.824711Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_felton_music_hall|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_acf7ff671790",
              "venue_id": "venue_wyldflowr_arts",
              "title": "The Supplicants",
              "event_time": "9/12/2026 7:00 PM",
              "venue_name": "Wyldflowr Arts",
              "event_start": "2026-09-12T19:00:00",
              "event_date": "2026-09-12",
              "venue_address": "809 37th St, Oakland, CA 94609",
              "description": "The Supplicants - R Howell, D Boyce, S Gupta & D Ewell",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23354",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-31T10:04:42.136151Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_wyldflowr_arts|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_0c3f79c324c4",
              "venue_id": "venue_yoshis",
              "title": "ROSE ROYCE",
              "event_time": "September 12, 2026 - 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-12T19:30:00",
              "event_date": "2026-09-12",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "GRAMMY-WINNING, MULTI PLATINUM LEGENDS OF THE “CAR WASH” SOUNDTRACK",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$56 - $99",
              "url": "https://yoshis.com/events/buy-tickets/rose-royce-4/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d04a27d21d86",
              "venue_id": "venue_ivy_room",
              "title": "Bang the Bay",
              "event_time": "Sep 12 6:00 PM",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-12T18:00:00",
              "event_date": "2026-09-12",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "bang the bay presents - Elegant Trash + Sparkle Plenty + Reflector Pool + Titli Thind+Noah Lux+MC PATTY",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/195724",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-08-31T11:55:01.170393Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7d6669f2610a",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "THE DARBIES",
              "event_time": "Sat Sep 12 8:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "21+, $12.00",
              "url": "https://wl.seetickets.us/event/the-darbies/703968?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-08-31T12:12:52.447528Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a497290ab1b0",
              "venue_id": "venue_the_mighty",
              "title": "Kausmic: Post Playa Party",
              "event_time": "Sat 12th September 9:30 PM",
              "venue_name": "The Great Northern",
              "event_start": "2026-09-12T21:30:00",
              "event_date": "2026-09-12",
              "venue_address": "119 Utah St, San Francisco, CA 94103",
              "description": "Mioli Music brings its post-playa gathering to The Great Northern on September 12th!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Buy Ticket",
              "url": "https://www.eventbrite.com/e/mioli-music-pres-kausmic-post-playa-party-tickets-1998505542877",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_mighty",
                  "source_name": "The Great Northern",
                  "fetched_at": "2026-08-31T12:31:19.853580Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_mighty|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fce46721c3dc",
              "venue_id": "venue_presidio_theater",
              "title": "Parsons Dance Company",
              "event_time": "2026-09-12",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-09-12T19:30:00",
              "event_date": "2026-09-12",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "“It does not take long to see why Parsons and his company are one of the hottest tickets in contemporary American dance.” (New York Post). Beloved for its energized, athletic, and joyous style, Parsons Dance is internationally renowned for creating and performing contemporary American dance. Bold ensemble work and signature movement set them vibrantly apart as one of the world’s leading dance companies. Varied and iconic dances exemplify the company’s innovation, enduring popularity and critical acclaim.",
              "event_types": [
                "dance"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.presidiotheatre.org/show-details/parsons-dance-company",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-08-31T13:00:36.584647Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-09-12",
              "run_id": "run_3d563b006346",
              "run_label": "Parsons Dance Company, Sep 12 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_417e9a022685",
              "venue_id": "venue_piedmont_center",
              "title": "For the Love of Art Exhibition",
              "event_time": "2026-09-12T11:00:00",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-09-12T11:00:00",
              "event_date": "2026-09-12",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "Exhibition featuring various artists. Weekends 8/9 - 9/20 (except 8/22 & 8/30).",
              "event_types": [
                "art"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-08-31T13:20:32.956554Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-09-12",
              "run_id": "run_17625c4204a3",
              "run_label": "For the Love of Art Exhibition, Aug 8 – Sep 20",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_df472f302528",
              "venue_id": "venue_piedmont_center",
              "title": "Cuban Fusion Book Discussion",
              "event_time": "2026-09-12T18:30:00",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-09-12T18:30:00",
              "event_date": "2026-09-12",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "Cuban Fusion: The Transnational Cuban Alternative Music Scene presented by author, diplomat, and educator Dr. Eva Silot Bravo.",
              "event_types": [
                "literary",
                "community"
              ],
              "price_info": "",
              "url": "https://ticketsignup.io/evasilotbravo",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-08-31T13:20:32.956554Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c45b417b7dd5",
              "venue_id": "venue_cornerstone",
              "title": "GOLDEN: A K-Pop Kids Party!",
              "event_time": "2026-09-12T11:00:00",
              "venue_name": "Cornerstone",
              "event_start": "2026-09-12T11:00:00",
              "event_date": "2026-09-12",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "A family-friendly daytime K-Pop party celebrating the music and dance of K-Pop.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Open",
              "url": "https://dothebay.com/events/2026/9/12/golden-a-k-pop-kids-party-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-08-31T14:04:10.183515Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cornerstone|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_14b69af60962",
              "venue_id": "venue_cornerstone",
              "title": "Dimond Saints",
              "event_time": "2026-09-12T21:00:00",
              "venue_name": "Cornerstone",
              "event_start": "2026-09-12T21:00:00",
              "event_date": "2026-09-12",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Cornerstone presents electronic music duo Dimond Saints live in Berkeley.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "",
              "url": "https://www.axs.com/events/542109/dimond-saints-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-08-31T14:04:10.183515Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cornerstone|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_9bc0b73116a6",
              "venue_id": "venue_masonic_hall",
              "title": "Ryan Beatty",
              "event_time": "2026-09-12T20:00:00",
              "venue_name": "Masonic Hall",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Singer-songwriter Ryan Beatty performs live, showcasing his emotive vocals and introspective indie-pop and R&B catalog. Fans can expect a soulful and intimate musical performance.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/ryan-beatty-arms-over-armor-north-san-francisco-california-09-12-2026/event/1C0064CAC0328EDC",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-08-31T14:14:07.848437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_masonic_hall|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_456f70dae02d",
              "venue_id": "venue_dna_lounge",
              "title": "PRESCOTT NILES' THE KNACK",
              "event_time": "Sat Sep 12",
              "venue_name": "DNA Lounge",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "Prescott Niles' The Knack!\n\t80s, Power Pop, Rock! Prescott Niles' The Knack: Prescott\n\tNiles is the founding bassist whose unmistakable playing helped\n\tdefine The Knack's signature sound--lean, melodic, and relentlessly\n\tpropulsive. Long before the band's meteoric rise, Niles built a deep\n\tmusical foundation, recording with Hendrix associate Velvert Turner\n\tand later spending formative time in London, where he hobnobbed with\n\tthe likes of George Harrison.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.dnalounge.com/calendar/2026/09-12.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dna_lounge",
                  "source_name": "DNA Lounge",
                  "fetched_at": "2026-08-31T14:15:19.938818Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_52f48210329e",
              "venue_id": "venue_ashkenaz",
              "title": "Mortified",
              "event_time": "09/12/2026 7:30 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-09-12T19:30:00",
              "event_date": "2026-09-12",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "Mortified Comedy/Storytelling Sat Sep 12 Minimum age: All ages Show time: 8:00 PM Doors open: 7:30 PM Tickets Description Doors: 7:30 Show: 8pm Mortified returns to Ashkenaz on Saturday, Sep 12th! Hailed as a \"cultural phenomenon\" by Newsweek and celebrated for years by the likes of This American Life, The Today Show, The Onion AV Club, & Entertainment Weekly, Mortified is a comic excavation of teen angst artifacts (journals, poems, letters, lyrics, home movies, schoolwork) as shared by their original authors -- in front of total strangers! Where else can you hear grown men and women confront their past with firsthand tales of their first kiss, first puff, worst prom, fights with mom, life at bible camp, worst hand job, best mall job, and reasons they deserved to marry Bon Jovi? Submissions come from a wide range of participants, from professional performers to total amateurs. All in the noble pursuit of self-degradation. Share the shame. For more information, visit mortified.com . Ashkenaz is all ages, all the time. Kids and minors are always welcome. Those 12 or under are admitted FREE (unless otherwise noted).",
              "event_types": [
                "comedy",
                "literary"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/193093",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-08-31T14:45:33.243069Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a720b09f7c8b",
              "venue_id": "venue_yerba_buena_center",
              "title": "GaHee Park: Behind the Curtain",
              "event_time": "2026-09-12",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Park invites us to peek behind the curtain, as she lays claim to her own power as a surrealist painter working across fantasy and intimacy.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/gahee-park-behind-the-curtain/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-12",
              "run_id": "run_5353f80886f6",
              "run_label": "GaHee Park: Behind the Curtain, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5f8f1a2eb904",
              "venue_id": "venue_yerba_buena_center",
              "title": "Pandora and the Flying Dutchman",
              "event_time": "Saturday, September 12, 2026, 2 PM",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-12T14:00:00",
              "event_date": "2026-09-12",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "See Albert Lewin’s “Pandora and the Flying Dutchman” (1951) as part of a weekly film series exploring voyeurism and theatricality, cocktail charm and social taboos.",
              "event_types": [
                "film"
              ],
              "price_info": "Tickets: $15",
              "url": "https://ybca.org/event/pandora-and-flying-through-an-open-window-film-series/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2e735c5925e5",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dream",
              "event_time": "2026-09-12",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public art installation commissioned by YBCA and co-sponsored by San Francisco Public Works.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dream-public-art/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-12",
              "run_id": "run_b6a5ba4e8809",
              "run_label": "Dream, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6947f76a12bf",
              "venue_id": "venue_yerba_buena_center",
              "title": "SoMa Mahal Kita",
              "event_time": "2026-09-12",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A message of love for the SoMa neighborhood and community, inspired by weaving practices in the Phillipines and the colors of the Filipino flag.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/soma-mahal-kita-soma-i-love-you-ciriaco-sayoc/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-12",
              "run_id": "run_0c5141fff335",
              "run_label": "SoMa Mahal Kita, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_775e1af0b35a",
              "venue_id": "venue_yerba_buena_center",
              "title": "We Rooted in Flight",
              "event_time": "2026-09-12",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public artwork inviting passerbyers to join in the journey of collective flight",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/we-fly-for-a-liberated-we-we-rooted-in-flight/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-12",
              "run_id": "run_1d34139aedcf",
              "run_label": "We Rooted in Flight, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f5e34f628283",
              "venue_id": "venue_hammer_theater",
              "title": "Conjuring the Elements",
              "event_time": "Sat, 9/12/2026 @ 7:30 PM",
              "venue_name": "Hammer Theatre",
              "event_start": "2026-09-12T19:30:00",
              "event_date": "2026-09-12",
              "venue_address": "101 Paseo De San Antonio , San Jose, CA 95113",
              "description": "Cambrian Symphony opens its 2026–2027 season with Conjuring the Elements, an evocative program exploring the elemental forces of nature and the power of imagination through music. Under the baton of Thomas Alexander, the orchestra presents a captivating journey through fire, water, earth, and magic in works spanning more than two centuries.The program features acclaimed flutist Ráyo Furuta as soloist in Alexis Aranda's Acqua, a luminous contemporary work that explores the personalities of the zodiac's water signs. The concert also includes the sparkling Overture to Handel's Music for the Royal Fireworks, Beethoven's heroic Overture to The Creatures of Prometheus, Alan Hovhaness's atmospheric And God Created Great Whales, and Paul Dukas's beloved symphonic poem, The Sorcerer's Apprentice, immortalizing a tale of enchantment and runaway magic.Join Cambrian Symphony for an unforgettable evening celebrating the elemental forces that have inspired composers for generations. Admission is free, with a suggested donation of $25 per adult.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Order Now!",
              "url": "https://plugin.vbotickets.com/v5.0/event.asp?eid=206703&s=b2800bd9-bb7b-4abb-a5af-e56ee60e4328",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hammer_theater",
                  "source_name": "Hammer Theatre",
                  "fetched_at": "2026-08-31T15:49:23.969939Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hammer_theater|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7e89dd6bd5b6",
              "venue_id": "venue_club_fugazi",
              "title": "Shane Mauss",
              "event_time": "2026-09-12T19:30:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-12T19:30:00",
              "event_date": "2026-09-12",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Stand-up comedian, science communicator, and psychonaut Shane Mauss synthesizes comedy, evolutionary biology, and psychedelic exploration.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$37.50 Pre-Sale / $44 Walk-up",
              "url": "https://www.clubfugazisf.com/funny",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_8bc2b94a567d",
              "venue_id": "venue_biscuits__blues",
              "title": "Guy Davis",
              "event_time": "2026-09-12T21:00:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-09-12T21:00:00",
              "event_date": "2026-09-12",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "Guy Davis is a celebrated blues musician, actor, and storyteller whose work keeps acoustic blues traditions vivid and deeply human. Drawing on classic blues, folk roots, and original songs, he delivers performances filled with heart, humor, and history. A skilled guitarist, banjo player, and harmonica player, Davis connects generations through music that honors the past while sounding fully alive onstage and on recordings around the world today.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://biscuitsandblues.com/find-a-show/20260912guydavis",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-08-31T16:25:33.031111Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_a31b83194984",
              "venue_id": "venue_elis_mile_high",
              "title": "Abracanasty",
              "event_time": "Sat, Sep 12, 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "Abracanasty Sat, Sep 12 | Eli's Mile High Club A night of magic, burlesque & more! Buy Tickets Time & Location Sep 12, 2026, 8:00 PM – Sep 13, 2026, 12:00 AM Eli's Mile High Club, 3629 Martin Luther King Jr Way, Oakland, CA 94609, USA About the event Join us for an enchanting, lustrous, & freaky night of Magic & Burlesque! Be stunned by six of the Bay's favorite performers who will set the mood for an amazing One Hour Magic show by: Sean Francisco - @theseanfrancisco Award-winning comedian and magician Sean Francisco uses his unique blend of hilarity & madcap magic to create a one of a kind show you'll have to see to believe! Sean has performed in theaters and venues around the world. His work has been featured on networks like \"Discovery+\" and Belgium's \"VTM GO\" Drag, Burlesque & more by: 🌹 @ itslisafrankenstein Show More Tickets Ticket type General Admission Sale ends Sep 13, 12:00 AM More info Seating first come first serve Price $25.00 +$0.63 ticket service fee Quantity 0 Ticket type GA + VIP Reserved Seating Sale ends Sep 13, 12:00 AM More info Includes reserved seating in first two rows - please buy tickets together if you wish to sit next to each other Price $35.00 +$0.88 ticket service fee Quantity 0 Total $0.00 Checkout Share this event",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.elismilehighclub.com/events/abracanasty-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-08-31T16:36:06.503526Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b60782c8a352",
              "venue_id": "venue_stay_gold_deli",
              "title": "Phantoms Forever / Pinefall",
              "event_time": "2026-09-12T18:00:00",
              "venue_name": "Stay Gold Deli",
              "event_start": "2026-09-12T18:00:00",
              "event_date": "2026-09-12",
              "venue_address": "2635 San Pablo Ave, Oakland, CA 94612",
              "description": "Live concert featuring Phantoms Forever, Pinefall, Calico Moon, and Fly W8 at Stay Gold Deli. All ages.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "http://www.foopee.com/punk/the-list/by-club/Stay_Gold_Deli.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stay_gold_deli",
                  "source_name": "Stay Gold Deli",
                  "fetched_at": "2026-08-31T16:43:30.435878Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_stay_gold_deli|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_d6faba1fba7c",
              "venue_id": "venue_chase_center",
              "title": "Premium Suites",
              "event_time": "2026-09-12",
              "venue_name": "Chase Center",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "At Select-A-Suite on Thursday, September 17, 2026, not only will you have the opportunity to reserve your suites before they are released to the public, but attendees can also enjoy complimentary food and beverage tastings throughout the event, network with fans and business professionals, and have the opportunity to capture a photo with the Larry O'Brien Trophies.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://chasecenter.com/premium-experiences/premium-suites/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-08-31T17:38:13.687686Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-09-12",
              "run_id": "run_bed5be826f7c",
              "run_label": "Premium Suites, Sep 10 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_55e365a9e992",
              "venue_id": "venue_august_hall",
              "title": "COLORS PRESENTS: R&B ONLY",
              "event_time": "SEPTEMBER 12, 2026",
              "venue_name": "August Hall",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.augusthallsf.com/tm-event/colors-presents-rb-only/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-08-31T17:47:21.031442Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a4cffeb72669",
              "venue_id": "venue_white_horse",
              "title": "Club Yearn x Five Finger Disco",
              "event_time": "2026-09-12T21:00:00",
              "venue_name": "White Horse Inn",
              "event_start": "2026-09-12T21:00:00",
              "event_date": "2026-09-12",
              "venue_address": "6551 Telegraph Ave, Oakland, CA 94609",
              "description": "Dance party presented by Club Yearn and Five Finger Disco featuring DJ sets by Bored Lord and Charles Hawthorne.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10",
              "url": "https://ra.co/dj/boredlord/tour-dates",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_white_horse",
                  "source_name": "White Horse Inn",
                  "fetched_at": "2026-08-31T17:48:56.702708Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_white_horse|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_8a88cb5d64f9",
              "venue_id": "venue_tupelo",
              "title": "The Good Bad",
              "event_time": "Saturday September 12th 4:00PM - 7:00PM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-12T16:00:00",
              "event_date": "2026-09-12",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "Bluegrass Fans Take Notice! Please welcome The Good Bad for the first time to the Tupelo stage! These guys are super talented, super fun and they do it the old school way. Grab your lady, grab your man, and join us for a little HoDown! NO COVER!",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "NO COVER",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d01f0296c66c",
              "venue_id": "venue_tupelo",
              "title": "Marshall Law",
              "event_time": "Saturday September 12th 9:30PM - 1:30AM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-12T21:30:00",
              "event_date": "2026-09-12",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "Long time staple at Tupelo, Marshall Law delivers a powerful punch of blazing guitar, heavy hitting and crowd favorites. From classic rock to today's favorites, this trio will blow you away!",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4ae40129488d",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Kevin Farley",
              "event_time": "2026-09-12 2026-09-12T19:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Special event comedy show featuring Kevin Farley with Kris Fried and Sophia Garrow.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Price not found in the specific listing.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/131524",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-08-31T18:20:03.865483Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-09-12",
              "run_id": "run_cfb4ac84a2c8",
              "run_label": "Kevin Farley, Sep 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_dd456b913ce1",
              "venue_id": "venue_great_american_music_hall",
              "title": "30th Annual SF Drag King Contest",
              "event_time": "Sat Sep 12 2026 8:00PM",
              "venue_name": "Great American",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Fudgie Frottage, Sister Roma, Mo B. Dick, and MORE!",
              "event_types": [
                "dance",
                "theater"
              ],
              "price_info": "$25.00-$60.00",
              "url": "https://wl.seetickets.us/event/30th-annual-sf-drag-king-contest/690703?afflky=GreatAmericanMusicHall",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-09-02T10:02:47.962874Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ddbba117a7be",
              "venue_id": "venue_rickshaw_stop",
              "title": "DANCE … 4 U: SLAYYYTER x CHARLI XCX NIGHT",
              "event_time": "Sat Sep 12 9:30PM",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-09-12T21:30:00",
              "event_date": "2026-09-12",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "SATURDAY, SEPTEMBER 12 WHAT THE DANCE PRESENTS DANCE … 4 U: SLAYYYTER X CHARLI XCX NIGHT THE WOR$T PARTY IN SAN FRANCISCO: 🍏 9PM DOORS 🪩 Early Birds: 50 at $10, Adv $15-20, Doors $25 ❤️‍🔥 18+ DJ @SARDINE.WAV WILL BE SPINNING YOUR FAVORITE TRACKS FROM SLAYYYTER & CHARLI XCX, PLUS HYPERPOP AND CLUB ANTHEMS FROM KIM PETRAS, SOPHIE, SHYGIRL, TINASHE, ASHNIKKO, HORSEGIIRL, BRITNEY SPEARS, LADY GAGA, PINKPANTHERESS, FROST CHILDREN, AND MORE! 💿 COMMENT THE SONGS YOU WANT TO DANCE… TO 💬 WE ONLY THREW THIS PARTY 4 U @THEDANCEPARTIES 😉",
              "event_types": [
                "dj_party"
              ],
              "price_info": "18+, $15.00-$25.00",
              "url": "https://wl.seetickets.us/event/dance-4-u-slayyyter-x-charli-xcx-night/701674?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-09-02T10:05:07.555428Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_eddade0e1e13",
              "venue_id": "venue_cafe_zoe_pizza_guy",
              "title": "Live Music by Manny Daniele",
              "event_time": "2026-09-12T01:00:00",
              "venue_name": "Cafe Zoe",
              "event_start": "2026-09-12T01:00:00",
              "event_date": "2026-09-12",
              "venue_address": "1929 Menalto Ave, Menlo Park, CA 94025",
              "description": "Acoustic rock performance at Neighborhood Pizza Guy & Cafe Zoe.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://neighborhood.pizza/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cafe_zoe_pizza_guy",
                  "source_name": "Cafe Zoe",
                  "fetched_at": "2026-09-02T10:14:27.017935Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cafe_zoe_pizza_guy|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_f9290dc94d2c",
              "venue_id": "venue_the_knockout",
              "title": "Matinee Show: The Throw-Ups & Treasures",
              "event_time": "Sat 12 Sep ― 5:00pm",
              "venue_name": "The Knockout",
              "event_start": "2026-09-12T17:00:00",
              "event_date": "2026-09-12",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "THE CHULITA VINYL CLUB SATURDAY NIGHT DANCE PARTY! SAN FRANCISCO EDITION • CUMBIA. SOULDIES. FUNK. HIP HOP. REGGAETON. FREESTYLE. Y MAS WITH THE CVC CREW • COME ON IN AND GET DOWN WITH IT! • 10PM TO CLOSE • $5 • 21+",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$11.33",
              "url": "https://link.dice.fm/X01a48ed868f?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-09-02T10:33:16.877437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_046017aee345",
              "venue_id": "venue_the_knockout",
              "title": "Chulita Vinyl Club Dance Party",
              "event_time": "Sat 12 Sep ― 10:00pm",
              "venue_name": "The Knockout",
              "event_start": "2026-09-12T22:00:00",
              "event_date": "2026-09-12",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "THE CHULITA VINYL CLUB SATURDAY NIGHT DANCE PARTY! SAN FRANCISCO EDITION • CUMBIA. SOULDIES. FUNK. HIP HOP. REGGAETON. FREESTYLE. Y MAS WITH THE CVC CREW • COME ON IN AND GET DOWN WITH IT! • 10PM TO CLOSE • $5 • 21+",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$5.67",
              "url": "https://link.dice.fm/Q4b7b357e1ed?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-09-02T10:33:16.877437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d1a0ccf5588e",
              "venue_id": "venue_924_gilman",
              "title": "Iron Lung, Grand Invincible",
              "event_time": "Saturday, September 12, 2026 7:00pm-11:00pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-09-12T19:00:00",
              "event_date": "2026-09-12",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "Hardcore powerviolence duo Iron Lung takes the stage at 924 Gilman alongside a curated lineup of guest acts. Expect a fast, intense night of heavy music at the legendary DIY space.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "http://maps.google.com/?q=$15",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-09-02T11:13:59.237531Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fb563902ad39",
              "venue_id": "venue_cow_palace",
              "title": "Just Between Friends Consignment Sale",
              "event_time": "2026-09-12T10:00:00",
              "venue_name": "Cow Palace",
              "event_start": "2026-09-12T10:00:00",
              "event_date": "2026-09-12",
              "venue_address": "2600 Geneva Ave, Daly City, CA 94014",
              "description": "Shop thousands of gently used and new children's and maternity items at bargain prices during this popular community consignment event at the Cow Palace. Families can find great deals on clothing, shoes, baby gear, toys, and nursery essentials all under one roof.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cow_palace",
                  "source_name": "Cow Palace",
                  "fetched_at": "2026-09-02T11:32:56.966259Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cow_palace|2026-09-12",
              "run_id": "run_8189de239dca",
              "run_label": "Just Between Friends Consignment Sale, Sep 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_0771186c36db",
              "venue_id": "venue_discretion_brewing",
              "title": "Bluzio Band",
              "event_time": "2026-09-12T17:30:00",
              "venue_name": "Discretion Brewing",
              "event_start": "2026-09-12T17:30:00",
              "event_date": "2026-09-12",
              "venue_address": "2703 41st Ave Ste A, Soquel, CA 95073",
              "description": "Live Music 5:30-7:30pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_discretion_brewing",
                  "source_name": "Discretion Brewing",
                  "fetched_at": "2026-09-02T11:35:03.120781Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_discretion_brewing|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_aacc9d8b0a63",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy",
              "event_time": "2026-09-12T19:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-09-12T19:45:00",
              "event_date": "2026-09-12",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "Stand-up comedy show at Shelton Theater. Listing says each show features five to six hand-picked, experienced comedians and an occasional guest drop-in.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$25.00",
              "url": "https://tickets.cttcomedy.com/events/2559/cheaper-than-therapy-stand-up-comedy-sat-sep-12-7-45-pm/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-09-02T11:40:03.690341Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_e1c6f8d13aaa",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy",
              "event_time": "2026-09-12T21:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-09-12T21:45:00",
              "event_date": "2026-09-12",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "Stand-up comedy show at Shelton Theater. Listing says each show features five to six hand-picked, experienced comedians and an occasional guest drop-in.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$25.00",
              "url": "https://tickets.cttcomedy.com/events/2560/cheaper-than-therapy-stand-up-comedy-sat-sep-12-9-45-pm/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-09-02T11:40:03.690341Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_62f502ad9610",
              "venue_id": "venue_madrone_art_bar",
              "title": "HEAVY SOUNDS",
              "event_time": "September 12 @ 7:00 pm - 9:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-12T19:00:00",
              "event_date": "2026-09-12",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "DJ KeyBumps playin’ what the kids need to hear. Spinning all vinyl: Rare Blues, Soul and Rock ‘n Roll.HAPPY HOUR 4 – 7pm ENTERTAINMENT from 7 – 9pm",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/heavy-sounds-2025-12-13/2026-09-12/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b76dabffade7",
              "venue_id": "venue_madrone_art_bar",
              "title": "STRAIGHTEN IT OUT",
              "event_time": "September 12 @ 9:00 pm - 2:00 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-12T21:00:00",
              "event_date": "2026-09-12",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Every 2nd Saturday STRAIGHTEN IT OUT Madrone, 500 Divisadero St., SF 21+ | 9pm-2am | $10 at 9:30PM Straight up, we play the jams we love. Whether it’s that song you heard growing up that you know all the words to, or a fresh new track that just dropped last week. We’ll even smack it [&hellip;]",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10",
              "url": "https://madroneartbar.com/event/straighten-it-out-2025-12-13-2026-09-12/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9fa7adf66e54",
              "venue_id": "venue_littlefield_concert_hall",
              "title": "Set Her Free & Liberty and Limits",
              "event_time": "Saturday, September 12, 2026 at 2:00 PM PDT",
              "venue_name": "Littlefield Hall",
              "event_start": "2026-09-12T14:00:00",
              "event_date": "2026-09-12",
              "venue_address": "5000 MacArthur Blvd, Oakland, CA 94613",
              "description": "CALENDAR Upcoming Events Past Events Home / Calendar / Set Her Free | Liberty and Limits: Guns in California — Oakland International Film Festival Set Her Free | Liberty and Limits: Guns in California — Oakland International Film Festival Oakland – Film/Movie Saturday, September 12, 2026, 2:00 PM M14-202 Music Building Littlefield Concert Hall, M14-Lobby Music Building Tickets Presented by the Oakland International Film Festival Sponsored by Mills Performing Arts & Northeastern University Open to the Public Tickets: $17.85 — Registration requested Free with a Northeastern University ID (limited tickets available at the door) Set Her Free Director: JLove Calderón Runtime: 01:05:00 Set Her Free sheds light on the lives of women incarcerated at the Edna Mahan Correctional Facility in New Jersey, many of whom are serving long sentences for crimes stemming from their survival of domestic violence. It tells the story of five formerly incarcerated women—Dr. Jamila T. Davis, Donna Hylton, Nafeesah Goldsmith, Dawn Jackson and Cass Severe—who are leading the fight to pass the Domestic Violence Survivors Justice Act (DVSJA) in New Jersey. With the support of New Jersey Senator Angela McKnight, this documentary showcases the stories of these incarcerated women and the advocates who refuse to let their voices go unheard. The film also follows Cass Severe’s relentless fight to secure the release of her friend Natasha White, a domestic violence survivor who remains incarcerated at Edna Mahan. Through Cass’s advocacy, the documentary highlights the personal stakes involved in the broader movement for justice reform. Set Her Free demonstrates the power of hope, redemption, and the impact of proper resources and second chances on the lives of these women. Liberty and Limits: Guns in California Director: Dave Manoucheri, Jack Noonan Runtime: 00:47:00 California has long been in the forefront of history. “As California goes, so goes the nation” is the saying. Two events in California’s",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://performingarts.oakland.northeastern.edu/event-detail?eventId=1415564087",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_littlefield_concert_hall",
                  "source_name": "Littlefield Hall",
                  "fetched_at": "2026-09-03T10:16:56.434298Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_littlefield_concert_hall|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_032faeb48941",
              "venue_id": "venue_littlefield_concert_hall",
              "title": "Home | What We Dreamed of Then",
              "event_time": "Saturday, September 12, 2026 at 5:00 PM PDT",
              "venue_name": "Littlefield Hall",
              "event_start": "2026-09-12T17:00:00",
              "event_date": "2026-09-12",
              "venue_address": "5000 MacArthur Blvd, Oakland, CA 94613",
              "description": "CALENDAR Upcoming Events Past Events Home / Calendar / Home | Wood Street — Oakland International Film Festival Home | Wood Street — Oakland International Film Festival Oakland – Film/Movie Saturday, September 12, 2026, 5:00 PM M14-202 Music Building Littlefield Concert Hall, M14-Lobby Music Building Tickets Presented by the Oakland International Film Festival Sponsored by Mills Performing Arts & Northeastern University Open to the Public Tickets: $17.85 — Registration requested Free with a Northeastern University ID (limited tickets available at the door) Home Director: Kelvin Wade Garvanne Runtime: 00:11:12 Estelle Gilmore is an upbeat African American GenZer living with her family; parents Anthony, Ruth,and older sister Isabelle in Los Angeles. She is preparing to visit Hannah, her aging grandmother in Boston. The tone of her visit changes when she realizes it is a welfare check on the aging matriarch. Hannah’s neighbor Bill is a long time neighbor who watches out for her. However, Bill isn’t capable of helping Hannah with everything. When Estelle arrives in Boston with her parents they quickly realize a decison must be made about her care. However, Hannah is steadfast about staying in her home and protecting the legacy embodied in her Wood Street Director: Caron Creighton Runtime: 01:43:00 The feature documentary Wood Street follows unhoused organizers John and LaMonté as they grapple with addiction, displacement, and city bureaucracy while trying to save their long term encampment community from eviction. The film is a powerful call to action grounded in a simple belief: Housing is a human right. FULL FESTIVAL SCHEDULE More information: https://oaklandfilmfestival.org/",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://performingarts.oakland.northeastern.edu/event-detail?eventId=1415564088",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_littlefield_concert_hall",
                  "source_name": "Littlefield Hall",
                  "fetched_at": "2026-09-03T10:16:56.434298Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_littlefield_concert_hall|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8cd0d5aa8d5c",
              "venue_id": "venue_moes_alley",
              "title": "Black Uhuru",
              "event_time": "2026-09-12T21:00:00",
              "venue_name": "Moe's Alley",
              "event_start": "2026-09-12T21:00:00",
              "event_date": "2026-09-12",
              "venue_address": "1535 Commercial Way, Santa Cruz, CA 95065",
              "description": "Show: 9:00 PM",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_moes_alley",
                  "source_name": "Moe's Alley",
                  "fetched_at": "2026-09-03T10:23:10.512238Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_moes_alley|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7c6d5e3c7da4",
              "venue_id": "venue_black_cat",
              "title": "The Sinatra Songbook",
              "event_time": "2026-09-12T19:00:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-12T19:00:00",
              "event_date": "2026-09-12",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $40 , $50 , $60\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n9:30 show: Bar @ 6:00, Doors @ 8:45\n\n*Sunday 9:15 show: Bar @ 6:00, Doors @ 8:30\n\n\n\n\nTimeless vocal jazz with classic swing, effortless charm, and the unmistakable spirit of Sinatra.\n\n\n\n\nAfter sold-out engagements across New York, Oslo, Canada, Mexico, Cincinnati, and San Francisco, acclaimed jazz vocalist and recording artist Richard Cortez brings the timeless music of Frank Sinatra to the stage with an all-star band. \n\n\n\n\nFeaturing beloved classics including Come Fly With Me, Witchcraft, and I’ve Got You Under My Skin, alongside rare gems from Sinatra’s early years with the Tommy Dorsey Orchestra, Richard’s performances celebrate the elegance, swing, and emotional depth that made Sinatra one of the most influential vocalists of the 20th century.\n\n\n\n\nBand Lineup:\n\nRichard Cortez — vocals\n\nAll-Star Band — featuring special guest musicians",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $40 , $50 , $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/9375/2026-09-12",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bc399721b486",
              "venue_id": "venue_black_cat",
              "title": "The Sinatra Songbook: Richard Cortez & Sam Hirsh Trio",
              "event_time": "2026-09-12T21:30:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-12T21:30:00",
              "event_date": "2026-09-12",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $40 , $50 , $60\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n9:30 show: Bar @ 6:00, Doors @ 8:45\n\n*Sunday 9:15 show: Bar @ 6:00, Doors @ 8:30\n\n\n\n\nTimeless vocal jazz with classic swing, effortless charm, and the unmistakable spirit of Sinatra.\n\n\n\n\nAfter sold-out engagements across New York, Oslo, Canada, Mexico, Cincinnati, and San Francisco, acclaimed jazz vocalist and recording artist Richard Cortez brings the timeless music of Frank Sinatra to the stage with an all-star band. \n\n\n\n\nFeaturing beloved classics including Come Fly With Me, Witchcraft, and I’ve Got You Under My Skin, alongside rare gems from Sinatra’s early years with the Tommy Dorsey Orchestra, Richard’s performances celebrate the elegance, swing, and emotional depth that made Sinatra one of the most influential vocalists of the 20th century.\n\n\n\n\nBand Lineup:\n\nRichard Cortez — vocals\n\nAll-Star Band — featuring special guest musicians",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $40 , $50 , $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/9375/2026-09-12",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2023b5022ab3",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Kate Lamont : Soul, Jazz, Pop & Folk",
              "event_time": "Saturday, September 12, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-12T19:00:00",
              "event_date": "2026-09-12",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Kate will be joined by Mike Blankenship (keys), Darian Gray (drums), Jonathan Herrera (bass).",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/kate-lamont-soul-jazz-pop-folk/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1358389895c4",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "The Amina Scott Quintet",
              "event_time": "Saturday, September 12, 2026 @ 9pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-12T21:00:00",
              "event_date": "2026-09-12",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Amina continues to forge her own path as a trailblazing artist, Ranging from many musical influences, she is able to express her journey into Black womanhood and capture the trials and tribulations of her career thus far. While staying true to the musical lineage as well as herself, Amina is able to captivate audiences around the world with her music and her story. Her debut album Where The Wild Seed Grows is out now on all platforms.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/the-amina-scott-quintet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d13bb7196c41",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Late Set: Simon Rowe Organ Trio",
              "event_time": "Saturday, September 12, 2026 @ 10:30pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-12T22:30:00",
              "event_date": "2026-09-12",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Saturday, September 12, 2026 @ 10:30pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $20 per show",
              "url": "https://keysjazzbistro.com/event/late-set-simon-rowe-organ-trio-64/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9717fa40916b",
              "venue_id": "venue_z_space",
              "title": "San Francisco Hysterical Historium",
              "event_time": "2026-09-12T19:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-09-12T19:00:00",
              "event_date": "2026-09-12",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "Killing My Lobster & Z Space present: San Francisco Hysterical Historium, a Co-Production with Red Barn Productions. Sketch comedy that ain't fool's gold!",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-09-03T10:55:35.787344Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_z_space|2026-09-12",
              "run_id": "run_6cdec2f9a529",
              "run_label": "San Francisco Hysterical Historium, Sep 4 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_47d279fc4d5d",
              "venue_id": "venue_brick_and_mortar",
              "title": "KONSTANCY, SAMMY SHIBLAQ, HAKVM, KATANA",
              "event_time": "9.12 Show: 9:00PM",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-09-12T21:00:00",
              "event_date": "2026-09-12",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Event Details Brick & Mortar Music Hall Presents Konstancy, Sammy Shiblaq, Hakvm, Katana with Sammy Shiblaq , Hakvm , Katana September 12, 2026 9:00 pm PDT (Doors: 8:00 pm ) Brick and Mortar Music Hall , 1710 Mission Street , San Francisco, CA ( map ) $27.58 Buy Tickets + Google Calendar Konstancy Sammy Shiblaq Hakvm Katana JUST ANNOUNCED Geordie Kieffer December 06, 2026 RC AVENUE October 04, 2026 Dani Offline — Lover's Discourse Live October 13, 2026 Denise Julia November 14, 2026 AZ Chike November 05, 2026 Follow us on Instagram Join the Brick & Mortar Newsletter",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$27.58",
              "url": "https://www.brickandmortarmusic.com/tm-event/konstancy-sammy-shiblaq-hakvm-katana/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-09-03T11:13:51.689688Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_072ef5fe332c",
              "venue_id": "venue_pacific_film_archive",
              "title": "Gallery + Studio: Lines That Connect",
              "event_time": "Sep 12, 2026 11:30 AM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-12T11:30:00",
              "event_date": "2026-09-12",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "See how some artists use a series of small gestures to build complex and dynamic forms. Then experiment with cumulative mark making to develop your own pattern-based drawing.",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://bampfa.org/event/gallery-studio-lines-connect-pattern-repetition-and-belonging",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_06605358d9df",
              "venue_id": "venue_pacific_film_archive",
              "title": "The Unlearning",
              "event_time": "Sep 12, 2026 2 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-12T14:00:00",
              "event_date": "2026-09-12",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Composer and musician Theresa Wong performs her 2009 song cycle The Unlearning—a reflection on Goya’s The Disasters of War—as a duo with violinist and vocalist Carla Kihlstedt, accompanied by visual projections by filmmakers Daria Martin and Mao Mollona.",
              "event_types": [
                "experimental",
                "live_music",
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/unlearning",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6dd594209329",
              "venue_id": "venue_pacific_film_archive",
              "title": "Roundtable Reading: The Long Way Around",
              "event_time": "Sep 12, 2026 2:30 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-12T14:30:00",
              "event_date": "2026-09-12",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "After a massive earthquake disrupts their family hiking trip in the mountains, three cousins have an adventure they didn’t expect and discover a resilience they never knew.",
              "event_types": [
                "literary"
              ],
              "price_info": "",
              "url": "https://bampfa.org/event/roundtable-reading-long-way-around-anne-nesbet",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_deabff1a0e1b",
              "venue_id": "venue_pacific_film_archive",
              "title": "Modern Times",
              "event_time": "Sep 12, 2026 4 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-12T16:00:00",
              "event_date": "2026-09-12",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Charlie Chaplin’s politically outspoken film also contains some of his funniest scenes, in which he causes complete chaos simply by being human.",
              "event_types": [
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/modern-times",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_aca9f287752e",
              "venue_id": "venue_pacific_film_archive",
              "title": "Taxi Driver",
              "event_time": "Sep 12, 2026 7 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-12T19:00:00",
              "event_date": "2026-09-12",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "After he takes a job as a taxi driver to cope with chronic insomnia, ex-Marine Travis Bickle (Robert “You talkin’ to me” De Niro) begins to see the dark city as one vast cesspool of crime and concupiscence.",
              "event_types": [
                "film"
              ],
              "price_info": "SOLD OUT",
              "url": "https://bampfa.org/event/taxi-driver",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_41034d119927",
              "venue_id": "venue_4_star_theater",
              "title": "KEXP's Vinelands Live",
              "event_time": "12 September 2026 6:30 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-12T18:30:00",
              "event_date": "2026-09-12",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Camellia Boutros is a Lebanese Palestinian composer and multi-instrumentalist based in San Francisco. After years of experience performing with a diverse array of Arab, Balkan, and Latin music groups on trumpet, oud, and bass, she developed a fretless 12-string electric guitar as a vehicle for composing her own brand of Arab experimental rock. Naming her instrument the “electric oud-guitar,” Camellia writes music rooted in both Arabic Maqam and the Bay Area sound, which reflects her own experience growing up between California and the Levant. An energetic blend of Arab traditional, psychedelia, folk, jazz, hip hop, and experimentalism, her music and lyrics defy genre definition.",
              "event_types": [
                "electronic",
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/live-music-kexp-mild-universe",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_012f8e9efece",
              "venue_id": "venue_local_edition",
              "title": "Victor Little’s Big Hit",
              "event_time": "September 12, 2026 8:30 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-09-12T20:30:00",
              "event_date": "2026-09-12",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "8:30pm - 12:30amVictor Little’s Big Hit brings together an array of musicians, working with artists like Booker T. Jones, Billy Preston, Joyce Cooling, Robert Walter, Bernard Purdie, to name just a few.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/2026/5/23/victor-little-amp-band-8gwx5-5nhpf-9nchd-tc35m",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-09-03T12:59:31.047351Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a6e99a2bc73f",
              "venue_id": "venue_the_monarch",
              "title": "Speak The Language",
              "event_time": "12 September 2026 10:00 PM",
              "venue_name": "The Monarch",
              "event_start": "2026-09-12T22:00:00",
              "event_date": "2026-09-12",
              "venue_address": "101 6th St, San Francisco, CA 94103",
              "description": "A Ballroom Focused Dance Party",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Buy Ticket",
              "url": "https://www.eventbrite.com/e/speak-the-language-a-ballroom-focused-dance-party-tickets-1998991355957",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monarch",
                  "source_name": "The Monarch",
                  "fetched_at": "2026-09-03T13:00:26.245791Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monarch|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_11fd91100ca4",
              "venue_id": "venue_cat_club",
              "title": "CLUB GOSSIP",
              "event_time": "September 12, 2026 9:00 PM",
              "venue_name": "Cat Club",
              "event_start": "2026-09-12T21:00:00",
              "event_date": "2026-09-12",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "Your 80s Video Dance Club\n——\n9pm-2am",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.sfcatclub.com/calendar/091424-se4xs-g729e-g62d5-e8tkx-2lmdm-x7bn3-4cn2w-kgbzk-mmj75-ykj7m-9wl7c-zt3ps-yhjwn-ezzw5-78xc8-gdjtr-x9cz3-jgtbs-gnx4k-wfsz8-sbazb",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cat_club",
                  "source_name": "Cat Club",
                  "fetched_at": "2026-09-03T13:24:58.141502Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bf2f741953ff",
              "venue_id": "venue_pier_23",
              "title": "TRIO COTIER",
              "event_time": "Saturday, September 12, 2026 4:00 PM\n              \n              7:00 PM",
              "venue_name": "Pier 23",
              "event_start": "2026-09-12T16:00:00",
              "event_date": "2026-09-12",
              "venue_address": "23 The Embarcadero,San Francisco, CA 94111",
              "description": "Trio Côtier is a San Francisco based combo with a sound that is inspiring, expansive, and a little bit dangerous, much like our California coast. Join us for a drink, a bite and a listen. Bring a friend.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.pier23cafe.com/events/2026/7/11/trio-cotier-4-7pm-d2k87",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pier_23",
                  "source_name": "Pier 23",
                  "fetched_at": "2026-09-03T13:40:31.659066Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pier_23|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_159112c05d98",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Radio Sofia",
              "event_time": "12 September 2026",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Radio Sofia delivers an instrumental set blending jazz, pop, R&B, and tropicalia world music. Unwind with a glass of wine while taking in their soulful and dynamic performance.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-09-03T13:50:21.930604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8521d31025f7",
              "venue_id": "venue_henry_j_kaiser",
              "title": "The Way Out Gala 2026",
              "event_time": "September 12 6:00 PM",
              "venue_name": "Henry J Kaiser Center",
              "event_start": "2026-09-12T18:00:00",
              "event_date": "2026-09-12",
              "venue_address": "10 10th St, Oakland, CA 94607",
              "description": "An annual fundraising gala benefiting The Salvation Army of Alameda County's community and homelessness programs, featuring an appearance honoring Oakland basketball legend Gary Payton.",
              "event_types": [
                "community",
                "festival"
              ],
              "price_info": "",
              "url": "https://www.thehenryj.org/events/the-way-out-gala-2026-a-night-for-others",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_henry_j_kaiser",
                  "source_name": "Henry J Kaiser Center",
                  "fetched_at": "2026-09-03T13:59:14.778279Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_henry_j_kaiser|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_743d92155fa8",
              "venue_id": "venue_salesforce_park",
              "title": "Big Band Jazz",
              "event_time": "2026-09-12T12:30:00",
              "venue_name": "Salesforce Park",
              "event_start": "2026-09-12T12:30:00",
              "event_date": "2026-09-12",
              "venue_address": "425 Mission St, San Francisco, CA 94105",
              "description": "Pull up a chair and enjoy an energetic performance by the Montclair Women's Big Band at the Amphitheater. Bring a blanket or low chair. Limited seating is first come, first served.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_salesforce_park",
                  "source_name": "Salesforce Park",
                  "fetched_at": "2026-09-03T14:07:03.174205Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_salesforce_park|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6a23be3d1ab5",
              "venue_id": "venue_comstock_saloon",
              "title": "Stu Silverman Band",
              "event_time": "2026-09-12T20:00:00",
              "venue_name": "Comstock Saloon",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "155 Columbus Ave, San Francisco, CA 94133",
              "description": "Live music performance",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_comstock_saloon",
                  "source_name": "Comstock Saloon",
                  "fetched_at": "2026-09-03T14:26:10.425617Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_comstock_saloon|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bb1b0f4a1a84",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Kids Festival | September 12",
              "event_time": "September 12, 2026  10:00 am – 12:00 pm",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-09-12T10:00:00",
              "event_date": "2026-09-12",
              "venue_address": "San Francisco, CA 94118",
              "description": "Featuring Mister G, Teacher Barb and The Musicmakers",
              "event_types": [
                "live_music",
                "community",
                "festival"
              ],
              "price_info": "Free",
              "url": "https://illuminate.org/event/kids-festival-september-12/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_illuminate",
                  "source_name": "Illuminate",
                  "fetched_at": "2026-09-03T14:32:31.098793Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_c8367764c63d",
              "venue_id": "venue_poor_house_bistro",
              "title": "Greg Rahn Band",
              "event_time": "2026-09-12T18:00:00",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-09-12T18:00:00",
              "event_date": "2026-09-12",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-09-04T10:11:13.938872Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_63af3ac55b98",
              "venue_id": "venue_sailing_goat",
              "title": "Zoe Fitzgerald Carter & Friends",
              "event_time": "2026-09-12T16:00:00",
              "venue_name": "Sailing Goat",
              "event_start": "2026-09-12T16:00:00",
              "event_date": "2026-09-12",
              "venue_address": "1900 Stenmark Dr, Richmond, CA 94801",
              "description": "Bay Area songwriter Zoe FitzGerald Carter and friends perform a blend of Americana, jazz, blues, folk, and rock.",
              "event_types": [
                "live_music",
                "folk",
                "jazz",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://www.sailinggoatrestaurant.com/event-details/zoe-fitzgerald-carter",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sailing_goat",
                  "source_name": "Sailing Goat",
                  "fetched_at": "2026-09-04T10:13:07.105977Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sailing_goat|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_8f66e956eb35",
              "venue_id": "venue_mvcpa",
              "title": "Smuin Contemporary Ballet: French Kiss",
              "event_time": "Saturday, September 12, 2026 2:00  PM",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-09-12T14:00:00",
              "event_date": "2026-09-12",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "Smuin Contemporary Ballet",
              "event_types": [
                "dance"
              ],
              "price_info": "",
              "url": "https://tickets.mvcpa.com/eventperformances.asp?evt=776",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mvcpa",
                  "source_name": "MV Center for the Performing Arts",
                  "fetched_at": "2026-09-04T10:13:59.609171Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mvcpa|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bd98ce5d5803",
              "venue_id": "venue_sf_playhouse",
              "title": "HAIRSPRAY",
              "event_time": "2026-09-12",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-12",
              "event_date": "2026-09-12",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "Music by Marc Shaiman & Thomas Meehan. Lyrics by Mark Shaiman & Scott Wittman. A 1960s Baltimore, Tracy Turnblad fights racial segregation and television bias to change her way to stardom.",
              "event_types": [
                "theater"
              ],
              "price_info": "On Stage Now",
              "url": "https://sfplayhouse.org/2025-2026-season/hairspray/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-09-04T10:15:07.852694Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-12",
              "run_id": "run_5d822625adfe",
              "run_label": "HAIRSPRAY, Jul 10 – Sep 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_381482e98e67",
              "venue_id": "venue_artists_television_access",
              "title": "Incredibly Strange Religion",
              "event_time": "2026-09-12T20:00:00",
              "venue_name": "ATA",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "992 Valencia St, San Francisco, CA 94110",
              "description": "Other Cinema's annual Incredibly Strange Religion revival featuring the Church of Magic, an apocalyptic performance-art initiative by Ben Folstein, alongside rare materials and films from Unarius, the Mormons, Christian Scientists, Scientologists, and the Church of Satan.",
              "event_types": [
                "film",
                "art"
              ],
              "price_info": "$11",
              "url": "https://www.atasite.org/event/other-cinema-incredibly-strange-religion/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_artists_television_access",
                  "source_name": "ATA",
                  "fetched_at": "2026-09-04T10:17:33.463128Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_artists_television_access|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_fe7a25dbc228",
              "venue_id": "venue_cafe_du_nord",
              "title": "Dent May",
              "event_time": "9/12/2026 9:00 pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-09-12T21:00:00",
              "event_date": "2026-09-12",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Live Nation Presents: Dent May with Healing Potpourri Sat, Sep 12 Doors: 8:00 pm | Show: 9:00 pm Tickets: $28.30 Buy Tickets 21 and up There’s an ecstatic melancholy in Dent May’s music, bittersweet, exuberant songs that break your heart as you sing along. On The Big One, he ditches his solo bedroom process for spontaneous sessions at Honeymoon Suite with a rotating cast of friends. Blending DIY pop with ’70s songwriter warmth, May embraces improvisation, community, and cautious optimism, finding joy, connection, and possibility even as the world feels uncertain. Cafe Du Nord's Preferred Viewing Available. GENERL ADMISSION NOT INCLUDED For any event that is listed as 18 or 21 and over, ANY ticket holder unable to present valid identification indicating that they are of age will not be admitted to this event, and will not be eligible for a refund. Any event listed as All Ages, means 6 years of age or older. ALL tickets are standing room only unless otherwise specified. If you need special accommodations, contact info@cafedunord.com. Support acts are subject to change without refund. Professional Cameras are not allowed without prior approval. Professional Camera defined as detachable lens or of professional grade as determined by the venue staff. When in doubt, just email us ahead of the show! We might be able to get you a Photo Pass depending on Artist’s approval. Artists Dent May Video There’s an ecstatic melancholy in Dent May’s music, bittersweet, exuberant songs that break your heart as you sing along. On The Big One, he ditches his solo bedroom process for spontaneous sessions at Honeymoon Suite with a rotating cast of friends. Blending DIY pop with ’70s songwriter warmth, May embraces improvisation, community, and cautious optimism, finding joy, connection, and possibility even as the world feels uncertain. Healing Potpourri + Google Calendar Related Events BAILEN - SWIM!!! At Your Own Risk Tour with BEL Thu, Aug 20 Buy Tickets DWLLRS: One of Those Nights Tour",
              "event_types": [
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://cafedunord.com/tm-event/dent-may/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cafe_du_nord_and_swedish_american_hall",
                  "source_name": "Cafe Du Nord and Swedish American Hall",
                  "fetched_at": "2026-09-04T10:21:43.132381Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_88dfd52cc292",
              "venue_id": "venue_kilowatt",
              "title": "Moondaddy & Mark Crozer",
              "event_time": "Sat 12 Sep ― 6:00pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-12T18:00:00",
              "event_date": "2026-09-12",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Keep track of what’s coming up by saving events, sharing them with friends, or even listening to new music in the app.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/Of4b69806c54?pid=ff10e59d",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-09-04T10:33:38.052132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_00abd6c80d01",
              "venue_id": "venue_kilowatt",
              "title": "Global P",
              "event_time": "Sat 12 Sep ― 9:00pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-12T21:00:00",
              "event_date": "2026-09-12",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Keep track of what’s coming up by saving events, sharing them with friends, or even listening to new music in the app.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$7.73",
              "url": "https://link.dice.fm/aaf2706af771?pid=ff10e59d",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-09-04T10:33:38.052132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9fe54290a17d",
              "venue_id": "venue_sevys_aptos",
              "title": "Live Music: The Brian Fitzgerald Trio",
              "event_time": "September 12, Saturday 7:00 PM",
              "venue_name": "Sevy's Bar & Kitchen",
              "event_start": "2026-09-12T19:00:00",
              "event_date": "2026-09-12",
              "venue_address": "7500 Old Dominion Ct, Aptos, CA 95003",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sevys_aptos",
                  "source_name": "Sevy's Bar & Kitchen",
                  "fetched_at": "2026-09-04T10:39:41.919005Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sevys_aptos|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e192307b6d18",
              "venue_id": "venue_henflings",
              "title": "Tsunami Rocks Henflings Tavern",
              "event_time": "2026-09-12T20:00:00",
              "venue_name": "Henfling's Tavern",
              "event_start": "2026-09-12T20:00:00",
              "event_date": "2026-09-12",
              "venue_address": "9450 Highway 9, Ben Lomond, CA 95005",
              "description": "High-energy rock-and-roll dance band Tsunami plays classic rock, R&B, Motown, reggae, and country at Henflings Tavern.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://www.facebook.com/events/1695686329232150",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_henflings",
                  "source_name": "Henfling's Tavern",
                  "fetched_at": "2026-09-04T10:41:15.215331Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_henflings|2026-09-12",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            }
          ]
        },
        "2026-09-13": {
          "date": "2026-09-13",
          "updated_at": "2026-09-04T10:38:52.729367Z",
          "events": [
            {
              "event_id": "evt_008299859fef",
              "venue_id": "venue_bimbos_365",
              "title": "Haute & Freddy",
              "event_time": "Sep 13 7pm/8pm",
              "venue_name": "Bimbos 365",
              "event_start": "2026-09-13T19:00:00",
              "event_date": "2026-09-13",
              "venue_address": "1025 Columbus Ave, San Francisco, CA 94133",
              "description": "Another Planet presents Big Disgrace Tour | All Ages",
              "event_types": [
                "live_music"
              ],
              "price_info": "SOLD OUT",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bimbos_365",
                  "source_name": "Bimbos 365",
                  "fetched_at": "2026-05-06T11:40:58.948379Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bimbos_365|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_773ccee4ca68",
              "venue_id": "venue_mountain_winery",
              "title": "Smokey Robinson",
              "event_time": "Sep 13, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-13T19:30:00",
              "event_date": "2026-09-13",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Smokey Robinson Legacy of Love Tour Sunday, September 13 Doors 5:30PM, Show 7:30PM All Ages to Enter, 21 & Over to Drink The Mountain Winery Buy Tickets Event Info No refunds or exchanges. All shows are rain or shine. Children age 3 and older require a ticket. A child under the age of 3 is considered a lap child and does not require a ticket. For directions, dining, parking, or carpool information, please visit www.mountainwinery.com. For information on how to purchase VIP season tickets including suites and box seats, please visit https://www.mountainwinery.com/vip-seating/ Doors open 2 hours prior to the show time. Seating begins 1 hour prior to the show time. Artist Info The true musical legend that is Smokey Robinson announces four UK shows in July 2025, which will be his first in a decade, the year in which he marks the 50th Anniversary of his 1975 breakthrough album, ‘A Quiet Storm’. The Legacy Tour will highlight and celebrate this, as well as all of his top hits from throughout the decades. Tickets will go on sale on Friday 6th December 2024 at 10am. Smokey Robinson said, “I always love performing in the UK, it has been too long. These special shows mark the 50th anniversary of ‘A Quiet Storm’, an album that is truly special to me. So whilst I want to honour that record, and those amazing times, this will also be a celebration of everything that has come before and we will be performing all the hits. It’s been over 10 years and I cannot wait to return in July 2025 and entertain all my UK fans”. Born and raised in Detroit, Michigan, Robinson founded The Miracles while still in high school. The group was Berry Gordy’s first vocal group, and it was at Robinson’s suggestion that Gordy started the Motown Records dynasty. Their single of Robinson’s ‘Shop Around’ became Motown’s first #1 hit on the R&B singles chart. In the years following, Robinson continued to pen hits for the group, including ‘You've Really Got a Hold on Me’, ‘Ooo Baby Baby’, ‘The Tracks of My T",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1366161",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-06-02T10:55:16.293558Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f5f1ecb46bd4",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Masego",
              "event_time": "sep 13 7:30pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-09-13T19:30:00",
              "event_date": "2026-09-13",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Micah Davis, known as Masego, is a Jamaican-American artist whose music traces the arc of Black music’s journey, blending fresh jazz innovation with ancestral echoes. His journey began in Virginia, a state that has birthed cultural architects like Pharrell and Timbaland, yet Masego’s path is distinct: a generational storyteller who crafts songs from scratch with his Looper pedal, weaving rhythms that are both immediate and eternal.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$66+",
              "url": "https://thefoxoakland.com/events/masego-260913",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-17T10:47:20.580351Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-06-19T11:58:46.732301Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bdc407163215",
              "venue_id": "venue_california_theatre",
              "title": "Don Giovanni - Opera San José",
              "event_time": "2026-09-13T19:30:00",
              "venue_name": "California Theatre",
              "event_start": "2026-09-13T19:30:00",
              "event_date": "2026-09-13",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "Relive the epic adventure on the big screen as Symphony San Jose performs John Williams's iconic, Oscar-winning score live. This special concert event brings the beloved cinematic masterpiece to life with full orchestral accompaniment.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "https://events.timely.fun/jc0x91t0/event/78330769",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-06-23T13:09:42.892074Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_symphony_san_jose",
                  "source_name": "Symphony San Jose",
                  "fetched_at": "2026-06-28T03:08:41.619469Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_california_theatre|2026-09-13",
              "run_id": "run_285788e23a8b",
              "run_label": "Don Giovanni - Opera San José, Sep 13 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ef3b080b65e0",
              "venue_id": "venue_masonic_hall",
              "title": "Polyphia, Ladrones, RJ Pasin",
              "event_time": "sep 13 7:30pm",
              "venue_name": "Masonic Hall",
              "event_start": "2026-09-13T19:30:00",
              "event_date": "2026-09-13",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Instrumental progressive rock band Polyphia takes the stage at the Masonic Hall to showcase their intricate guitar work and genre-defying sound. The tour celebrates their return to the road and features performances of their latest tracks.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$53+",
              "url": "https://www.ticketmaster.com/polyphia-tour-mmxxvi-san-francisco-california-09-13-2026/event/1C0060A9E2A82937",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-25T10:40:49.247198Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-06-28T15:59:17.587512Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_masonic_hall|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a988001e1f14",
              "venue_id": "venue_the_fillmore",
              "title": "Manchester Orchestra, Brother Bird",
              "event_time": "sep 13 8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-09-13T20:00:00",
              "event_date": "2026-09-13",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "Indie rock group Manchester Orchestra takes the stage at The Fillmore for an emotionally charged live performance.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/manchester-orchestraim-like-a-virgin-losing-san-francisco-california-09-13-2026/event/1C0064DAAAA620ED",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-18T11:36:11.622544Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-07-20T10:38:30.327539Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e8e5c38b10c8",
              "venue_id": "venue_dna_lounge",
              "title": "Johnny Manchild",
              "event_time": "sep 13 7:30pm",
              "venue_name": "DNA Lounge",
              "event_start": "2026-09-13T19:30:00",
              "event_date": "2026-09-13",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "Johnny Manchild!\n\tAlternative, Indie Rock! Since 2016, Johnny Manchild has led\n\tan ever-evolving lineup, affectionately dubbed the Poor Bastards, in\n\tthe pursuit of conveying the noise in his head. A noise that gets\n\tlouder everyday, and is never quite the same with each iteration.\n\tWith five albums under his belt and over 400,000 listeners over the\n\tlast decade, Johnny Manchild has shown no sides of resting until the\n\tnoise subsides; though the odds of that happening anytime soon are\n\tgrowing smaller everyday.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$15/$21",
              "url": "https://www.dnalounge.com/calendar/2026/09-13d.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_dna_lounge",
                  "source_name": "DNA Lounge",
                  "fetched_at": "2026-08-09T11:36:41.873225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_6c3a737f0b38",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Hex Pest",
              "event_time": "sep 13 7:30pm",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-13T19:30:00",
              "event_date": "2026-09-13",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "post-punk, shoegaze, dream pop, jangle pop psychedelic rock",
              "event_types": [
                "live_music"
              ],
              "price_info": "$15",
              "url": "http://www.bottomofthehill.com/20260913.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-08-09T10:54:41.013216Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_e5f4043ccd2d",
              "venue_id": "venue_ivy_room",
              "title": "Hank Williams Birthday Bash",
              "event_time": "Sunday Sep 13 2:00 PM",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-13T14:00:00",
              "event_date": "2026-09-13",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "nashville honeymoon presents - featuring an all star revue paying tribute to the greatest that ever was",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/190699",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-07-31T12:32:32.572739Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5a88f1372208",
              "venue_id": "venue_mountain_view_art_wine",
              "title": "Mountain View Art & Wine Festival 2026",
              "event_time": "2026-09-13T10:00:00",
              "venue_name": "Mountain View Art & Wine Festival",
              "event_start": "2026-09-13T10:00:00",
              "event_date": "2026-09-13",
              "venue_address": "Castro St, Mountain View, CA 94041",
              "description": "Day 2 of the annual festival featuring artists, live music, food and drink purveyors, and kids zone activities.",
              "event_types": [
                "live_music",
                "festival"
              ],
              "price_info": "Free admission",
              "url": "https://www.mvartwine.com/pge-main-stage-artists",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_view_art_wine",
                  "source_name": "Mountain View Art & Wine Festival",
                  "fetched_at": "2026-08-10T10:36:51.078638Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mountain_view_art_wine|2026-09-13",
              "run_id": "run_6a5df145ac6c",
              "run_label": "Mountain View Art & Wine Festival 2026, Sep 12 – Sep 13",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_97b7044a8309",
              "venue_id": "venue_ivy_room",
              "title": "Slap Dragon",
              "event_time": "Sunday Sep 13 7:30 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-13T19:30:00",
              "event_date": "2026-09-13",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "bmg presents - genre - groove, grass",
              "event_types": [
                "hiphop_rap",
                "jazz",
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/193490",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-08-15T10:22:49.486130Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c440d1433c8d",
              "venue_id": "venue_cafe_du_nord",
              "title": "Sub Urban",
              "event_time": "sep 13 8pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-09-13T20:00:00",
              "event_date": "2026-09-13",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Live Nation Presents: Sub Urban - The Bell Tolls Tour with Golden Cats Sun, Sep 13 Doors: 7:00 pm | Show: 8:00 pm Tickets: $33.45 Buy Tickets All Ages Dark-pop provocateur, Daniel Virgil Maisonneuve, professionally known as Sub Urban is a Taiwanese American singer, songwriter and producer most known for his RIAA double platinum-certified hit, “Cradles”. Since his breakout hit, Daniel has continued to innovate his electric sound, imbuing macabre theatrics with distinctive timbres and undeniably addictive hooks Artist Presale: Wednesday April 1 at 10am Public On sale: Friday April 3 at 10am Cafe Du Nord's Preferred Viewing Available, General Admission Not Included For any event that is listed as 18 or 21 and over, ANY ticket holder unable to present valid identification indicating that they are of age will not be admitted to this event, and will not be eligible for a refund. Any event listed as All Ages, means 6 years of age or older. ALL tickets are standing room only unless otherwise specified. If you need special accommodations, contact info@cafedunord.com. Support acts are subject to change without refund. Professional Cameras are not allowed without prior approval. Professional Camera defined as detachable lens or of professional grade as determined by the venue staff. When in doubt, just email us ahead of the show! We might be able to get you a Photo Pass depending on Artist’s approval. Artists Sub Urban Video Dark-pop provocateur, Daniel Virgil Maisonneuve, professionally known as Sub Urban is a Taiwanese American singer, songwriter and producer most known for his RIAA double platinum-certified hit, “Cradles”. Since his breakout hit, Daniel has continued to innovate his electric sound, imbuing macabre theatrics with distinctive timbres and undeniably addictive hooks Golden Cats As indie pop-rock makes its return to the forefront of popular music, Golden Cats has emerged as one of the genre's most closely watched acts. Blending nostalgic alternative rock with in",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "Buy Tickets",
              "url": "https://cafedunord.com/tm-event/sub-urban-the-bell-tolls-tour/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "s_cafe_du_nord_and_swedish_american_hall",
                  "source_name": "Cafe Du Nord and Swedish American Hall",
                  "fetched_at": "2026-08-17T10:22:39.919691Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_a67c30f8ca86",
              "venue_id": "venue_great_american_music_hall",
              "title": "Bear McCreary",
              "event_time": "sep 13 8pm",
              "venue_name": "Great American",
              "event_start": "2026-09-13T20:00:00",
              "event_date": "2026-09-13",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Goldenvoice Presents... | With special guests Angels on the Battlefield | with Angels on the Battlefield",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "$40/$45",
              "url": "https://wl.seetickets.us/event/bear-mccreary/689521?afflky=GreatAmericanMusicHall",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-08-24T10:16:41.496787Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_2853a68b9649",
              "venue_id": "venue_the_chapel",
              "title": "Carla Dal Forno",
              "event_time": "sep 13 8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-09-13T20:00:00",
              "event_date": "2026-09-13",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "Melbourne-born post-punk and dub-infused dream pop artist Carla dal Forno headlines with local support from Cindy.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$29.69",
              "url": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQGIMPZCvorNfXDMilP0MWBFAvKvgDRbi98Dp6SujN9UDlUkhJiJ3_s3Dy6CGxz_YsP-DF1q9ciRiYWHph-w1dDDHDY8AGH9VLHgoN-3CfYuTrMxcSsXb_Qfv7YAhKHI2eyU-srvo5Sc9JaY9GiGE1wDaOtRZfkXTMuyhAU=",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-09-04T10:04:30.038559Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_chapel|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_0ee504761c40",
              "venue_id": "venue_dna_lounge",
              "title": "Zeromind, The Random Devils, Brodre",
              "event_time": "sep 13 7:30pm",
              "venue_name": "DNA Lounge",
              "event_start": "2026-09-13T19:30:00",
              "event_date": "2026-09-13",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "all ages; mosh pit warning",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15/$22",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_dna_lounge|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_32dd51e71eb0",
              "venue_id": "venue_castro_theater",
              "title": "Orville Peck",
              "event_time": "sep 13 8pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-13T20:00:00",
              "event_date": "2026-09-13",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "“Blue Skies” were certainly ahead, though not right away, and not in the way he sings about on the song of the same name. Slow, drawn-out percussion and dramatic strings underscore Orville’s lush harmonizing and howling as he croons about (as he describes it) “descending back into darkness, even darker than ever before I went to rehab” before a discordant crash-out and crescendo. Rock bottom comes one night in downtown New York the summer of 2023 in the form of “The Fall,” chronicling the moment Orville knew—based on how his choices had begun to impact those closest to him—that a change needed to come, and quickly. “The lyrics are mostly about yearning for missing everything that I had lost in my life at that point: my relationship, my career, and my sanity,” he says. “But this song is also about finding the clarity that I needed to make a change, clarity that also involved healing some of the resentment I felt towards my ex and myself; this song is the turning point in the album that changes for the better.”",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/orville-peck-260913",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-08-26T11:11:53.167543Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_56c5e1fc160f",
              "venue_id": "venue_california_theatre",
              "title": "Don Giovanni – Opera San José",
              "event_time": "Sep 13, 2026 @ 2:00pm",
              "venue_name": "California Theatre",
              "event_start": "2026-09-13T14:00:00",
              "event_date": "2026-09-13",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "| Today's Show: 2pm |  | Performances: Sept. 13-27 |\n \nBack after twelve years, Opera San José presents a new production of Don Giovanni, Mozart’s dark psychological thriller. Seduction, rebellion and…",
              "event_types": [
                "theater",
                "classical",
                "live_music"
              ],
              "price_info": "",
              "url": "https://events.timely.fun/jc0x91t0/event/78330769",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-08-20T11:26:04.395277Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-08-26T11:04:43.114181Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_california_theatre|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_dc856c4c4eaa",
              "venue_id": "venue_sap_center",
              "title": "Andrea Bocelli",
              "event_time": "2026-09-13T20:00:00",
              "venue_name": "SAP Center",
              "event_start": "2026-09-13T20:00:00",
              "event_date": "2026-09-13",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "World-renowned Italian tenor Andrea Bocelli in concert at SAP Center.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://www.sapcenter.com/events/detail/andrea-bocelli",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-08-20T12:59:28.269789Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sap_center|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_1c81014f68de",
              "venue_id": "venue_the_riptide",
              "title": "Pancake Batfish (Acoustic / Electric Rock)",
              "event_time": "Sunday, September 13 7:30 PM - 10:00 PM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-13T19:30:00",
              "event_date": "2026-09-13",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "Delicious jams for your head - come get some",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_979b052f70cb",
              "venue_id": "venue_crepe_place",
              "title": "Grateful Sundays with The Hartle Gold Band",
              "event_time": "2026-09-13",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-13T20:00:00",
              "event_date": "2026-09-13",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "https://thecrepeplace.com/shows-list/sunday-march-16-6-9pm-in-the-garden-grateful-sundays-with-the-hartle-gold-band-10-at-the-door-bcmcw-smpmp-pjf4m-ez6xm-nchcm-nneap-4wlx7",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_97e4fbe48f90",
              "venue_id": "venue_abbott_square",
              "title": "SALSA BY THE SEA AFTERPARTY",
              "event_time": "Sunday, September 13, 2026 6:00 PM - 9:00 PM",
              "venue_name": "Abbott Square Market",
              "event_start": "2026-09-13T18:00:00",
              "event_date": "2026-09-13",
              "venue_address": "725 Front St, Santa Cruz, CA 95060",
              "description": "Every Sunday evening join us for the Salsa by The Sea Afterparty. Featuring various local DJ’s.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.abbottsquaremarket.com/events/salsa-by-the-sea-afterparty-1-jb89k-k8j3p-5ace6-sm7rs-83agk",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_abbott_square",
                  "source_name": "Abbott Square Market",
                  "fetched_at": "2026-08-22T12:39:51.694804Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_abbott_square|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_37ad135519df",
              "venue_id": "venue_colligan_theater",
              "title": "Puccini's Girl Of the Golden West",
              "event_time": "Sunday, September 13 2 – 5pm",
              "venue_name": "Colligan Theater",
              "event_start": "2026-09-13T14:00:00",
              "event_date": "2026-09-13",
              "venue_address": "1010 River St, Santa Cruz, CA 95060",
              "description": "2pm to 5pm, Puccini's Girl Of the Golden West, Calendar: Colligan Events, No location, September 13, 2026",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_colligan_theater",
                  "source_name": "Colligan Theater",
                  "fetched_at": "2026-08-22T12:44:15.808279Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_colligan_theater|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f6c6271f1a2b",
              "venue_id": "venue_verdi_club",
              "title": "Hello! Bachata",
              "event_time": "2026-09-13T15:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-09-13T15:00:00",
              "event_date": "2026-09-13",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.verdiclub.net/events-calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-08-22T14:55:24.428239Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_verdi_club|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b1ec545d66fb",
              "venue_id": "venue_dance_mission",
              "title": "KMB’s ‘Giselle’",
              "event_time": "2026-09-13",
              "venue_name": "Dance Mission Theater",
              "event_start": "2026-09-13",
              "event_date": "2026-09-13",
              "venue_address": "3316 24th St, San Francisco, CA 94110",
              "description": "Kathy Mata Ballet presents “Giselle.”",
              "event_types": [
                "dance",
                "theater"
              ],
              "price_info": "FREE!!",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dance_mission",
                  "source_name": "Dance Mission Theater",
                  "fetched_at": "2026-08-22T15:02:23.569813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dance_mission|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8911b9b5298f",
              "venue_id": "venue_crows_nest_sc",
              "title": "SAN FRANCISCO COMEDY COMPETITION",
              "event_time": "Sunday September 13th 04:00 PM",
              "venue_name": "The Crow's Nest",
              "event_start": "2026-09-13T16:00:00",
              "event_date": "2026-09-13",
              "venue_address": "2218 East Cliff Dr, Santa Cruz, CA 95062",
              "description": "Sunday September 13th Live Comedy 15 live comics Starts at 04:00 PM",
              "event_types": [
                "comedy"
              ],
              "price_info": "$10  cover",
              "url": "https://thecomedyunderground.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crows_nest_sc",
                  "source_name": "The Crow's Nest",
                  "fetched_at": "2026-08-22T15:19:13.909618Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crows_nest_sc|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4af8f93eb0ec",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Alice for Wonderland",
              "event_time": "2026-09-13",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-13",
              "event_date": "2026-09-13",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "| Today’s Shows: 1pm, 6:30pm |\n| Performances: Sept. 8-13 |  \n \n“Be Our Guest” at Disney’s BEAUTY AND THE BEAST, Disney’s first North American touring production of the beloved musical in over 25 year…",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://sanjosetheaters.org/event/78443617-20260913000000",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "San Jose CPA",
                  "fetched_at": "2026-08-28T18:46:14.894140Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-13",
              "run_id": "run_304a2c902844",
              "run_label": "Alice for Wonderland, Aug 22 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_56720a0cd878",
              "venue_id": "venue_discovery_meadow_sj",
              "title": "Sleeping On Gems Fest",
              "event_time": "Sun, Sep 13 •  2:00 PM",
              "venue_name": "Discovery Meadow",
              "event_start": "2026-09-13T14:00:00",
              "event_date": "2026-09-13",
              "venue_address": "180 Woz Way, San Jose, CA 95110",
              "description": "Terms & Conditions (please read): ALL SALES FINAL . By purchasing a ticket, you acknowledge and agree that there are zero refunds, zero exchanges, and zero chargebacks for ANY reason whatsoever. This event will proceed rain or shine. Entry is 18+ (VIP 21+ ONLY) and a valid government-issued ID is required. If you cannot meet these requirements, do not purchase a ticket.",
              "event_types": [
                "festival",
                "live_music"
              ],
              "price_info": "From $76.32",
              "url": "https://www.eventbrite.com/e/sleeping-on-gems-fest-w-kaytranada-more-discovery-meadow-san-jose-tickets-1993569655505?aff=ebdssbdestsearch",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_eventbrite_sj",
                  "source_name": "Eventbrite SJ",
                  "fetched_at": "2026-08-22T17:06:47.797547Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_discovery_meadow_sj|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_b8dfaf818577",
              "venue_id": "venue_sc_beach_boardwalk",
              "title": "Ironman 70.3",
              "event_time": "2026-09-13 September 13",
              "venue_name": "Santa Cruz Beach Boardwalk",
              "event_start": "2026-09-13",
              "event_date": "2026-09-13",
              "venue_address": "400 Beach St, Santa Cruz, CA 95060",
              "description": "This event builds on the history of one of California's longest-running events.  Santa Cruz has all things outdoors; surf, sand, and sun.  From the historic lighthouse Santa Cruz Surfing Museum […]",
              "event_types": [
                "sports"
              ],
              "price_info": "$558.63",
              "url": "https://www.santacruz.org/upcoming-event/santa-cruz-ironman-70-3/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_visit_santa_cruz_county",
                  "source_name": "Visit Santa Cruz County",
                  "fetched_at": "2026-08-22T18:34:05.859446Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sc_beach_boardwalk|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_a67f2041b799",
              "venue_id": "venue_scpl_downtown",
              "title": "Sunday Assembly",
              "event_time": "September 13 2026 10:00am - 1:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-13T10:00:00",
              "event_date": "2026-09-13",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Local chapter of a global secular (non-religious) movement of people who meet to celebrate life together in congregations and communities around the world. Meets 2nd Sunday of the month 11am to 1 pm.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16554926",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_662dd5325870",
              "venue_id": "venue_the_midway",
              "title": "Intercell SF",
              "event_time": "2026/09/13 Sun: Sep 13 (4pm-11pm)",
              "venue_name": "The Midway",
              "event_start": "2026-09-13T16:00:00",
              "event_date": "2026-09-13",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "eurodance, trance, bounce, techno",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$25 b4 5 / $30-40 | 21+",
              "url": "https://ra.co/events/2496090",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-08-30T10:57:54.572474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_b16091fb41e1",
              "venue_id": "venue_tommy_ts",
              "title": "T-MURPH",
              "event_time": "Sept 13th",
              "venue_name": "Tommy T's",
              "event_start": "2026-09-13",
              "event_date": "2026-09-13",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "T-MURPH\nSept 13th\nTickets – Video",
              "event_types": [
                "comedy"
              ],
              "price_info": "Tickets",
              "url": "https://tommyts-com.seatengine.com/events/136723",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-08-22T21:57:38.329553Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cc1070d46c94",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Little Shop of Horrors",
              "event_time": "2:00PM, Sunday, September 13, 2026",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-09-13T14:00:00",
              "event_date": "2026-09-13",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Book & Lyrics by Howard Ashman, Music by Alan Menken. Based on the film by Roger Corman, Screenplay by Charles Griffith. Directed by Ben Villegas Randle, Musical Direction by Jad Bernardo, Choreography by Leslie Waggoner",
              "event_types": [
                "theater",
                "live_music"
              ],
              "price_info": "",
              "url": "https://nctcsf.org/event/little-shop/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-08-26T11:06:39.262369Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-09-13",
              "run_id": "run_5315ef200ae4",
              "run_label": "Little Shop of Horrors, Sep 12 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_95c7bbec3529",
              "venue_id": "venue_bookshop_santa_cruz",
              "title": "The Corrections 25th Anniversary",
              "event_time": "Sun, 9/13/2026 7:00pm - 8:30pm",
              "venue_name": "Bookshop Santa Cruz",
              "event_start": "2026-09-13T19:00:00",
              "event_date": "2026-09-13",
              "venue_address": "1520 Pacific Ave, Santa Cruz, CA 95060",
              "description": "FREE IN-STORE EVENT: Bookshop Santa Cruz Celebrates: The 25th Anniversary of The Corrections with Jonathan Franzen  Join us for a celebration of the 25th anniversary of The Corrections wi...",
              "event_types": [
                "literary"
              ],
              "price_info": "",
              "url": "https://bookshopsantacruz.com/corrections-25",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bookshop_santa_cruz",
                  "source_name": "Bookshop Santa Cruz",
                  "fetched_at": "2026-08-27T22:11:24.045604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bookshop_santa_cruz|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_eed0e4e00134",
              "venue_id": "venue_dalas_nest",
              "title": "Jaeger & Reid | Indie Folk Duo",
              "event_time": "2026-09-13T15:30:00",
              "venue_name": "Dala's Nest",
              "event_start": "2026-09-13T15:30:00",
              "event_date": "2026-09-13",
              "venue_address": "Menlo Park, CA",
              "description": "Live Music Garden Concert Venue hosts Rock Americana Jazz Celtic World Blues Twang Bluegrass Rockabilly Folk Alexa Siri Google",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$25.00 donation",
              "url": "https://www.dalasnesthouseconcerts.com/Get tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dalas_nest",
                  "source_name": "Dala's Nest",
                  "fetched_at": "2026-08-28T10:45:07.985486Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dalas_nest|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_b63767e56130",
              "venue_id": "venue_the_freight__salvage",
              "title": "Sunny Jain's Wild Wild East",
              "event_time": "2026-09-13T18:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-13T18:00:00",
              "event_date": "2026-09-13",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Login View Cart Time remaining: 00:00 Activate Code Your cart has expired Your order contained expired items and your shopping cart has been emptied. Close Details Sunday, September 13, 2026 7:00PM Sunny Jain's Wild Wild East 2026 Sunny Jain Wild Wild East Behind its idealism, the American myth of westward expansion has always been an irony-caked parable about what happens when you try to escape the known for the pursuit of new beginnings. The traits we think we’ve spotted in the cowboy — bravery, boldness, a willingness to sacrifice the known for the sake of the better — have always been suspect. But the courage to leave behind a homeland and head west, to boldly step into a new place and declare it home, to survey the scene and try to find your place in it? That’s still around. “The idea of the American cowboy is this romanticized idea that’s just false,” Sunny Jain says plainly. “The immigrant is the current-day cowboy or cowgirl.” This dynamic — of interrogating American myths to make them fit the reality of our world, of both questioning and rhapsodizing the notion of identity in a contingent world — is at the heart of Wild Wild East , the new album from the Brooklyn-based bandleader, composer, dhol player, and drummer. It’s also at the heart of his story — as the son of immigrants from India, as a kid from Rochester raised on the Cure and prog rock, as a fluid jazz drummer on his own and as a party-starter with Red Baraat, as an American of color. Accordingly, his view is broad enough to take in shuddering walls of post-rock guitar, howling tenor sax, the persistent thump of Indian brass band music, rhythms from Punjab and southern Pakistan, film soundtracks from around the world, and swaggering West Coast rap. But like Jain himself, Wild Wild East can’t be reduced to a cosmopolitan series of signifiers taking their turn in the spotlight. The ease with which Jain braids his sound highlights the interconnectedness of global styles — and that sense of connection",
              "event_types": [
                "live_music",
                "jazz",
                "latin_world"
              ],
              "price_info": "$44/$49\n(INCLUDES ALL FEES)",
              "url": "https://secure.thefreight.org/15927/15928",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e344808dc4c4",
              "venue_id": "venue_meyhouse",
              "title": "Sarah Chong: The Language of Longing",
              "event_time": "Sep 13, 2026, 5:00 PM – 9:00 PM",
              "venue_name": "Meyhouse Palo Alto",
              "event_start": "2026-09-13T17:00:00",
              "event_date": "2026-09-13",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.meyhousejazz.com/event-details/meyhouse-classical-san-francisco-symphony-cellist-sarah-chong-the-language-of-longing-sun-9-13",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Palo Alto",
                  "fetched_at": "2026-08-28T12:28:47.745590Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_meyhouse|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_28934baf41ea",
              "venue_id": "venue_sfjazz_lab",
              "title": "NDUDUZO MAKHATHINI TRIO",
              "event_time": "2026-09-13 6:00 PM",
              "venue_name": "SFJAZZ Lab",
              "event_start": "2026-09-13T18:00:00",
              "event_date": "2026-09-13",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Over the last decade in jazz’s evolution, no pianist has had the impact of South African keyboard great Nduduzo Makhathini . He brings his working trio and music from his newest Blue Note session, The Myth We Choose , to this SFJAZZ debut. Born in the lush province of KwaZulu-Natal and raised within the spiritual traditions of Zulu culture, Nduduzo Makhathini has become one of the most visionary figures in contemporary jazz. His music fuses the expansive language of American jazz with African spirituality, ritual, and collective memory, creating performances that feel equally like concerts and ceremonies. Deeply influenced by John Coltrane, McCoy Tyner, and South African legends Bheki Mseleku and Abdullah Ibrahim, Makhathini has developed a profoundly personal sound marked by thunderous improvisation, lyrical sensitivity, and emotional depth. A prolific recording artist, educator, and scholar, Makhathini became the first South African artist signed to Blue Note Records in decades, earning international acclaim for albums including Modes of Communication , In the Spirit of Ntu , and uNomkhubulwane . His work has established him as a global ambassador for modern African jazz and one of the music’s most spiritually resonant voices. With The Myth We Choose , Makhathini continues his fearless exploration of identity, ancestry, and liberation, crafting music of breathtaking power, intimacy, and transcendence.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/nduduzo-makhathini-trio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_lab|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_0a5cf36f725d",
              "venue_id": "venue_sfjazz_miner",
              "title": "CHRISTIAN MCBRIDE'S URSA MAJOR",
              "event_time": "2026-09-13 7:00 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-09-13T19:00:00",
              "event_date": "2026-09-13",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Bassist and composer Christian McBride ’s most recent project is a quintet showcasing several of the most exciting young players on the scene. Returning to the Miner Auditorium stage for two nights, the cast features tenor saxophonist Nicole Glover , who has toured with Wynton Marsalis and Jazz at Lincoln Center Orchestra, performed with veteran masters such as drummer Al Foster, vocalist Dee Dee Bridgewater, and bassist Reggie Workman, and recorded with pianist Aaron Diehl’s GRAMMY-nominated 2023 Mary Lou Williams project Zodiac Suite. Ely Perlman is an exciting young guitarist who has collaborated with Terreon Gully and Braxton Cook, and Chicago pianist Mike King has been touring with Dee Dee Bridgewater, and trumpeters Marquis Hill, Theo Croker, and Marcus Printup. Powering the band is Oakland native Savannah Harris , a remarkably poised young drummer who has made a major impact with the likes of vocalist Cécile McLorin Salvant, Kenny Barron, and Immanuel Wilkins. About Christian McBride More than a bass superstar, Christian McBride has become a commanding force in American culture. His responsibilities are legion, from producer and radio host to his recent post as artistic director of the historic Newport Jazz Festival. And that’s to say nothing of his era-defining work as an eleven-time GRAMMY Award-winning bandleader and recording artist who’s collaborated with everyone from McCoy Tyner, Sonny Rollins, Pat Metheny and Chick Corea to Sting, Paul McCartney, Kathleen Battle, The Roots and James Brown.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/christian-mcbride-ursa-major/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_71f0ca207a83",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Birth Language Book Launch",
              "event_time": "2026-09-13 7:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-09-13T19:00:00",
              "event_date": "2026-09-13",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "Celebrate the new book by Aimee Suzara, Birth Language, which centers a Filipina-American time traveling through her history, twisted and haunted like the roots of a balete tree. The book fuses English, Spanish, and Tagalog. It employs archival texts from as early as the 1500s when European conquistadors and explorers encountered the pre-colonial Philippine islands. Guided by the babaylan (shaman) and populated by mythical creatures like the mananngangal, kapre, and sireno, the collection celebrates a history of resistance, reclaiming and redefining the self despite colonization, assimilation, and cultural loss.\n\nAimee will share poetry from her book and converse with guest poets Yaccaira Salvatierra and David Maduli about shared themes in their work.\n\nAimee Suzara is a Filipino-American poet, playwright, performer, and educator Aimee Suzara is the author of the poetry book BIRTH LANGUAGE (Tia Chucha Press, Aug 2026), SOUVENIR (Wordtech Editions 2014), which was Willa Award Finalist, and two chapbooks, Finding the Bones and The Space Between. Her poems, prose and plays have appeared in Kartika Review, California Language Association Journal, Orion Magazine, Raising Mothers, Poets.org, Mom Egg Review, and Women Re-Creating Classics (Bloomsbury 2025), among others. Her commissioned play THE REAL SAPPHO was supported by the Kenneth Rainin Foundation New Works program and the National Endowment for the Arts. Suzara was a 2025 San Francisco Foundation / Nomadic Press Literary Award winner, and has been been awarded fellowships and residencies by Poetry and the Senses at UC Berkeley, Mesa Refuge, the Key West Literary Seminar, A Room of Her Own Foundation, Hedgebrook and the Atlantic Center for the Arts.  As a multidisciplinary performer, she has collaborated with dance theater and music ensembles such as Deep Waters Dance Theater and the Grammy-Award-winning Kronos Quartet. She holds degrees from UC Berkeley and Mills College.  Based in Oakland, California, she teaches writing at Bay Area colleges and universities and through her coaching business Wild Tongues. \n\nDavid Maduli is a father, educator, and author of Alemany Bay Window/Redwood Coast Record Crate (Sampaguita Press, 2024). His work, often inflected by many years as a DJ and school teacher, received the Joy Harjo Poetry Prize. Born in San Francisco, he resides in Oakland, where he completed his MFA at Mills College with a fellowship in Community Poetics.\n\nYaccaira Salvatierra is a California-based poet, translator, mother and dedicated educator. She is the author of the poetry collection Sons of Salt (BOA Editions, 2024), which explores themes of maternal resistance, structural violence, and absent fathers. It was named one of the \"Best Books for Adults\" by the New York Public Library. She is currently translating Estancias de Emilia Tangoa by Peruvian poet, Ana Varela Tafur. She lives and teaches in Oakland.",
              "event_types": [
                "literary"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/birth-language-sf-book-launch-poetry-conversation-with-aimee-suzara-and-guests",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-08-28T14:05:33.197491Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b6903712a0c0",
              "venue_id": "venue_temescal_arts_center",
              "title": "Improvisation Workshop - First Tuesdays",
              "event_time": "2026-09-13T20:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-09-13T20:00:00",
              "event_date": "2026-09-13",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Improvisation is the key - hosted by Lewis Jordan. Open Workshop and Playground in free improvisation. Spontaneously Assembled Small Groups will collaborate. Come to listen, to be heard, to see, to move. Inviting musicians, poets, dancers, to a non-hierarchical setting to improvise together. Spontaneously composing or conducting, we'll be on a quest for fire.",
              "event_types": [
                "workshop",
                "experimental"
              ],
              "price_info": "Donations encouraged",
              "url": "https://www.temescalartcenter.org/tacmusic.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-08-28T14:09:19.773505Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-09-13",
              "run_id": "run_16a4ae4ccea6",
              "run_label": "Improvisation Workshop - First Tuesdays, Sep 1 – Dec 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e43a9d4b96db",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-09-13",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-09-13",
              "event_date": "2026-09-13",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-09-13",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2156f9c4b7de",
              "venue_id": "venue_old_first_concerts",
              "title": "Kevin Lee Sun & Friends",
              "event_time": "2026-09-13T16:00:00",
              "venue_name": "Old First Concerts",
              "event_start": "2026-09-13T16:00:00",
              "event_date": "2026-09-13",
              "venue_address": "1751 Sacramento St, San Francisco, CA 94109",
              "description": "Streaming and in-person:Click for stream Click to make donation Kevin Lee Sun performs a concert at Old First Presbyterian in SF. His program LOOK TO THIS DAY presents music by two living composers—Hyo-shin Na and Daniel De Togni—centered around the difficulty, ephemerality, and cherishment of life. Sun performs two solo piano works by Na. Then he's joined by composer De Togni on shakuhachi for his own \"Death Poems,\" and soprano Wallis Lucas joins for De Togni’s \"Songs of Becoming,\" both West Coast Premieres.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://www.oldfirstconcerts.org/performance/kevin-lee-sun-friends-look-to-this-day-sunday-september-13-at-4-pm/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_old_first_concerts",
                  "source_name": "Old First Concerts",
                  "fetched_at": "2026-08-28T15:46:04.694996Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-31T10:04:42.136151Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_old_first_concerts|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cd68cebb4c6d",
              "venue_id": "venue_odc_theater",
              "title": "The Machaut Project: Devotion & Desire",
              "event_time": "9/13 2:00PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-09-13T14:00:00",
              "event_date": "2026-09-13",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "classical",
                "live_music",
                "theater"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM0000042vaz2AA",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-08-28T16:07:20.992529Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_955eb90805f6",
              "venue_id": "venue_odc_theater",
              "title": "The Machaut Project: Devotion & Desire",
              "event_time": "9/13 5:00PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-09-13T17:00:00",
              "event_date": "2026-09-13",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "classical",
                "live_music",
                "theater"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM0000042vaz2AA",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-08-28T16:07:20.992529Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3c3cfa260db5",
              "venue_id": "venue_sfmoma",
              "title": "Matisse Landscapes",
              "event_time": "Sunday, Sep 13, 2026 | 10:30 a.m.",
              "venue_name": "SFMoma",
              "event_start": "2026-09-13T10:30:00",
              "event_date": "2026-09-13",
              "venue_address": "151 Third St, San Francisco, CA 94103",
              "description": "Founded in 1976 by Anne Marie Theilen and based in San Francisco’s Bayview neighborhood, SCRAP works at the intersection of the arts, arts education, and the environment. SCRAP’s mission is to make the materials and methods of art making accessible to everyone, helping people transform everyday objects into creative projects that fuel the human spirit, support community vibrancy, and reinforce environmental awareness. At the time of its founding, Theilen oversaw a program that placed professional artists in schools. Unfortunately, there was no budget for materials, so the artists struggled to find supplies. Meanwhile, many local businesses were filling landfills with perfectly usable materials like paper with incorrect logos, fabric samples, industrial discards, and product overruns. Recognizing an opportunity to solve two problems with one solution, Theilen founded SCRAP in 1976. She teamed up with Ruth Asawa, who became the organization’s first board president. Each year, SCRAP’s programs serve over 33,000 people — all while diverting over 200 tons of waste from landfills.",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.sfmoma.org/event/family-film-screening-with-sffilm-shaun-the-sheep-the-beast-of-mossy-bottom/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sfmoma",
                  "source_name": "SFMoma",
                  "fetched_at": "2026-08-28T16:39:30.693329Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfmoma|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_88bf21c760c9",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Flower Piano",
              "event_time": "Sunday, Sep 13, 2026 | 2:00 pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-09-13T14:00:00",
              "event_date": "2026-09-13",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "A cookie is a small piece of data (text file) that a website – when visited by a user – asks your browser to store on your device in order to remember information about you, such as your language preference or login information. Those cookies are set by us and called first-party cookies. We also use third-party cookies – which are cookies from a domain different than the domain of the website you are visiting – for our advertising and marketing efforts. More specifically, we use cookies and other tracking technologies for the following purposes:",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://www.sfsymphony.org/Buy-Tickets/Free-Community/Free-Community-A",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-08-28T19:38:14.129031Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_17e750e943f7",
              "venue_id": "venue_exploratorium",
              "title": "Daytime Members-Only Hours",
              "event_time": "2026-09-13",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-13",
              "event_date": "2026-09-13",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Please consider joining us today ! Members are the backbone of our organization and help ensure the continuity of our mission to create inquiry-based experiences that transform learning worldwide. We can’t wait to see you at the museum.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/member-hours",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-13",
              "run_id": "run_e38dfc952011",
              "run_label": "Daytime Members-Only Hours, Aug 30 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_51c98b84a5bb",
              "venue_id": "venue_exploratorium",
              "title": "Members-Only Film Fest: Project Hail Mary",
              "event_time": "Sun, Sep 13 2026 • 11:30am - 2pm",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-13T11:30:00",
              "event_date": "2026-09-13",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Project Hail Mary (2026, PG-13, 156 minutes)",
              "event_types": [
                "film",
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/members-only-film-fest-project-hail-mary",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f2279dc10ba2",
              "venue_id": "venue_bix",
              "title": "Solo Piano",
              "event_time": "2026-09-13T18:30:00",
              "venue_name": "Bix",
              "event_start": "2026-09-13T18:30:00",
              "event_date": "2026-09-13",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Solo Piano",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Never a cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-08-28T21:10:29.119399Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bix|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_132ccbbcae38",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "Dan & Phil",
              "event_time": "2026-09-13T20:00:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-09-13T20:00:00",
              "event_date": "2026-09-13",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "Dan and Phil finally hard launched and are crash landing in San Francisco with their explosive, unhinged, and unafraid new stage show.",
              "event_types": [
                "theater"
              ],
              "price_info": "From $124",
              "url": "https://www.palaceoffinearts.org/event/dan-phil/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-08-28T21:32:02.715078Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_c02cc8af4849",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Crucial Reggae Sundays | September 13",
              "event_time": "2026-09-13T16:30:00",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-09-13T16:30:00",
              "event_date": "2026-09-13",
              "venue_address": "San Francisco, CA 94118",
              "description": "Crucial Reggae Sundays hosted by DJ Guidance, DJ Sep, and Irie Dole, featuring special guests Monkey Ska.",
              "event_types": [
                "dj_party",
                "latin_world",
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://illuminate.org/event/crucial-reggae-sundays-september-13/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_illuminate_bandshell",
                  "source_name": "Illuminate Bandshell",
                  "fetched_at": "2026-08-28T22:20:33.560084Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-08-30T10:14:46.192640Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_illuminate",
                  "source_name": "Illuminate",
                  "fetched_at": "2026-09-03T14:32:31.098793Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_7c7d89703029",
              "venue_id": "venue_club_fox",
              "title": "Flamenco Entre Amigos",
              "event_time": "2026-09-13T18:00:00",
              "venue_name": "Club Fox",
              "event_start": "2026-09-13T18:00:00",
              "event_date": "2026-09-13",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Sunday September 13thFLAMENCO Entre AmigosDoors 6PM / Show 7PM",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/flamenco-entre-amigos-tickets-1997062566897?aff=ebdsshother&utm_share_source=search_android&sg=16e1edb027acd8850b61a0074384dac86c27663de9d0efdb5cac47857d4d2c2f1f53a0b9d2f3d060c5ab01a17905756693a3bac529a86adbab8696de60db598f7f173e865c0caf8b2ee99678c1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-08-28T22:45:26.741794Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ded7abf5ff11",
              "venue_id": "venue_rhythmix",
              "title": "The Locals: Opening Reception",
              "event_time": "2026-09-13T18:00:00",
              "venue_name": "Rhythmix",
              "event_start": "2026-09-13T18:00:00",
              "event_date": "2026-09-13",
              "venue_address": "2513 Blanding Ave, Alameda, CA 94501",
              "description": "Opening reception for \"The Locals\" exhibit at K Gallery. Exhibit dates listed as September 11 to October 25, 2026.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://www.rhythmix.org/upcoming-exhibits/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rhythmix",
                  "source_name": "Rhythmix",
                  "fetched_at": "2026-08-28T23:14:01.025318Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rhythmix|2026-09-13",
              "run_id": "run_566a8f02098a",
              "run_label": "The Locals: Opening Reception, Sep 11 – Oct 25",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_dff906851ff2",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-09-13",
              "venue_name": "De Young",
              "event_start": "2026-09-13",
              "event_date": "2026-09-13",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-13",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b41b7c65ab0a",
              "venue_id": "venue_punch_line",
              "title": "S. F. COMEDY SHOWCASE",
              "event_time": "Sep 13, 2026 7:00 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-13T19:00:00",
              "event_date": "2026-09-13",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "This long-running weekly showcase at the Punch Line features a dynamic lineup of the San Francisco Bay Area's best up-and-coming and established stand-up comedians.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/s-f-comedy-showcase-san-francisco-california-09-13-2026/event/1C0064B33B64522C",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_896f14615a4f",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "DARK AND DARKER: A DARK COMEDY SHOW",
              "event_time": "Sun Sep 13, 2026 7:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-09-13T19:00:00",
              "event_date": "2026-09-13",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "A themed comedy show featuring comedians performing their sharpest, most unfiltered, and pitch-black material.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/dark-and-darker-a-dark-comedy-san-francisco-california-09-13-2026/event/1C00651025ACAFB4",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1b6abc88d169",
              "venue_id": "venue_san_jose_improv",
              "title": "Concrete",
              "event_time": "Sep 13 6:00pm",
              "venue_name": "San Jose Improv",
              "event_start": "2026-09-13T18:00:00",
              "event_date": "2026-09-13",
              "venue_address": "62 S 2nd St, San Jose, CA 95113",
              "description": "Comedians and podcast co-hosts Concrete and Jerry Garcia team up for a co-headlining night of stand-up comedy. The duo blends high-energy storytelling and relatable punchlines about everyday life and relationships.",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY NOW",
              "url": "https://improv.com/sanjose/event/concrete+%26+jerry+garcia%3a+that%27s+not+me+comedy+tour/14853353/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_improv",
                  "source_name": "San Jose Improv",
                  "fetched_at": "2026-08-29T01:07:49.368865Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_improv|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8b9615f48ded",
              "venue_id": "venue_dresher_ensemble_studio",
              "title": "The Geryon Trio",
              "event_time": "September 13 @ 7:30 pm - 9:30 pm",
              "venue_name": "Dresher Ensemble Studio",
              "event_start": "2026-09-13T19:30:00",
              "event_date": "2026-09-13",
              "venue_address": "2201 Poplar St, Oakland, CA 94607",
              "description": "\"Random Ruminations\" is a work for a \"Geryon Trio\" [“Geryon” is a being with three heads, whose name derives from the ancient Greek words gê (earth) and gêryô (singing)] Drawing on themes of absurdity, chance, and fluidity, JOHANNA POETHIG'S text, image, and oracle project intersects with an aleatoric performance by Chris Brown and Raffi Garabedian to form a collaborative exploration of chance, divination, and spontaneous creation.DANA REASON (piano). Philip Gelb (shakuhachi/electronics), and Kyle Bruckmann (oboe/electronics) premiere a new trio uniting three veterans of the international improvised music scene.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://dresherensemble.org/event/the-geryon-trio-johanna-poehig-chris-brown-rafi-garabedian-dana-reason-philip-gelb-kyle-bruckman/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_paul_dresher_ensemble",
                  "source_name": "Paul Dresher Ensemble",
                  "fetched_at": "2026-08-30T10:03:08.160871Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-31T10:04:42.136151Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dresher_ensemble_studio|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_772d86039cca",
              "venue_id": "venue_shapeshifters",
              "title": "Gravitational Lensing: Feminist Film Dialogues",
              "event_time": "2026-09-13",
              "venue_name": "Shapeshifters",
              "event_start": "2026-09-13",
              "event_date": "2026-09-13",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "Program 17: Family Portraits/Relational Exercises includes a spectrum of diaristic films—from uncanny documentary to autobiographical re-enactments—that manifest different ways filmmakers choose to represent their relationships to family and, more broadly, to home (both literal and conceptual) through cinematic language.",
              "event_types": [
                "film"
              ],
              "price_info": "San Francisco Cinematheque",
              "url": "https://sfcinematheque.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shapeshifters",
                  "source_name": "Shapeshifters",
                  "fetched_at": "2026-08-30T10:04:33.112973Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-09-13",
              "run_id": "run_8afbca984fe1",
              "run_label": "Gravitational Lensing: Feminist Film Dialogues, Sep 9 – Nov 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f13372f554fc",
              "venue_id": "venue_the_independent",
              "title": "TOWA BIRD",
              "event_time": "9.13.2026 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-13T20:00:00",
              "event_date": "2026-09-13",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List The Gentleman Tour Towa Bird Sun, Sep 13 Doors: 7:30 pm | Show: 8:00 pm All Ages Please note - there is a delivery delay set for 2 weeks prior to show. TOWA BIRD Meet & Greet VIP Experience - Meet & greet with Towa Bird - Personal photo opportunity - Autographed commemorative laminate - Specially designed VIP gift item - Priority entry onto GA floor - Pre-doors merch shopping opportunity TOWA BIRD Early Entry VIP Experience - Autographed commemorative laminate - Specially designed VIP gift item - Priority entry onto GA floor - Pre-doors merch shopping opportunity Buy Tickets Share + Google Calendar Related Events Novulent Jun 19 Buy Tickets Mamas Gun Jun 20 Buy Tickets Artists Towa Bird When Towa Bird first dreamed up the title track for her sophomore album Gentleman, the 27-year-old singer/songwriter/guitarist unlocked an entirely new way of moving through the world. A knowing subversion of the old-world archetype, the Hong Kong-born artist’s take on the modern gentleman reimagines the term as an emblem of queer confidence: an exquisite blurring of masculine and feminine, defined by unapologetic swagger and disarming sensitivity. In a daring evolution of her acclaimed debut American Hero (a 2024 LP that inspired Rolling Stone to proclaim that “Towa Bird is the rock & roll firecracker we need right now”), Gentleman unveils that fully embodied identity in a suite of songs both supremely assured and resolutely tender—ultimately marking a profound shift from self-discovery to self-possession. Produced by Patrick Wimberly (MGMT, Blood Orange) and recorded in Brooklyn and Los Angeles, Gentleman strays from the tautly composed alt-pop of American Hero and achieves a thrilling new collision of attitude and atmosphere. By approaching the album with an audacious spontaneity, Towa arrived at the boldest expression yet of her wholly singular artistry. “In a lot of ways this record feels like a conversation with me, and a reflection of my personality and the",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/towa-bird/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-08-31T10:40:49.218190Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bf0a9b39125b",
              "venue_id": "venue_yoshis",
              "title": "KAMASI WASHINGTON",
              "event_time": "September 13, 2026 - 7:00PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-13T19:00:00",
              "event_date": "2026-09-13",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "SOUGHT-AFTER COMPOSER, BAND LEADER AND JAZZ SAXOPHONIST",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$74 - $99",
              "url": "https://yoshis.com/events/sold-out/kamasi-washington/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b3dc39a36fe5",
              "venue_id": "venue_sf_conservatory",
              "title": "Jeff Denson: RJAM Bass",
              "event_time": "2026-09-13",
              "venue_name": "SF Conservatory of Music",
              "event_start": "2026-09-13",
              "event_date": "2026-09-13",
              "venue_address": "50 Oak St, San Francisco, CA 94102",
              "description": "Roots, Jazz, and American Music is a first-of-its-kind program that links a world-class music conservatory to an award-winning jazz concert venue at SFJAZZ. A program for undergraduate and postgraduate students that takes a holistic view of jazz from its inception to its current status, RJAM prepares the next generation of great jazz artists by engaging students in an innovative model of apprenticeship with all-star faculty, including members of the SFJAZZ Collective. Students in the RJAM program have the opportunity to perform in multiple venues in the Bay Area, and to collaborate and learn from some of the top jazz artists on the concert circuit today.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://sfcm.edu/experience/performances/faculty-artist-series-jeff-denson-rjam-bass/20260913",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_conservatory",
                  "source_name": "SF Conservatory of Music",
                  "fetched_at": "2026-08-31T11:29:33.983801Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_conservatory|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6a522384d77e",
              "venue_id": "venue_winters",
              "title": "Sassy Massey's 50th Beach Birthday Bash",
              "event_time": "2026-09-13T15:00:00",
              "venue_name": "Winters",
              "event_start": "2026-09-13T15:00:00",
              "event_date": "2026-09-13",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "Beach birthday celebration featuring Dunk Tank Wizzards, Jello Wrestling, Pin the Tail on the STUD, Speed Dating, and live sets from Magnolia Boulevard, Shark In The Water, and Terminous.",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-08-31T12:39:12.063314Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_winters|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_1fb85e5114fc",
              "venue_id": "venue_presidio_theater",
              "title": "Parsons Dance Company",
              "event_time": "2026-09-13",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-09-13T19:30:00",
              "event_date": "2026-09-13",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "",
              "event_types": [
                "dance"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.presidiotheatre.org/show-details/parsons-dance-company",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-08-31T13:00:36.584647Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-09-13",
              "run_id": "run_3d563b006346",
              "run_label": "Parsons Dance Company, Sep 12 – Sep 13",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_50f819608b23",
              "venue_id": "venue_piedmont_center",
              "title": "For the Love of Art Exhibition",
              "event_time": "2026-09-13T11:00:00",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-09-13T11:00:00",
              "event_date": "2026-09-13",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "Exhibition featuring various artists. Weekends 8/9 - 9/20 (except 8/22 & 8/30).",
              "event_types": [
                "art"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-08-31T13:20:32.956554Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-09-13",
              "run_id": "run_17625c4204a3",
              "run_label": "For the Love of Art Exhibition, Aug 8 – Sep 20",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_237671a4d32e",
              "venue_id": "venue_piedmont_center",
              "title": "Temescal String Quartet",
              "event_time": "2026-09-13T19:00:00",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-09-13T19:00:00",
              "event_date": "2026-09-13",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "Performing quartets by Mozart, Ravel, and the US premiere of a Jane O'Leary composition.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "$25 advance tickets",
              "url": "https://ticketsignup.io/TSQ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-08-31T13:20:32.956554Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8c77e3441e88",
              "venue_id": "venue_ggp_music_concourse",
              "title": "¡Viva Mexico!",
              "event_time": "2026-09-13T13:00:00",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-09-13T13:00:00",
              "event_date": "2026-09-13",
              "venue_address": "San Francisco, CA 94118",
              "description": "The Golden Gate Park Band collaborates with Ballet Folklorico Mexicano de Carlos Moreno for a celebration of Mexican music and dance.",
              "event_types": [
                "dance",
                "latin_world",
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://sfrecpark.org/calendar.aspx?EID=17155",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-08-31T13:28:15.005369Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_f983a74eb823",
              "venue_id": "venue_yerba_buena_center",
              "title": "GaHee Park: Behind the Curtain",
              "event_time": "2026-09-13",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-13",
              "event_date": "2026-09-13",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Park invites us to peek behind the curtain, as she lays claim to her own power as a surrealist painter working across fantasy and intimacy.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/gahee-park-behind-the-curtain/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-13",
              "run_id": "run_5353f80886f6",
              "run_label": "GaHee Park: Behind the Curtain, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_87b6a42b91f3",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dream",
              "event_time": "2026-09-13",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-13",
              "event_date": "2026-09-13",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public art installation commissioned by YBCA and co-sponsored by San Francisco Public Works.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dream-public-art/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-13",
              "run_id": "run_b6a5ba4e8809",
              "run_label": "Dream, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c4e61671f674",
              "venue_id": "venue_yerba_buena_center",
              "title": "SoMa Mahal Kita",
              "event_time": "2026-09-13",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-13",
              "event_date": "2026-09-13",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A message of love for the SoMa neighborhood and community, inspired by weaving practices in the Phillipines and the colors of the Filipino flag.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/soma-mahal-kita-soma-i-love-you-ciriaco-sayoc/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-13",
              "run_id": "run_0c5141fff335",
              "run_label": "SoMa Mahal Kita, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_784cdc184d6e",
              "venue_id": "venue_yerba_buena_center",
              "title": "We Rooted in Flight",
              "event_time": "2026-09-13",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-13",
              "event_date": "2026-09-13",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public artwork inviting passerbyers to join in the journey of collective flight",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/we-fly-for-a-liberated-we-we-rooted-in-flight/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-13",
              "run_id": "run_1d34139aedcf",
              "run_label": "We Rooted in Flight, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f668010ae92b",
              "venue_id": "venue_biscuits__blues",
              "title": "Derrick Dove and the Peacekeepers",
              "event_time": "2026-09-13T18:30:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-09-13T18:30:00",
              "event_date": "2026-09-13",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "Derrick Dove got his start on drums in his father's oldies band at age ten, then fell hard for the blues of Stevie Ray Vaughan and Muddy Waters and switched to guitar for good. Decades later he fronts one of the hardest working bands in the South, stacking number one iTunes blues albums and a growing pile of hardware. Expect blistering slide, big harmonies, and a bandleader who plays every note like it counts.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://biscuitsandblues.com/find-a-show/20260913derrickdoveandthepeacekeepers",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-08-31T16:25:33.031111Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_1853dacd3827",
              "venue_id": "venue_elis_mile_high",
              "title": "Downy, Quinine & Praying",
              "event_time": "Sun, Sep 13, 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-09-13",
              "event_date": "2026-09-13",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "Downy, Quinine, Praying Sun, Sep 13 | Eli's Mile High Club Buy Tickets Time & Location Sep 13, 2026, 7:00 PM – 11:00 PM Eli's Mile High Club, 3629 Martin Luther King Jr Way, Oakland, CA 94609, USA About the event Doors 7pm - Music 8pm 21+ Downy - JAPAN - Quinine Praying Show More Tickets Ticket type General Admission Sale ends Sep 13, 10:30 PM Price $15.00 +$0.38 ticket service fee Quantity 0 Total $0.00 Checkout Share this event",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.elismilehighclub.com/events/downy-quinine-praying",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-08-31T16:36:06.503526Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2ea753bf9435",
              "venue_id": "venue_chase_center",
              "title": "Premium Suites",
              "event_time": "2026-09-13",
              "venue_name": "Chase Center",
              "event_start": "2026-09-13",
              "event_date": "2026-09-13",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "At Select-A-Suite on Thursday, September 17, 2026, not only will you have the opportunity to reserve your suites before they are released to the public, but attendees can also enjoy complimentary food and beverage tastings throughout the event, network with fans and business professionals, and have the opportunity to capture a photo with the Larry O'Brien Trophies.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://chasecenter.com/premium-experiences/premium-suites/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-08-31T17:38:13.687686Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-09-13",
              "run_id": "run_bed5be826f7c",
              "run_label": "Premium Suites, Sep 10 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1132d1c187ca",
              "venue_id": "venue_first_lutheran_pa",
              "title": "Rally Day",
              "event_time": "2026-09-13T10:00:00",
              "venue_name": "First Lutheran PA",
              "event_start": "2026-09-13T10:00:00",
              "event_date": "2026-09-13",
              "venue_address": "600 Homer Ave, Palo Alto, CA 94301",
              "description": "After worship all ages come together for a service project to help struggling people in the area.",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "https://www.flcpa.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_first_lutheran_pa",
                  "source_name": "First Lutheran PA",
                  "fetched_at": "2026-08-31T18:13:13.604079Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_first_lutheran_pa|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ad43b04272f2",
              "venue_id": "venue_tupelo",
              "title": "My Blue Soul",
              "event_time": "Sunday September 13th 5:00PM - 8:00PM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-13T17:00:00",
              "event_date": "2026-09-13",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "Hosted by Andrew Coutti and Young Blake on drums and bass,, this is the definitive Jam in San Francisco. Each week there will be a different special guest vocalist, as well as myriad other exceptional local talent popping in no doubt. Talk to either host before the gig if you're interested in performing. We take this shit seriously though, so bring your chops :)",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2de394e729e6",
              "venue_id": "venue_tupelo",
              "title": "Sunday Artist Series",
              "event_time": "Sunday September 13th 8:00PM - 12:00AM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-13T20:00:00",
              "event_date": "2026-09-13",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "A weekly live music dance party throw down hosted by Shawn Stein with an all-pro house band and different guest vocalists each week. This is the perfect way to cap off your weekend!",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_700181389975",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Kevin Farley",
              "event_time": "2026-09-13 2026-09-12T19:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-09-13",
              "event_date": "2026-09-13",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Special event comedy show featuring Kevin Farley with Kris Fried and Sophia Garrow.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Price not found in the specific listing.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/131524",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-08-31T18:20:03.865483Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-09-13",
              "run_id": "run_cfb4ac84a2c8",
              "run_label": "Kevin Farley, Sep 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_bc969d86a53e",
              "venue_id": "venue_the_knockout",
              "title": "Reggae Sunday: Champion",
              "event_time": "Sun 13 Sep ― 9:00pm",
              "venue_name": "The Knockout",
              "event_start": "2026-09-13T21:00:00",
              "event_date": "2026-09-13",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "REGGAE SUNDAY : CHAMPION REGGAE DANCE PARTY! DANCEHALL, DUB, LOVERS ROCK, AND MORE ON VINYL WITH DJ OUTLAW YOKO, DJ SPLIFF SKANKIN’, DJ TRUE VERSE, AND SPECIAL GUESTS MONTHLY • 9PM TO CLOSE • NO COVER • 21+",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/x1d5afa54f59?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-09-02T10:33:16.877437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e723ae79e94b",
              "venue_id": "venue_924_gilman",
              "title": "Acoustic Chill Sunday",
              "event_time": "Sunday, September 13, 2026 6:00pm-9:30pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-09-13T18:00:00",
              "event_date": "2026-09-13",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "A laid-back Sunday music event at 924 Gilman featuring acoustic performances.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$$12 / $15",
              "url": "http://maps.google.com/?q=$$12 / $15",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-09-02T11:13:59.237531Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_03069f8777b9",
              "venue_id": "venue_cow_palace",
              "title": "Just Between Friends Consignment Sale",
              "event_time": "2026-09-13T10:00:00",
              "venue_name": "Cow Palace",
              "event_start": "2026-09-13T10:00:00",
              "event_date": "2026-09-13",
              "venue_address": "2600 Geneva Ave, Daly City, CA 94014",
              "description": "Shop thousands of gently used and new children's and maternity items at bargain prices during this popular community consignment event at the Cow Palace. Families can find great deals on clothing, shoes, baby gear, toys, and nursery essentials all under one roof.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cow_palace",
                  "source_name": "Cow Palace",
                  "fetched_at": "2026-09-02T11:32:56.966259Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cow_palace|2026-09-13",
              "run_id": "run_8189de239dca",
              "run_label": "Just Between Friends Consignment Sale, Sep 11 – Sep 13",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_68ae3221807a",
              "venue_id": "venue_discretion_brewing",
              "title": "The Owls",
              "event_time": "2026-09-13",
              "venue_name": "Discretion Brewing",
              "event_start": "2026-09-13T17:30:00",
              "event_date": "2026-09-13",
              "venue_address": "2703 41st Ave Ste A, Soquel, CA 95073",
              "description": "Live Music 3-5pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_discretion_brewing",
                  "source_name": "Discretion Brewing",
                  "fetched_at": "2026-09-02T11:35:03.120781Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_discretion_brewing|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fd5e01966547",
              "venue_id": "venue_madrone_art_bar",
              "title": "SPIKE’S OPEN MIC",
              "event_time": "September 13 @ 5:00 pm - 8:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-13T17:00:00",
              "event_date": "2026-09-13",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "SPIKE’S OPEN MIC. San Francisco’s local music open mic afternoon! Each afternoon we welcome in local talent for an opportunity to shine. 5-8pm / Hosted by Carla Tutu.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/spikes-open-mic-2022-02-13-2022-03-13-2023-01-08-2025-12-14-2026-08-09/2026-09-13/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f4975f348371",
              "venue_id": "venue_madrone_art_bar",
              "title": "SUNDAY B3 SESSIONS",
              "event_time": "September 13 @ 9:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-13T21:00:00",
              "event_date": "2026-09-13",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Sunday B3 Sessions Hosted by Adam Shulman and Mike Olmos Swinging soul jazz with a jam session to follow 9pm-Close No Cover",
              "event_types": [
                "jazz",
                "live_music"
              ],
              "price_info": "No Cover",
              "url": "https://madroneartbar.com/event/spikes-open-mic-sunday-b3-sessions-2025-11-23/2026-09-13/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_49da14fc5733",
              "venue_id": "venue_piedmont_piano_company",
              "title": "Alan Broadbent and Harvie S",
              "event_time": "2026-09-13T17:00:00",
              "venue_name": "Piedmont Piano Co",
              "event_start": "2026-09-13T17:00:00",
              "event_date": "2026-09-13",
              "venue_address": "1728 San Pablo Ave, Oakland, CA 94612",
              "description": "Jazz Piano Masters Series: Grammy Award-winning pianist Alan Broadbent and bassist Harvie S perform an evening of jazz standards and original compositions.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "General Admission: $30 in advance / $35 at the door",
              "url": "https://piedmontpiano.com/calendar/2026/9/13/alan-broadbent-harvie-s",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_piano_company",
                  "source_name": "Piedmont Piano Co",
                  "fetched_at": "2026-09-03T10:22:09.546608Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_piedmont_piano_company|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_19683211f4f8",
              "venue_id": "venue_moes_alley",
              "title": "Magic Sword",
              "event_time": "2026-09-13T20:00:00",
              "venue_name": "Moe's Alley",
              "event_start": "2026-09-13T20:00:00",
              "event_date": "2026-09-13",
              "venue_address": "1535 Commercial Way, Santa Cruz, CA 95065",
              "description": "Show: 8:00 PM",
              "event_types": [
                "live_music",
                "electronic",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_moes_alley",
                  "source_name": "Moe's Alley",
                  "fetched_at": "2026-09-03T10:23:10.512238Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_moes_alley|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b230492c5e84",
              "venue_id": "venue_kuumbwa_jazz",
              "title": "Ballaké Sissoko & Piers Faccini",
              "event_time": "2026-09-13T19:00:00",
              "venue_name": "Kuumbwa Jazz Center",
              "event_start": "2026-09-13T19:00:00",
              "event_date": "2026-09-13",
              "venue_address": "320-2 Cedar St, Santa Cruz, CA 95060",
              "description": "Two decades after their first ever collaboration, British-Italian folk songwriter, Piers Faccini, and Malian kora virtuoso, Ballaké Sissoko, return with a mesmerizing album.",
              "event_types": [
                "live_music",
                "folk",
                "latin_world"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kuumbwa_jazz",
                  "source_name": "Kuumbwa Jazz Center",
                  "fetched_at": "2026-09-03T10:24:11.929813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kuumbwa_jazz|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1afc0452695a",
              "venue_id": "venue_black_cat",
              "title": "The Sinatra Songbook",
              "event_time": "2026-09-13T19:00:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-13T19:00:00",
              "event_date": "2026-09-13",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n9:15 show: Bar @ 6:00, Doors @ 8:30\n\n\n\n\nTimeless vocal jazz with classic swing, effortless charm, and the unmistakable spirit of Sinatra.\n\n\n\n\nAfter sold-out engagements across New York, Oslo, Canada, Mexico, Cincinnati, and San Francisco, acclaimed jazz vocalist and recording artist Richard Cortez brings the timeless music of Frank Sinatra to the stage with an all-star band. \n\n\n\n\nFeaturing beloved classics including Come Fly With Me, Witchcraft, and I’ve Got You Under My Skin, alongside rare gems from Sinatra’s early years with the Tommy Dorsey Orchestra, Richard’s performances celebrate the elegance, swing, and emotional depth that made Sinatra one of the most influential vocalists of the 20th century.\n\n\n\n\nBand Lineup:\n\nRichard Cortez — vocals\n\nAll-Star Band — featuring special guest musicians",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $30 , $40 , $50",
              "url": "https://blackcatsf.turntabletickets.com/shows/12456/2026-09-13",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_40a086a4b155",
              "venue_id": "venue_black_cat",
              "title": "The Sinatra Songbook: Richard Cortez & Sam Hirsh Trio",
              "event_time": "2026-09-13T21:15:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-13T21:15:00",
              "event_date": "2026-09-13",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n9:15 show: Bar @ 6:00, Doors @ 8:30\n\n\n\n\nTimeless vocal jazz with classic swing, effortless charm, and the unmistakable spirit of Sinatra.\n\n\n\n\nAfter sold-out engagements across New York, Oslo, Canada, Mexico, Cincinnati, and San Francisco, acclaimed jazz vocalist and recording artist Richard Cortez brings the timeless music of Frank Sinatra to the stage with an all-star band. \n\n\n\n\nFeaturing beloved classics including Come Fly With Me, Witchcraft, and I’ve Got You Under My Skin, alongside rare gems from Sinatra’s early years with the Tommy Dorsey Orchestra, Richard’s performances celebrate the elegance, swing, and emotional depth that made Sinatra one of the most influential vocalists of the 20th century.\n\n\n\n\nBand Lineup:\n\nRichard Cortez — vocals\n\nAll-Star Band — featuring special guest musicians",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $30 , $40 , $50",
              "url": "https://blackcatsf.turntabletickets.com/shows/12456/2026-09-13",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a80d72b61f34",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Lara Louise",
              "event_time": "Sunday, September 13, 2026 @ 5pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-13T17:00:00",
              "event_date": "2026-09-13",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Sunday, September 13, 2026 @ 5pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/lara-louise-6/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_76da1e12614c",
              "venue_id": "venue_bach_dds",
              "title": "Dear Mr. Bennett",
              "event_time": "Sun, 9/13/2026 @ 4:30 PM",
              "venue_name": "Bach Dancing",
              "event_start": "2026-09-13T16:30:00",
              "event_date": "2026-09-13",
              "venue_address": "311 Mirada Road, Half Moon Bay, CA 94019",
              "description": "bw + bsl && x + aw - ah / 2 - cw >= bsl) {\n                c.style.left = x + aw - ah / 2 - cw;\n            } else {\n                c.style.left = x + ah / 2;\n            }\n            if (y + ch + ah / 2 > bh + bst && y + ah / 2 - ch >= bst) {\n                c.style.top = y + ah / 2 - ch;\n            } else {\n                c.style.top = y + ah / 2;\n            }\n            c.style.visibility = \"visible\";\n            }\n            }\n            }\n\n            function msoCommentHide(com_id) {\n                if (msoBrowserCheck()) {\n                    c = document.all(com_id);\n                    if (null != c && null == c.length) {\n                        c.style.visibility = \"hidden\";\n                        c.style.left = -1000;\n                        c.style.top = -1000;\n                    }\n                }\n            }\n\n            function msoBrowserCheck() {\n                ms = navigator.appVersion.indexOf(\"MSIE\");\n                vers = navigator.appVersion.substring(ms + 5, ms + 6);\n                ie4 = (ms > 0) && (parseInt(vers) >= 4);\n                return ie4;\n            }\n            if (msoBrowserCheck()) {\n                document.styleSheets.dynCom.addRule(\".msocomanchor\", \"background: infobackground\");\n                document.styleSheets.dynCom.addRule(\".msocomoff\", \"display: none\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"visibility: hidden\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"position: absolute\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"top: -1000\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"left: -1000\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"width: 33%\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"background: infobackground\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"color: infotext\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"border-top: 1pt solid threedlightshadow\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"border-right: 2pt solid threedshadow\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"border-bottom: 2pt solid threedshadow\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"border-left: 1pt solid threedlightshadow\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"padding: 3pt 3pt 3pt 3pt\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"z-index: 100\");\n            }\n            // -->\n        \n    \n    \n        \n            bw + bsl && x + aw - ah / 2 - cw >= bsl) {\n                c.style.left = x + aw - ah / 2 - cw;\n            } else {\n                c.style.left = x + ah / 2;\n            }\n            if (y + ch + ah / 2 > bh + bst && y + ah / 2 - ch >= bst) {\n                c.style.top = y + ah / 2 - ch;\n            } else {\n                c.style.top = y + ah / 2;\n            }\n            c.style.visibility = \"visible\";\n            }\n            }\n            }\n\n            function msoCommentHide(com_id) {\n                if (msoBrowserCheck()) {\n                    c = document.all(com_id);\n                    if (null != c && null == c.length) {\n                        c.style.visibility = \"hidden\";\n                        c.style.left = -1000;\n                        c.style.top = -1000;\n                    }\n                }\n            }\n\n            function msoBrowserCheck() {\n                ms = navigator.appVersion.indexOf(\"MSIE\");\n                vers = navigator.appVersion.substring(ms + 5, ms + 6);\n                ie4 = (ms > 0) && (parseInt(vers) >= 4);\n                return ie4;\n            }\n            if (msoBrowserCheck()) {\n                document.styleSheets.dynCom.addRule(\".msocomanchor\", \"background: infobackground\");\n                document.styleSheets.dynCom.addRule(\".msocomoff\", \"display: none\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"visibility: hidden\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"position: absolute\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"top: -1000\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"left: -1000\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"width: 33%\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"background: infobackground\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"color: infotext\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"border-top: 1pt solid threedlightshadow\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"border-right: 2pt solid threedshadow\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"border-bottom: 2pt solid threedshadow\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"border-left: 1pt solid threedlightshadow\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"padding: 3pt 3pt 3pt 3pt\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"z-index: 100\");\n            }\n            // -->\n        \n    \n    \n    Sponsored by Debra DeMartini\n    Grammy-winning\n            producer, guitarist and vocalist John Pizzarelli celebrates\n            the centennial of iconic singer Tony Bennett with a pair of heartfelt\n            tributes. Dear Mr. Bennett, released March 3, 2026 via Green Hill\n            Music, features Pizzarelli’s trio with bassist Mike Karn and pianist Isaiah J.\n            Thompson performing timeless songs made famous by Bennett. A 5-song EP will\n            follow on August 7, the week of Bennett’s 100th birthday\n\n     \n\n    For world-renowned\n            guitarist and vocalist John Pizzarelli, Bennett was more than simply an\n            influence. Pizzarelli’s late father, the revered guitarist Bucky Pizzarelli,\n            was a frequent sideman for the legendary singer, appearing on albums including 1960’s\n                To My Wonderful One and 1969’s I’ve Gotta Be Me. John got his own\n            opportunity to accompany Bennett for a radio broadcast that also featured\n            pianist Ralph Sharon and bassist Jay Leonhart.\n\n     \n\n    The admiration was\n            mutual – Bennett could be found in the audience for a number of Pizzarelli’s\n            performances and sketched his likeness on two occasions. The charming artwork\n            that graces the cover of Pizzarelli’s heartfelt new tribute album, Dear Mr.\n            Bennett, was rendered during an engagement at Feinstein’s nightclub.\n\n     \n\n    John\n            Pizzarelli – Vocals, Guitar; Isaiah J. Thompson – Piano; Michael Karn –\n            Bass\n    Artist Website here\n    Video 1\n    Video 2",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$60/$50 Adults;$23/$12 Student",
              "url": "https://plugin.vbotickets.com/v5.0/event.asp?eid=202267&s=f940c74f-f780-4fcb-ac4c-a97565f2a7ec",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bach_dds",
                  "source_name": "Bach Dancing",
                  "fetched_at": "2026-09-03T11:57:58.328412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bach_dds|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4983df24f776",
              "venue_id": "venue_pacific_film_archive",
              "title": "Exhibition Tour: Some Particular Heaven",
              "event_time": "Sep 13, 2026 2 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-13T14:00:00",
              "event_date": "2026-09-13",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "If you have any questions about accessibility or need accommodations to attend this event, please contact us at bampfa@berkeley.edu or (510) 642-1412 (Wed–Sun, 11 AM–7 PM) as soon as you can. Advance notice helps us fulfill your request.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://bampfa.org/exhibition-tour-some-particular-heaven",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1e975abc5dba",
              "venue_id": "venue_pacific_film_archive",
              "title": "Danton’s Death",
              "event_time": "Sep 13, 2026 3:30 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-13T15:30:00",
              "event_date": "2026-09-13",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Alice Diop’s Danton’s Death brings to light the struggles of a young Black actor from the rough Parisian suburbs, versed in the classics yet only offered “street” roles. In Towards Tenderness, she follows four young Black men “acting” masculine in the streets, with more complicated dreams unexpressed.",
              "event_types": [
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/dantons-death",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cd3c9ec368de",
              "venue_id": "venue_pacific_film_archive",
              "title": "New York, New York",
              "event_time": "Sep 13, 2026 7 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-13T19:00:00",
              "event_date": "2026-09-13",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Martin Scorsese’s astonishing musical melodrama conjures the golden age of Hollywood with Liza Minnelli and Robert De Niro as artists brought together by music and tested by success.",
              "event_types": [
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/new-york-new-york",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c119d1e8c2ac",
              "venue_id": "venue_4_star_theater",
              "title": "The Lego Movie",
              "event_time": "13 September 2026 10:00 AM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-13T10:00:00",
              "event_date": "2026-09-13",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "An ordinary LEGO figurine Emmet who always follows the rules, is mistakenly identified as an extraordinary being and the key to saving the world. He finds himself drafted into a fellowship of strangers who are on a mission to stop an evil tyrant's plans to conquer the world. Unfortunately for Emmet, he is hopelessly and hilariously unprepared for such a task, but he'll give it his all nonetheless.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/lego-movie-sun",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0c13b6829aba",
              "venue_id": "venue_pier_23",
              "title": "BLUES JAM",
              "event_time": "Sunday, September 13, 2026 4:00 PM\n              \n              7:00 PM",
              "venue_name": "Pier 23",
              "event_start": "2026-09-13T16:00:00",
              "event_date": "2026-09-13",
              "venue_address": "23 The Embarcadero,San Francisco, CA 94111",
              "description": "Join us for a raucous afternoon filled with jammin’ blues sounds brought to you by the inimitable blues drummer Sean Donoghue .  Professional musicians & budding artists are welcome to jump in to the musical fray. We are supporting local talent on all levels. Grab a drink, a bite and be ready to dance. Bring your friends, we can’t wait to see you.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.pier23cafe.com/events/2026/6/7/blues-jam-4-7pm-8sknd-pw3yt-mljdz-6az9k-sa7ge",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pier_23",
                  "source_name": "Pier 23",
                  "fetched_at": "2026-09-03T13:40:31.659066Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pier_23|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7a88b04cff8b",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Twango SF",
              "event_time": "13 September 2026",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-13",
              "event_date": "2026-09-13",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Twango SF plays vibrant gypsy jazz and hot swing in the enduring style of Django Reinhardt. Enjoy an evening of acoustic guitar swing paired with wine and small bites.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-09-03T13:50:21.930604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d279aab0ded1",
              "venue_id": "venue_henry_j_kaiser",
              "title": "Last Shot with Baron Davis",
              "event_time": "September 13 9:30 AM",
              "venue_name": "Henry J Kaiser Center",
              "event_start": "2026-09-13T09:30:00",
              "event_date": "2026-09-13",
              "venue_address": "10 10th St, Oakland, CA 94607",
              "description": "A community screening of the film \"Last Shot\" featuring a fireside conversation with former NBA star Baron Davis and a youth basketball clinic.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://www.thehenryj.org/events/last-shot-film-screening-fireside-chat-with-baron-davis",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_henry_j_kaiser",
                  "source_name": "Henry J Kaiser Center",
                  "fetched_at": "2026-09-03T13:59:14.778279Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_henry_j_kaiser|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_27e0c93234cd",
              "venue_id": "venue_henry_j_kaiser",
              "title": "Yolanda Adams & Friends",
              "event_time": "September 13 4:00 PM",
              "venue_name": "Henry J Kaiser Center",
              "event_start": "2026-09-13T16:00:00",
              "event_date": "2026-09-13",
              "venue_address": "10 10th St, Oakland, CA 94607",
              "description": "Come to our Oakland event space and immerse yourself in captivating performances from today’s artists, performers, and thought leaders at our upcoming events.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.thehenryj.org/events/yolanda-adams-leonard-bailey-friends",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_henry_j_kaiser",
                  "source_name": "Henry J Kaiser Center",
                  "fetched_at": "2026-09-03T13:59:14.778279Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_henry_j_kaiser|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_19f5dc026c5a",
              "venue_id": "venue_salesforce_park",
              "title": "Journey Across America: Math Quest",
              "event_time": "2026-09-13T11:00:00",
              "venue_name": "Salesforce Park",
              "event_start": "2026-09-13T11:00:00",
              "event_date": "2026-09-13",
              "venue_address": "425 Mission St, San Francisco, CA 94105",
              "description": "An outdoor, escape-room-style Math Quest through famous cities, iconic landmarks, spectacular national parks, and natural wonders at Central Lawn. Families will work together to solve creative math and logic puzzles.",
              "event_types": [
                "community",
                "sports"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_salesforce_park",
                  "source_name": "Salesforce Park",
                  "fetched_at": "2026-09-03T14:07:03.174205Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_salesforce_park|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2502e4f7678f",
              "venue_id": "venue_pono_hawaiian",
              "title": "The CALI Project 10th Anniversary",
              "event_time": "2026-09-13T16:00:00",
              "venue_name": "Pono Hawaiian Grill",
              "event_start": "2026-09-13T16:00:00",
              "event_date": "2026-09-13",
              "venue_address": "120 Union St, Santa Cruz, CA 95060",
              "description": "Community celebration for The CALI Project's 10th anniversary featuring live Hawaiian music by 4-time Grammy Award winner George Kahumoku Jr. and Dave Abrahams.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Free",
              "url": "https://thecaliproject.org/10-years-with-cali",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pono_hawaiian",
                  "source_name": "Pono Hawaiian Grill",
                  "fetched_at": "2026-09-03T14:31:35.285310Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_pono_hawaiian|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_651873727d0a",
              "venue_id": "venue_hillside_club",
              "title": "Tango Practica",
              "event_time": "Sep 13, 2026, 7:00 PM – 10:00 PM",
              "venue_name": "Hillside Club",
              "event_start": "2026-09-13T19:00:00",
              "event_date": "2026-09-13",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "Join us for a free Argentine tango practica at the Hillside Club in Berkeley!",
              "event_types": [
                "dance",
                "community"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/1997617733415?aff=oddtdtcreator",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-09-04T10:10:10.864332Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hillside_club|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_76434b309713",
              "venue_id": "venue_poor_house_bistro",
              "title": "Justin Howl",
              "event_time": "2026-09-13T16:00:00",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-09-13T16:00:00",
              "event_date": "2026-09-13",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-09-04T10:11:13.938872Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fddd071b37c4",
              "venue_id": "venue_sailing_goat",
              "title": "Andrea Prichett & Friends",
              "event_time": "2026-09-13T17:00:00",
              "venue_name": "Sailing Goat",
              "event_start": "2026-09-13T17:00:00",
              "event_date": "2026-09-13",
              "venue_address": "1900 Stenmark Dr, Richmond, CA 94801",
              "description": "Andrea Prichett & Friends Sun, Sep 13 | Sailing Goat at Point San Pablo Harbor Folk/Folk Rock/Singer-songwriter Time & Location Sep 13, 2026, 5:00 PM – 8:00 PM Sailing Goat at Point San Pablo Harbor, 1900 Stenmark Dr, Richmond, CA 94801, USA About the event In an evening with Andrea Prichett and Friends, you can expect to be taken on something of a journey. From tender ballads to raucous political anthems, the performance moves between the personal and the political and sometimes both at the same time. The rich resonance of Andrea's voice carries the message of her original lyrics on a versatile instrumental foundation provided by Deborah Hungerford on piano and keyboards, Mike Derrick on guitar, and Alexis Tsamoudakis on bass. The genre defying tunes range from blues, folk, rock and even jazz at times. While Andrea's influences include singer-songwriters (Patti Griffin, Tracy Chapman, Joni Mitchell, James Taylor,etc) she also loves to dance and the R&B, Motown sound is also woven into the mix. Formerly of the Berkeley based, nationally-known feminist folk trio \"Rebecca Riots\", Andrea has released several albums. In recent times, Andrea released a solo album \"The Frame\" and continues to write and sing about the issues of the day. A natural storyteller and political activist, Andrea combines anecdotes with her carefully crafted songs to inspire and uplift her audiences. Her fans describe the experience of going to her shows as part political, part spiritual, part humorous and TOTALLY engaging! www.andreaprichett.com Show More Share this event",
              "event_types": [
                "live_music",
                "folk",
                "rock",
                "rnb_soul_funk"
              ],
              "price_info": "Free",
              "url": "https://www.sailinggoatrestaurant.com/event-details/andrea-prichett-friends",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sailing_goat",
                  "source_name": "Sailing Goat",
                  "fetched_at": "2026-09-04T10:13:07.105977Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sailing_goat|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_e649d2e0eef9",
              "venue_id": "venue_mvcpa",
              "title": "Smuin Contemporary Ballet: French Kiss",
              "event_time": "Sunday, September 13, 2026 2:00  PM",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-09-13T14:00:00",
              "event_date": "2026-09-13",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "Smuin Contemporary Ballet",
              "event_types": [
                "dance"
              ],
              "price_info": "",
              "url": "https://tickets.mvcpa.com/eventperformances.asp?evt=776",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mvcpa",
                  "source_name": "MV Center for the Performing Arts",
                  "fetched_at": "2026-09-04T10:13:59.609171Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mvcpa|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_af18bde23d77",
              "venue_id": "venue_kilowatt",
              "title": "The Clarke Nova, Motorhome & Haardvark",
              "event_time": "Sun 13 Sep ― 1:00pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-13T13:00:00",
              "event_date": "2026-09-13",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Keep track of what’s coming up by saving events, sharing them with friends, or even listening to new music in the app.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/R86d67c78e4e?pid=ff10e59d",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-09-04T10:33:38.052132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5dd8f1570ef5",
              "venue_id": "venue_kilowatt",
              "title": "The Mirror & Middle Dog",
              "event_time": "Sun 13 Sep ― 7:00pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-13T19:00:00",
              "event_date": "2026-09-13",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Keep track of what’s coming up by saving events, sharing them with friends, or even listening to new music in the app.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/ia211af94c1e?pid=ff10e59d",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-09-04T10:33:38.052132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_445c49317f22",
              "venue_id": "venue_specs",
              "title": "Mr. Lucky & The Cocktail Party (jazz and swing)",
              "event_time": "Sunday, September 13, 2026 7:00 PM - 10:00 PM",
              "venue_name": "Specs' Twelve Adler Museum Cafe",
              "event_start": "2026-09-13T19:00:00",
              "event_date": "2026-09-13",
              "venue_address": "12 William Saroyan Pl, San Francisco, CA 94133",
              "description": "Mr. Lucky & The Cocktail Party is a legendary San Francisco lounge-jazz and swing ensemble fronted by performance artist and crooner Mr. Lucky (a.k.a. Pierre Merkl III). “The dean of postmodern lounge jazz swing singers,” Mr. Lucky brings his ace group of local luminaries–The Cocktail Party–to Specs. Assembled originally around 1998 by Bay Area musicians Joshua Raoul Brody and Ralph Carney, the backing band features a rotating cast of local jazz veterans. Their repertoire includes playful live mash-ups, eccentric jazz re-stylings of the American Songbook, and off-beat humor tailored to vintage San Francisco watering holes. Mr. Lucky & The Cocktail Party are deeply rooted in historic San Francisco neighborhoods like the Tenderloin and Lower Nob Hill. They have performed at iconic local spots including Stookey's Blue Room, the Tenderloin Museum, Pier 23, and the Cadillac Hotel. Pierre Merkl was also the subject of a 2014 documentary titled Getting Lucky.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.specsbarsf.com/events/mr-lucky-the-cocktail-party",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_specs",
                  "source_name": "Specs' Twelve Adler Museum Cafe",
                  "fetched_at": "2026-09-04T10:38:49.428018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_specs|2026-09-13",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-09-14": {
          "date": "2026-09-14",
          "updated_at": "2026-09-04T10:10:15.673978Z",
          "events": [
            {
              "event_id": "evt_dca8243a3551",
              "venue_id": "venue_castro_theater",
              "title": "HAUTE & FREDDY",
              "event_time": "September 14, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-14T20:00:00",
              "event_date": "2026-09-14",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Haute & Freddy is the dazzling brainchild of Michelle Buzz and Lance Shipp. The duo released their first single “Scantily Clad,” sparking a devoted fanbase. The song has landed them on Spotify playlists Lorem, Obsessed, and the cover of Fresh Finds paving the way for their second single “Anti-Superstar,” which has also been embraced with equal support and looks on multiple Spotify playlists leading to them being named on Spotify’s Artists To Watch for 2026 . Their third single “Shy Girl” is currently their most streamed track and has been licensed 5 times over for film & tv projects.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://thecastro.com/events/haute-freddy-260914",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-06-02T13:14:05.988982Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_119a64aacca5",
              "venue_id": "venue_mojo_lounge",
              "title": "Johnny's Lounge Open Mic",
              "event_time": "2026-09-14T20:00:00",
              "venue_name": "Mojo Lounge",
              "event_start": "2026-09-14T20:00:00",
              "event_date": "2026-09-14",
              "venue_address": "3714 Peralta Blvd, Fremont, CA 94536",
              "description": "Johnny's Lounge Open Mic (at the former Mojo Lounge). If you ever wanted to try comedy and check out the Bay Area's upcoming talent, come on out to this local watering hole in Fremont! Hosted by Alex Torres.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Free",
              "url": "https://www.meetup.com/south-bay-comedy-showcases/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mojo_lounge",
                  "source_name": "Mojo Lounge",
                  "fetched_at": "2026-06-16T11:13:49.827449Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mojo_lounge|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_d88bb579dd1d",
              "venue_id": "venue_august_hall",
              "title": "ISAIAH FALLS",
              "event_time": "sep 14 8pm",
              "venue_name": "August Hall",
              "event_start": "2026-09-14T20:00:00",
              "event_date": "2026-09-14",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.augusthallsf.com/tm-event/isaiah-falls/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-06-30T20:46:01.815540Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-06T11:10:01.105806Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_august_hall|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e10091316bca",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "The Spits, FLESHIES, The Pranks, dj Fuzz",
              "event_time": "sep 14 9pm",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-14T21:00:00",
              "event_date": "2026-09-14",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Punk rock, garage punk, synthpunk, Punk, bedroom garage punk surf, spinning 70s punk",
              "event_types": [
                "dj_party",
                "live_music",
                "rock"
              ],
              "price_info": "$30",
              "url": "http://www.bottomofthehill.com/20260914.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-08-09T10:54:41.013216Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_112cbee06a05",
              "venue_id": "venue_ivy_room",
              "title": "Alphabet Soup 30th Anniversary",
              "event_time": "Monday Sep 14 7:00 PM",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-14T19:00:00",
              "event_date": "2026-09-14",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "ivy room presents - Genre - West Coast 90s hip-hop, deep-groove jazz, acid jazz",
              "event_types": [
                "live_music",
                "jazz",
                "hiphop_rap",
                "experimental"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/190111",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-07-31T12:32:32.572739Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_da29fe9be3c7",
              "venue_id": "venue_the_chapel",
              "title": "Bobby Bare Jr.",
              "event_time": "sep 14 8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-09-14T20:00:00",
              "event_date": "2026-09-14",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "all ages; $38 seated",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$25",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_chapel|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_83557fb5b433",
              "venue_id": "venue_the_riptide",
              "title": "Open Mic by Charlie Kaupp",
              "event_time": "September 14 7:00 PM - September 15 12:00 AM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-14T19:00:00",
              "event_date": "2026-09-14",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "Best of The Bay Award Winning Charlie Kaupp's Riptide Open Mic !\n\nThe Riptide Wants to Hear Ya Sing! In person! Inside the bar!\n\n\nOpen Mic Night returns to The Riptide in person, every Monday night. Sign up in the bar starting at 7pm. Music starts at 8 and goes until 11pm.\n\n\n\nRules and format:\n\n\n\n• You get two songs or 10 minutes, whichever comes first\n• This is a music-only open mic, so no spoken word, comedy, poetry, dramatic readings, etc (unless you put it to music)\n• All genres, covers, and originals are accepted and encouraged\n• Since it's in a bar, it's a 21+ event. Sorry kids!\n• Sign-ups are first-come, first-served, but you can pick your slot\n• Come early and have a drink, stick around late and support the other performers\n• You may bring your own mic and your own instrument if you choose, or RESPECTFULLY use our house mics, guitar, or piano.",
              "event_types": [
                "live_music"
              ],
              "price_info": "cover",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3c0415e55688",
              "venue_id": "venue_mabuhay_gardens",
              "title": "ZINGGFLOWER MONDAYS",
              "event_time": "2026-09-14 6:30 PM",
              "venue_name": "The Mab",
              "event_start": "2026-09-14T18:30:00",
              "event_date": "2026-09-14",
              "venue_address": "443 Broadway, San Francisco, CA 94133",
              "description": "GamperDrums brings an all-star band to The Mab for blues and beyond—funk, soul, jazz, and San Francisco psychedelia—continuing the fearless musical exploration inspired by Drew Zingg.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://alerttheglobe.com/custom/Chris_Gamper",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mabuhay_gardens",
                  "source_name": "The Mab",
                  "fetched_at": "2026-08-22T11:20:57.510347Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mabuhay_gardens|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b47dd695b140",
              "venue_id": "venue_crepe_place",
              "title": "Crepe Place Family Jam",
              "event_time": "2026-09-14",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-14T20:00:00",
              "event_date": "2026-09-14",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "FREE",
              "url": "https://thecrepeplace.com/shows-list/crepe-place-family-jam-6-to-9pm-on-the-bar-stage-free-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fc1e1c7c30fe",
              "venue_id": "venue_abbott_square",
              "title": "COMEDY NIGHT",
              "event_time": "Monday, September 14, 2026 7:00 PM - 9:00 PM",
              "venue_name": "Abbott Square Market",
              "event_start": "2026-09-14T19:00:00",
              "event_date": "2026-09-14",
              "venue_address": "725 Front St, Santa Cruz, CA 95060",
              "description": "Come hang out in the garden and have some laughs, EVERY MONDAY NIGHT.\n\nFeaturing comedians from all over the Bay Area and beyond.",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "https://www.abbottsquaremarket.com/events/yxy2temjm5rphl6xxk5cfchb7a47mj-rskts-a2lpf-zp9fd",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_abbott_square",
                  "source_name": "Abbott Square Market",
                  "fetched_at": "2026-08-22T12:39:51.694804Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_abbott_square|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_efc84f122358",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Alice for Wonderland",
              "event_time": "2026-09-14",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-14",
              "event_date": "2026-09-14",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-14",
              "run_id": "run_304a2c902844",
              "run_label": "Alice for Wonderland, Aug 22 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_f38c7a249c56",
              "venue_id": "venue_sc_shakespeare_grove",
              "title": "Audrey Stanley Grove: Surf City All-Stars",
              "event_time": "2026-09-14 September 14 @ 7:00 pm - 9:00 pm",
              "venue_name": "Audrey Stanley Grove",
              "event_start": "2026-09-14T19:00:00",
              "event_date": "2026-09-14",
              "venue_address": "501 Upper Park Rd, Santa Cruz, CA 95065",
              "description": "The Surf City All-Stars are the only “tribute” group in which every member has played in The Beach Boys' band.  Experience an unforgettable night of music featuring all the favorite […]",
              "event_types": [
                "rock",
                "live_music"
              ],
              "price_info": "$40",
              "url": "https://www.santacruz.org/upcoming-event/audrey-stanley-grove-surf-city-all-stars/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_visit_santa_cruz_county",
                  "source_name": "Visit Santa Cruz County",
                  "fetched_at": "2026-08-22T18:34:05.859446Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sc_shakespeare_grove|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "address"
            },
            {
              "event_id": "evt_70c69538686a",
              "venue_id": "venue_scpl_downtown",
              "title": "Aptos Bridge Club",
              "event_time": "September 14 2026 10:30am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-14T10:30:00",
              "event_date": "2026-09-14",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Join a supportive writing group to share work, give feedback, and grow your craft. All genres and experience levels welcome. Meets 2nd & 4th Mondays, 12:30?3 PM at Aptos Library.",
              "event_types": [
                "community",
                "literary"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/14433699",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ace6348c5a5f",
              "venue_id": "venue_scpl_downtown",
              "title": "Discovery Zone Playgroup",
              "event_time": "September 14 2026 10:30am - 11:30am",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-14T10:30:00",
              "event_date": "2026-09-14",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "A time for free play for children with a participating adult.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16790394",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9a5d5b3fd81c",
              "venue_id": "venue_scpl_downtown",
              "title": "Storytime and Stay & Play at Downtown",
              "event_time": "September 14 2026 10:30am - 11:30am",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-14T10:30:00",
              "event_date": "2026-09-14",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Join us for Storytime for ages 0-5 featuring songs, rhymes, lap bounces, and stories. After Storytime, stay for Stay & Play!",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16935488",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_03243ba73ca3",
              "venue_id": "venue_scpl_downtown",
              "title": "Monthly Monday Meditation",
              "event_time": "September 14 2026 11:30am - 12:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-14T11:30:00",
              "event_date": "2026-09-14",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "In this practice group, you'll get an introduction to many different approaches to meditation and receive guidance on which practices might be best suited for you. Second Monday of the month meetings.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16729328",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fa1846def9b0",
              "venue_id": "venue_scpl_downtown",
              "title": "Loops at the Library: Knit/Crochet",
              "event_time": "September 14 2026 12:00pm - 1:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-14T12:00:00",
              "event_date": "2026-09-14",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Join us every Monday at the Felton Branch for a knitting party. All you need to do is bring some yarn and knitting needles. All ages are welcome.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17007822",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_600ee3acd976",
              "venue_id": "venue_scpl_downtown",
              "title": "Encompass Outreach Worker Office Hours",
              "event_time": "September 14 2026 1:00pm - 3:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-14T13:00:00",
              "event_date": "2026-09-14",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Connecting people to social services, county mental health and more.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16558638",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e43ca77683d8",
              "venue_id": "venue_scpl_downtown",
              "title": "In-person Tech Help @ Aptos",
              "event_time": "September 14 2026 1:00pm - 3:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-14T13:00:00",
              "event_date": "2026-09-14",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Are you stuck with a technology question? You can make a free appointment with a tech savvy library staff member!",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16997607",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a11d6af4cc84",
              "venue_id": "venue_scpl_downtown",
              "title": "Tales to Tails at Garfield Park",
              "event_time": "September 14 2026 3:30pm - 4:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-14T15:30:00",
              "event_date": "2026-09-14",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Practice reading to a certified therapy dog! Registration is required.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16941699",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bc73f74f4888",
              "venue_id": "venue_scpl_downtown",
              "title": "The Santa Cruz Poetry Project",
              "event_time": "September 14 2026 4:00pm - 5:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-14T16:00:00",
              "event_date": "2026-09-14",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "A poetry workshop anyone who would like to establish a writing practice in a safe and encouraging environment.",
              "event_types": [
                "workshop",
                "literary"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15564991",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_da438ee3c250",
              "venue_id": "venue_the_fireside",
              "title": "Ambassador Tasting Industry Specials",
              "event_time": "SEP 14 2026",
              "venue_name": "The Fireside",
              "event_start": "2026-09-14",
              "event_date": "2026-09-14",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Enjoy an industry night at The Fireside featuring special product tastings, drink specials, and visits from brand ambassadors. It is a great chance for hospitality workers and cocktail enthusiasts to connect over featured spirits.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.thefiresidelounge.com/#!/e/other-jun-20-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-08-24T11:04:43.394724Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fireside|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8c278b115ce3",
              "venue_id": "venue_the_freight__salvage",
              "title": "Bobby McFerrin: Circlesongs",
              "event_time": "2026-09-14T11:30:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-14T11:30:00",
              "event_date": "2026-09-14",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Account Login Cart Time remaining: 00:00 Enter Promo Code Promo Code (Optional) Activate Code Promo Code View Cart 0 Your cart has expired Your order contained expired items and your shopping cart has been emptied. Close Enter Promo Code Bobby McFerrin and MOTION: Circlesongs, Monday, September 14, 2026 12:00PM Event Summary Bobby McFerrin and Motion Read More Hide 10-time Grammy-winner Bobby McFerrin 's mission is to get the world singing. So, he's singing with MOTION almost every Monday afternoon right here at The Freight to welcome even more voices into the circle! Join Bobby and Bay Area’s MOTION featuring Bryan Dyer, David Worm , and Destani Wolf . They will lead Circlesongs at noon and encourage everyone to bring a spirit of adventure, curiosity, trust, and joy. Let it free your voice. Find your place in the circle. “You get people together and get them singing, and you instantly knock down all the walls – the creeds, the gender, age and race differences, everything. You’re all one at that point, lifting your voices.” – Bobby McFerrin Additional Options View Full Calendar Item details Date Monday, September 14, 2026 12:00PM Name Bobby McFerrin and MOTION: Circlesongs Description Please Note: Donor discount applied at checkout. Interested in donating? Click here. Tickets: $40.00 (includes fees) Doors: 11:30AM; Show: 12:00PM Please Note: Donor discount applied at checkout. Interested in donating? Click here. Tickets: $40.00 (includes fees) Doors: 11:30AM; Show: 12:00PM Select your tickets Available Groups Select Other Sold Out! General Admission Please select a group to display sections. Choose an available section to see ticket options Quantity for General Admission General Admission $35.00 ticket + $5.00 fees Price Quantity 0 1 2 3 4 5 6 7 8 9 10 Quantity General Admission Price Quantity 0 1 2 3 4 5 6 7 8 9 10 Additional information Americans with Disabilities Act Accessible Seating Accessible seating is only to be reserved for guests with disabilities and the",
              "event_types": [
                "live_music"
              ],
              "price_info": "$40\n(INCLUDES ALL FEES)",
              "url": "https://secure.thefreight.org/15627/16134",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9e333ab08404",
              "venue_id": "venue_the_freight__salvage",
              "title": "Open Mic with Jamey Williams",
              "event_time": "2026-09-14T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-14T19:00:00",
              "event_date": "2026-09-14",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Account Login Cart Time remaining: 00:00 Enter Promo Code Promo Code (Optional) Activate Code Promo Code View Cart 0 Your cart has expired Your order contained expired items and your shopping cart has been emptied. Close Enter Promo Code Community Mondays: Open Mic with Jamey Williams, September 14, 2026 7:30PM Event Summary From September 14, 2026 7:30PM to December 7, 2026 7:30PM 2026 CM: Fall Read More Hide In the spirit of early days of The Freight, we’re embracing a more intimate, café-style setting-- salon vibes, spontaneous connection, and up-close musical magic. All genres of music-making are welcome, and we’ll have a limited selection of instruments, mics, and amps on hand. Whether you're a longtime performer or new to the mic, come help us write the next chapter in a space that honors where it all began. All genres of music-making are welcome. We’ll have a limited selection of instruments and mics on hand as well as DI boxes and playback capability for backing tracks. Choose from the list below to jump directly to another offering of Select Another Event September 14, 2026 7:30PM September 21, 2026 7:30PM September 28, 2026 7:30PM October 5, 2026 7:30PM October 19, 2026 7:30PM October 26, 2026 7:30PM November 2, 2026 7:30PM November 9, 2026 7:30PM November 16, 2026 7:30PM November 30, 2026 7:30PM December 7, 2026 7:30PM Go to selected item Additional Options View Full Calendar Item details Date September 14, 2026 7:30PM Name Community Mondays: Open Mic with Jamey Williams Select your tickets Available Groups Select Other Sold Out! Available Sections Class Registration: $5.00 Please select a group to display sections. Choose an available section to see ticket options Quantity for Class Registration Sliding Scale Enter any amount more than $5.00 Price $ Quantity 0 1 2 3 4 5 6 7 8 9 10 Quantity Sliding Scale Enter any amount more than $5.00 Price $ Quantity 0 1 2 3 4 5 6 7 8 9 10 Add to Cart Choose from the list below to jump directly to another offering of S",
              "event_types": [
                "community"
              ],
              "price_info": "SLIDING SCALE: $5.00+",
              "url": "https://secure.thefreight.org/16027/16028",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0b499b4ee715",
              "venue_id": "venue_sfjazz_lab",
              "title": "100 Years of Coltrane Jam Session",
              "event_time": "2026-09-14 7:00 PM",
              "venue_name": "SFJAZZ Lab",
              "event_start": "2026-09-14T19:00:00",
              "event_date": "2026-09-14",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "These monthly open jam sessions provide a space for all Bay Area musicians to come together and perform in an inclusive, multigenerational setting. Each session features a musical director and curated repertoire. We invite musicians of all levels and ages to sign up, and each session is free and open to the public - no reservations or tickets needed to attend! PERSONNEL TBA",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/education/sfjam/100-years-of-coltrane-terrence-brewer/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_lab|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_983cda98e7ed",
              "venue_id": "venue_dawn_club",
              "title": "MIDNIGHT BLUE ORGAN TRIO",
              "event_time": "Monday, September 14, 2026 8:00 PM 11:00 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-09-14T20:00:00",
              "event_date": "2026-09-14",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "The Midnight Blue Organ Trio is a hard swinging group inspired by Jazz organ greats Jimmy Smith, Larry Young and Dr. Lonnie Smith. The trio's repertoire includes compositions by contemporary artists Larry Goldings, Peter Bernstein and John Scofield. All members of the group are veterans of the Bay Area Jazz scene and take joy in keeping the sound of the classic Jazz Organ Trio alive and well. \n\n\n  \n#block-8bf33e1e1459d2f102d2 {\n    \n    \n    \n  }\n\n  #block-8bf33e1e1459d2f102d2 .sqs-html-content {\n    \n    }\n\n  #block-8bf33e1e1459d2f102d2 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n\n\n\n  \n  \n\n  \n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-8bf33e1e1459d2f102d2 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-8bf33e1e1459d2f102d2 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/gqr1vh0krxe39ixo2mhb11pee1ecvr-3zz2x",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-08-28T15:32:50.415811Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0893a87d145b",
              "venue_id": "venue_bix",
              "title": "Jazz Duo",
              "event_time": "2026-09-14T19:00:00",
              "venue_name": "Bix",
              "event_start": "2026-09-14T19:00:00",
              "event_date": "2026-09-14",
              "venue_address": "56 Gold St, San Francisco, CA 94133",
              "description": "Jazz Duo",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Never a cover charge",
              "url": "https://bixrestaurant.com/music/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bix",
                  "source_name": "Bix",
                  "fetched_at": "2026-08-28T21:10:29.119399Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bix|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cb7d8908d1a3",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "Dan & Phil",
              "event_time": "2026-09-14T20:00:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-09-14T20:00:00",
              "event_date": "2026-09-14",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "Second San Francisco performance of Dan and Phil's Hard Launch World Tour at Palace of Fine Arts.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.palaceoffinearts.org/event/dan-phil-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-08-28T21:32:02.715078Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_5ccc3742635e",
              "venue_id": "venue_ivy_room",
              "title": "Happy Hour",
              "event_time": "Sep 14 4:00 PM",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-14T16:00:00",
              "event_date": "2026-09-14",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Happy Hour - No Fuss, just good times! EVERY MONDAY! Mon Sep 14 Minimum age: 21 and over Show time: 4:00 PM Doors open: 4:00 PM Free Description 🍻 Mondays Are For Happy Hour Starting this July, we are officially throwing open the doors every Monday at 4:00 PM for a good old-fashioned happy hour. No stage production, no fuss—just good drinks, excellent company, and Chaos behind the bar holding down the vibe. From now on, when you think of Mondays, think of us. Mondays are for Hangin' Out. Hope to see you all very soon!",
              "event_types": [
                "community"
              ],
              "price_info": "FREE",
              "url": "https://www.ivyroom.com/#/events/194932",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-08-31T11:55:01.170393Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ac0081048f1e",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC NIGHT",
              "event_time": "Mon Sep 14 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-14T19:00:00",
              "event_date": "2026-09-14",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "A legendary Monday night tradition at the Hotel Utah Saloon, this open mic is a cornerstone of San Francisco's singer-songwriter community. Local and visiting artists sign up via a random drawing to perform a song on the historic stage.",
              "event_types": [
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/OPEN-MIC-NIGHT/690189?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-08-31T12:12:52.447528Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0fa4f2cc6b9e",
              "venue_id": "venue_chase_center",
              "title": "Premium Suites",
              "event_time": "2026-09-14",
              "venue_name": "Chase Center",
              "event_start": "2026-09-14",
              "event_date": "2026-09-14",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "At Select-A-Suite on Thursday, September 17, 2026, not only will you have the opportunity to reserve your suites before they are released to the public, but attendees can also enjoy complimentary food and beverage tastings throughout the event, network with fans and business professionals, and have the opportunity to capture a photo with the Larry O'Brien Trophies.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://chasecenter.com/premium-experiences/premium-suites/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-08-31T17:38:13.687686Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-09-14",
              "run_id": "run_bed5be826f7c",
              "run_label": "Premium Suites, Sep 10 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_98bf01748884",
              "venue_id": "venue_tupelo",
              "title": "THE San Francisco Invitational Jam",
              "event_time": "Monday September 14th 9:00PM - 1:00AM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-14T21:00:00",
              "event_date": "2026-09-14",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "Hosted by Andrew Coutti and Young Blake on drums and bass,, this is the definitive Jam in San Francisco. Each week there will be a different special guest vocalist, as well as myriad other exceptional local talent popping in no doubt. Talk to either host before the gig if you're interested in performing. We take this shit seriously though, so bring your chops :)",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d0c0bffd920e",
              "venue_id": "venue_the_knockout",
              "title": "Krazy For Karaoke",
              "event_time": "Mon 14 Sep ― 9:00pm",
              "venue_name": "The Knockout",
              "event_start": "2026-09-14T21:00:00",
              "event_date": "2026-09-14",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "KRAZY FOR KARAOKE! KARAOKE FREEKS UNITE! CLIMB ON STAGE, SCREAM OUT YOUR BEST JAM AND FUFILL YOUR ROCK STAR DREAMS! • EVERY MONDAY IS KRAZY FOR KARAOKE AT THE KNOCKOUT! • 9PM TO CLOSE • NO COVER • 21+",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/Oad977bbbbfa?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-09-02T10:33:16.877437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7418da6af5c9",
              "venue_id": "venue_discretion_brewing",
              "title": "Keg Of Honor Mondays",
              "event_time": "2026-09-14",
              "venue_name": "Discretion Brewing",
              "event_start": "2026-09-14T17:30:00",
              "event_date": "2026-09-14",
              "venue_address": "2703 41st Ave Ste A, Soquel, CA 95073",
              "description": "$6 Pints From A Select Keg All Day",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_discretion_brewing",
                  "source_name": "Discretion Brewing",
                  "fetched_at": "2026-09-02T11:35:03.120781Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_discretion_brewing|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_042d01b7312b",
              "venue_id": "venue_madrone_art_bar",
              "title": "Motown on Mondays",
              "event_time": "September 14 @ 7:00 pm - 1:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-14T19:00:00",
              "event_date": "2026-09-14",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "It’s only Monday if you treat it like one! DJ Gordo Cabeza and weekly guests play originals, exclusive remixes and close relatives of your favorite Motown songs. The most talked about night in town! Starting at 7pm. Doors 4pm – 2am / 21 & up w/ID $5 cover after 8pm",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$5 cover",
              "url": "https://madroneartbar.com/event/motown-on-mondays-79-2025-12-01-2026-04-27/2026-09-14/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f04b6d4c422e",
              "venue_id": "venue_littlefield_concert_hall",
              "title": "Prison and Time & Short Films",
              "event_time": "Monday, September 14, 2026 at 5:00 PM PDT",
              "venue_name": "Littlefield Hall",
              "event_start": "2026-09-14T17:00:00",
              "event_date": "2026-09-14",
              "venue_address": "5000 MacArthur Blvd, Oakland, CA 94613",
              "description": "CALENDAR Upcoming Events Past Events Home / Calendar / Prison and Time | KosherSoul | Brewing Stew | I Was Thinking of You — Oakland International Film Festival Prison and Time | KosherSoul | Brewing Stew | I Was Thinking of You — Oakland International Film Festival Oakland – Film/Movie Monday, September 14, 2026, 5:00 PM M14-202 Music Building Littlefield Concert Hall, M14-Lobby Music Building Tickets Presented by the Oakland International Film Festival Sponsored by Mills Performing Arts & Northeastern University Open to the Public Tickets: $17.85 — Registration requested Free with a Northeastern University ID (limited tickets available at the door) Prison and Time Director: Evan Bode, Marvin Wade Runtime: 00:06:49 Filmmaker Evan Bode animates excerpts of an essay by writer & activist Marvin Wade, who speaks personally about his 25 years of incarceration—and the growth he achieved in spite of, not because of, the inhumane prison system around him. This collaboration was produced by Project Mend, an organization in Central New York which celebrates the lives and creative work of incarcerated and formerly incarcerated people as well as other individuals impacted by the criminal legal system. KosherSoul Director: Ilja Sarro Runtime: 00:13:00 KosherSoul is a documentary that follows the intense two-day creation of a ground breaking, first of its kind pop-up dinner led by culinary historian and author Michael Twitty at a Black-owned restaurant in Southern California. Bringing together a diverse team of chefs of color, this Silver Telly Award-winning short film chronicles the physical and emotional labor required to transform a non-kosher restaurant into a fully kosher kitchen while preparing a historic communal meal rooted in African American, Jewish, and diasporic culinary traditions. Brewing Stew – Calvin Keys – Life of Guitar Director: Isaac Pingree Runtime: 00:30:00 Now narrated from beyond the grave, this film lets Calvin Keys look back on his career and make sense",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://performingarts.oakland.northeastern.edu/event-detail?eventId=1415564089",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_littlefield_concert_hall",
                  "source_name": "Littlefield Hall",
                  "fetched_at": "2026-09-03T10:16:56.434298Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_littlefield_concert_hall|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ae85a5011e8e",
              "venue_id": "venue_littlefield_concert_hall",
              "title": "After 24 Years",
              "event_time": "Monday, September 14, 2026 at 8:00 PM PDT",
              "venue_name": "Littlefield Hall",
              "event_start": "2026-09-14T20:00:00",
              "event_date": "2026-09-14",
              "venue_address": "5000 MacArthur Blvd, Oakland, CA 94613",
              "description": "CALENDAR Upcoming Events Past Events Home / Calendar / After 24 Years | Niki Tomi Beto | Assalti Frontali – A Tale of Resistance — Oakland International Film Festival After 24 Years | Niki Tomi Beto | Assalti Frontali – A Tale of Resistance — Oakland International Film Festival Oakland – Film/Movie Monday, September 14, 2026, 8:00 PM M52-101 Lisser Hall Holland Theater, M14-202 Music Building Littlefield Concert Hall Tickets Presented by the Oakland International Film Festival Sponsored by Mills Performing Arts & Northeastern University Open to the Public Tickets: $17.85 — Registration requested Free with a Northeastern University ID (limited tickets available at the door) After 24 Years Director: Dune Strickland, Yumo Lu Runtime: 00:09:11 After 24 years behind bars, Marco Duncan is released back into a changed world. Niki Tomi Beto Director: Jon Ayon Runtime: 00:18:00 Haunted by the Nahua deity Tlazolteotl, 4 cousins in Northeast LA try to protect each other from the violence and family strife threatening to tear them apart. Niki, Tomi, Beto, and Ernie are 4 close-knit cousins growing up in North-east LA. As Ernie gets increasingly involved with his gang, he tries to maintain a caring and protective role with the younger Niki, Tomi, and Beto. The boys’ tight-knit relationships unravel when the Nahua goddess of refuse and regeneration, Tlazolteotl, arrives to intervene in their everyday lives. Assalti Frontali – A Tale of Resistance Director: Paolo Fazzini, Francesco Principini Runtime: 01:50:00 2023 marked the 50th anniversary of the birth of hip hop culture and rap music in the United States. ‘A tale of resistance” celebrates the band that first recorded an Italian rap album in 1990, Assalti Frontali, which is one of the representative and pioneering groups of politicized rap in Italy. Aftermore than thirty years, the band’s leader Militant A (real name Luca Mascini), is still the same and he tells his story as never before, portraying his human and artistic parab",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://performingarts.oakland.northeastern.edu/event-detail?eventId=1415564090",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_littlefield_concert_hall",
                  "source_name": "Littlefield Hall",
                  "fetched_at": "2026-09-03T10:16:56.434298Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_littlefield_concert_hall|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_59b14b9d6a61",
              "venue_id": "venue_kuumbwa_jazz",
              "title": "John Pizzarelli",
              "event_time": "2026-09-14T19:00:00",
              "venue_name": "Kuumbwa Jazz Center",
              "event_start": "2026-09-14T19:00:00",
              "event_date": "2026-09-14",
              "venue_address": "320-2 Cedar St, Santa Cruz, CA 95060",
              "description": "Guitarist and singer John Pizzarelli has been hailed by the Boston Globe for “reinvigorating the Great American Songbook”",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kuumbwa_jazz",
                  "source_name": "Kuumbwa Jazz Center",
                  "fetched_at": "2026-09-03T10:24:11.929813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kuumbwa_jazz|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_871fa9a1fa25",
              "venue_id": "venue_z_space",
              "title": "Karaoke Nightz @ Z: Lobster Edition",
              "event_time": "2026-09-14T19:00:00",
              "venue_name": "Z Space",
              "event_start": "2026-09-14T19:00:00",
              "event_date": "2026-09-14",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "A Fundraiser for Killing My Lobster's Residency at Z Space. Hosted By Chris Steele AKA Polly Amber Ross.",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-09-03T10:55:35.787344Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_z_space|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4c7619dd137b",
              "venue_id": "venue_local_edition",
              "title": "Le Jazz Hot Quartet",
              "event_time": "September 14, 2026 8:00 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-09-14T20:00:00",
              "event_date": "2026-09-14",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "This ensemble of accomplished and versatile musicians celebrates the music of Django Reinhardt and Stephane Grappelli’s pioneering Quintette du Hot Club de France. The HCSF borrows the instrumentation of violin, bass, and guitars from the original Hot Club while breathing new life into the music with innovative arrangements of classic tunes and original compositions from the group’s superb lead guitarist, Paul Mehling. With a swinging rhythm section, the group never fails to surprise and delight.Paul PAZZO Mehling- Solo Guitar, Vocals, LeaderIsabelle Fontaine- Rhythm Guitar, VocalsEvan Zeppo Price- ViolinDexter DeWi Williams- String Bass",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/sww2t44gg6yypae-agl3s-k5tht-pyx2s-bd34e-zpyka-l75ee-6azc4-ht7r8",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-09-03T12:59:31.047351Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2e363364118c",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Flavio Souza",
              "event_time": "14 September 2026",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-14",
              "event_date": "2026-09-14",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Multi-instrumentalist Flavio Souza brings a versatile repertoire of blues, pop, and jazz to the wine bar stage. Settle in for an evening of smooth live melodies alongside your favorite pour.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-09-03T13:50:21.930604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-14",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-09-15": {
          "date": "2026-09-15",
          "updated_at": "2026-09-04T10:39:45.168498Z",
          "events": [
            {
              "event_id": "evt_1d3863ec9f4c",
              "venue_id": "venue_greek_theatre",
              "title": "JOHNNY BLUE SKIES & THE DARK CLOUDS",
              "event_time": "September 15, 2026 7:00 pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-09-15T19:00:00",
              "event_date": "2026-09-15",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "Mutiny For The Masses 2026 Tour\nAn Evening With",
              "event_types": [
                "live_music"
              ],
              "price_info": "PRESALE 4/9",
              "url": "https://thegreekberkeley.com/events/johnny-blue-skies-260915",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-04-07T10:55:48.132614Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_greek_theatre|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e8bc1cd5a5ea",
              "venue_id": "venue_california_theatre",
              "title": "Don Giovanni - Opera San José",
              "event_time": "2026-09-15T19:30:00",
              "venue_name": "California Theatre",
              "event_start": "2026-09-15T19:30:00",
              "event_date": "2026-09-15",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "Relive the epic adventure on the big screen as Symphony San Jose performs John Williams's iconic, Oscar-winning score live. This special concert event brings the beloved cinematic masterpiece to life with full orchestral accompaniment.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-06-23T13:09:42.892074Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_symphony_san_jose",
                  "source_name": "Symphony San Jose",
                  "fetched_at": "2026-06-28T03:08:41.619469Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_california_theatre|2026-09-15",
              "run_id": "run_285788e23a8b",
              "run_label": "Don Giovanni - Opera San José, Sep 13 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a0d5ba4dd37f",
              "venue_id": "venue_regency_ballroom",
              "title": "Starbomb, Epic Rap Battles Of History",
              "event_time": "sep 15 8pm",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-09-15T20:00:00",
              "event_date": "2026-09-15",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Probably The Only Tour Ever — with Epic Rap Battles of History",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theregencyballroom.com/events/detail?event_id=1447644",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-25T10:40:49.247198Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-06-29T11:36:25.735100Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a37d8dd01d41",
              "venue_id": "venue_ivy_room",
              "title": "The Obsessed",
              "event_time": "Tuesday Sep 15 7:00 pm ivy room presents THE OBSESSED genre - heavy metal, stoner rock, doom PURCHASE TICKETS",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-15T19:00:00",
              "event_date": "2026-09-15",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "ivy room presents - genre - heavy metal, stoner rock, doom",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/187085",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-06-30T12:17:32.380701Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-30T18:59:56.104919Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1c11580ec637",
              "venue_id": "venue_the_warfield",
              "title": "Squeeze, Adam Ant, Haircut 100",
              "event_time": "sep 15 7pm",
              "venue_name": "The Warfield",
              "event_start": "2026-09-15T19:00:00",
              "event_date": "2026-09-15",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "TRIED, TESTED AND TRIXIES",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.thewarfieldtheatre.com/events/detail/1434899",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-12T11:45:29.263581Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-07-15T10:24:12.708121Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e7b5d81b1235",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "The Spits",
              "event_time": "sep 15 9pm",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-15T21:00:00",
              "event_date": "2026-09-15",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Punk rock, garage punk, synthpunk, Punk, garage, punk, Latin, surf, spinning 70s punk",
              "event_types": [
                "dj_party",
                "live_music",
                "rock"
              ],
              "price_info": "$30",
              "url": "http://www.bottomofthehill.com/20260915.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-08-09T10:54:41.013216Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_9d3af864e4a7",
              "venue_id": "venue_little_hill_lounge",
              "title": "Edgetone Records 35th Anniversary",
              "event_time": "9/15/2026 8:00 PM",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-09-15T20:00:00",
              "event_date": "2026-09-15",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "8pm to 10:30pm, JAZZ ON TUESDAYS - EDGETONE RECORDS 35th Anniversary Showcase, Calendar: Outsound Presents, Location: Little Hill Lounge, 10753 San Pablo Ave, El Cerrito, CA 94530, USA, September 15, 2026",
              "event_types": [
                "live_music",
                "experimental",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23328",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-14T10:07:47.535282Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_outsound",
                  "source_name": "Outsound",
                  "fetched_at": "2026-08-19T10:25:57.063350Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_97143a9241dc",
              "venue_id": "venue_924_gilman",
              "title": "No Right",
              "event_time": "sep 15 6pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-09-15T18:00:00",
              "event_date": "2026-09-15",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "A hardcore showcase at 924 Gilman headlined by No Right alongside supporting guest acts.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$12/$15",
              "url": "http://maps.google.com/?q=$$12/$15",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-09-02T11:13:59.237531Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_17a19016c3c8",
              "venue_id": "venue_the_riptide",
              "title": "Eileen's Punk Rock and Schlock Karaoke",
              "event_time": "September 15 9:30 PM - September 16 12:30 AM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-15T21:30:00",
              "event_date": "2026-09-15",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4bdcd7960a36",
              "venue_id": "venue_gray_area",
              "title": "In-Person Intensive Course",
              "event_time": "09/15/2026",
              "venue_name": "Gray Area",
              "event_start": "2026-09-15",
              "event_date": "2026-09-15",
              "venue_address": "2665 Mission St, San Francisco, CA 94110",
              "description": "A long time touring musician with the band Caribou , Ryan also produces futuristic techno music under the moniker Taraval , makes modular ambient music in the live electronic duo Bathing , and has a long running collaboration with Jeremy Greenspan of the Junior Boys, both producing experimental electronic music and running the label Geej. He produced a collaborative performance of a 1973 graphics score by avant-garde composer Frank McCarty called Tactus Tempus, a controlled improvisational process for 9 audio visual performers live at Gray Area. He is an expert level user of Ableton and Max For Live, VCV Rack (virtual modular synthesis environment), numerous hardware instruments and an accomplished guitar player.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://grayarea.org/event/in-person-intensive-course-machines-ideas-ableton-live-12/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_gray_area",
                  "source_name": "Gray Area",
                  "fetched_at": "2026-08-22T11:08:17.231968Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_gray_area|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2b8a9f4bf9b8",
              "venue_id": "venue_crepe_place",
              "title": "Dig It! Funk Night with Trianna Feruza",
              "event_time": "2026-09-15",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-15T20:00:00",
              "event_date": "2026-09-15",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "FREE",
              "url": "https://thecrepeplace.com/shows-list/shirleys-gig-dave-egan-patti-maxine-bob-basa-bill-bosch-tuesday-october-21-from-530-to-730pm-on-the-garden-stage-free",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_22ce6deb4ae2",
              "venue_id": "venue_verdi_club",
              "title": "The Woodchopper's Ball",
              "event_time": "2026-09-15T21:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-09-15T21:00:00",
              "event_date": "2026-09-15",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.verdiclub.net/events-calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-08-22T14:55:24.428239Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_verdi_club|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a61bc8ed3e40",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Alice for Wonderland",
              "event_time": "2026-09-15",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-15",
              "event_date": "2026-09-15",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-15",
              "run_id": "run_304a2c902844",
              "run_label": "Alice for Wonderland, Aug 22 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_80b7968e15c6",
              "venue_id": "venue_scpl_downtown",
              "title": "Mobile Health Clinic",
              "event_time": "September 15 2026 9:00am - 3:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-15T09:00:00",
              "event_date": "2026-09-15",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Dignity Mobile Wellness Clinic provides evaluations, screenings, and treatment and connects you to services that support physical and mental health on 1st & 3rd Tuesdays. Hrs: 9-12 & 1-3. Bilingual.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15417010",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_39d06f9b2940",
              "venue_id": "venue_scpl_downtown",
              "title": "Backgammon @ the Library",
              "event_time": "September 15 2026 10:00am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-15T10:00:00",
              "event_date": "2026-09-15",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Join us Tuesdays at Aptos Library to learn, play, and compete in Backgammon! All skill levels welcome - enjoy strategy, fun, and friendly competition in a relaxed social setting.",
              "event_types": [
                "sports",
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/14474607",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_24c8d2ed52d5",
              "venue_id": "venue_scpl_downtown",
              "title": "In-person Tech Help @ La Selva Beach",
              "event_time": "September 15 2026 10:00am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-15T10:00:00",
              "event_date": "2026-09-15",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Are you stuck with a technology question? You can make a free appointment with a tech savvy library staff member!",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15222556",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3f6766207d9d",
              "venue_id": "venue_scpl_downtown",
              "title": "Baby Time and Stay & Play",
              "event_time": "September 15 2026 10:30am - 11:30am",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-15T10:30:00",
              "event_date": "2026-09-15",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Baby Story Time is a sweet introduction to stories, songs, rhymes, and lap play, thoughtfully designed to nurture early literacy and bonding.",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15728217",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6111a70da2a8",
              "venue_id": "venue_scpl_downtown",
              "title": "Toddler Time @ Live Oak",
              "event_time": "September 15 2026 11:00am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-15T11:00:00",
              "event_date": "2026-09-15",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Come join Librarian Emily for stories, songs, and lots of fun for toddlers and their caregivers in our beautiful, newly-renovated Scotts Valley Library Branch every Tuesday at 11am.",
              "event_types": [
                "community",
                "literary",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17067540",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cc1999b8c3ef",
              "venue_id": "venue_scpl_downtown",
              "title": "Volunteer Housing Navigators",
              "event_time": "September 15 2026 11:30am - 1:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-15T11:30:00",
              "event_date": "2026-09-15",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Housing navigation services for people experiencing homelessness.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15564880",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ddeb3271832b",
              "venue_id": "venue_scpl_downtown",
              "title": "The Financial Side of Estate Planning Noon",
              "event_time": "September 15 2026 12:00pm - 1:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-15T12:00:00",
              "event_date": "2026-09-15",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Join us for a free educational workshop: The Financial Side of Estate Planning: Beyond Wills and Trusts.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17189438",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_632ecab7d60b",
              "venue_id": "venue_scpl_downtown",
              "title": "English Language Conversation Group",
              "event_time": "September 15 2026 1:00pm - 2:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-15T13:00:00",
              "event_date": "2026-09-15",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Practice your English and make new friends!",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15223886",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a84c7e5c82ea",
              "venue_id": "venue_scpl_downtown",
              "title": "Housing Matters Drop In Hours @ Felton",
              "event_time": "September 15 2026 1:00pm - 3:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-15T13:00:00",
              "event_date": "2026-09-15",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "A Housing Matters Outreach Specialist is available every Tuesday to support people experiencing homelessness and help connect them to resources, navigate housing options, and sign up for benefits.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15425655",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cb48e649775c",
              "venue_id": "venue_scpl_downtown",
              "title": "Virtual Author Talk with Priya Parker",
              "event_time": "September 15 2026 1:00pm - 2:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-15T13:00:00",
              "event_date": "2026-09-15",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Virtual Author Talk with Bestselling Author, Master Facilitator, and Acclaimed Strategic Advisor.",
              "event_types": [
                "literary",
                "livestream"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16904459",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6de4721c4242",
              "venue_id": "venue_scpl_downtown",
              "title": "Tales to Tails at Felton",
              "event_time": "September 15 2026 3:00pm - 4:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-15T15:00:00",
              "event_date": "2026-09-15",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Practice reading to a certified therapy dog! Registration is required.",
              "event_types": [
                "community",
                "literary"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15595361",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cc2fe8434705",
              "venue_id": "venue_scpl_downtown",
              "title": "Make & Explore @ Scotts Valley",
              "event_time": "September 15 2026 3:00pm - 4:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-15T15:00:00",
              "event_date": "2026-09-15",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Make and explore STEAM possibilities at Scotts Valley Branch Library! .",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16909455",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fbd8da4b0c53",
              "venue_id": "venue_scpl_downtown",
              "title": "R.E.A.D. Program",
              "event_time": "September 15 2026 3:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-15T15:00:00",
              "event_date": "2026-09-15",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "R.E.A.D. is one-on-one reading comprehension instruction for grades 1-12. By appointment only. Please, no drop-ins! To make an appointment, call 831-427-7713",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17174409",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4a5b2ac05237",
              "venue_id": "venue_scpl_downtown",
              "title": "R.E.A.D.: Reach Every Amazing Detail @ Live oak",
              "event_time": "September 15 2026 3:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-15T15:00:00",
              "event_date": "2026-09-15",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "R.E.A.D. is one-on-one reading comprehension instruction for grades 1-12. R.E.A.D. ofrece instrucción individual de comprensión lectora para los grados 1 a 12.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17217339",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_dfbd4a70b552",
              "venue_id": "venue_scpl_downtown",
              "title": "Aptos Youth Chess Club @ Aptos",
              "event_time": "September 15 2026 3:30pm - 4:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-15T15:30:00",
              "event_date": "2026-09-15",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Aptos Youth Chess Club. Open to players ages 6 to 18 with knowledge of basic rules (how the pieces move). Instructor is Chess Master Dana Mackenzie.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/14419552",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c675e8d005e5",
              "venue_id": "venue_scpl_downtown",
              "title": "Picture Bingo with Shared Adventures",
              "event_time": "September 15 2026 3:30pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-15T15:30:00",
              "event_date": "2026-09-15",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "This Bingo program for people with special abilities (disabilities) is adaptable to all because it uses pictures!",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15564816",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_eda130955398",
              "venue_id": "venue_the_fireside",
              "title": "Tuesday Trivia",
              "event_time": "SEP 15 2026",
              "venue_name": "The Fireside",
              "event_start": "2026-09-15",
              "event_date": "2026-09-15",
              "venue_address": "1453 Webster St, Alameda, CA 94501",
              "description": "Gather a team of friends and test your knowledge across a variety of fun quiz categories at The Fireside. Enjoy great drinks while competing for top honors in a lively neighborhood trivia contest.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://www.thefiresidelounge.com/#!/e/tuesday-trivia-jun-23-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fireside",
                  "source_name": "The Fireside",
                  "fetched_at": "2026-08-24T11:04:43.394724Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fireside|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_dd71966b1b2c",
              "venue_id": "venue_la_pena",
              "title": "When We Win Film Series",
              "event_time": "September 15 @ 7:30 pm",
              "venue_name": "La Pena",
              "event_start": "2026-09-15T19:30:00",
              "event_date": "2026-09-15",
              "venue_address": "3105 Shattuck Ave, Berkeley, CA 94705",
              "description": "When We Win Political Education Film Series • Every 3rd Tuesday! Door 7:00 PM / Screening + Discussion 7:30 PM - 9:30 PM Sliding Scale: $5 - $25 | No […]",
              "event_types": [
                "film"
              ],
              "price_info": "$5 – $25",
              "url": "https://lapena.org/event/when-we-win-political-education-film-series/2026-09-15/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_la_pena",
                  "source_name": "La Pena",
                  "fetched_at": "2026-08-26T11:21:25.407030Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_la_pena|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_feadeb0b9f9e",
              "venue_id": "venue_bookshop_santa_cruz",
              "title": "The Hive Live!",
              "event_time": "Tue, 9/15/2026 7:00pm - 8:00pm",
              "venue_name": "Bookshop Santa Cruz",
              "event_start": "2026-09-15T19:00:00",
              "event_date": "2026-09-15",
              "venue_address": "1520 Pacific Ave, Santa Cruz, CA 95060",
              "description": "FREE IN-STORE EVENT: The Hive Live! presents an evening of poetry featuring Amber Coverdale Sumrall and Jen Siraganian. Your RSVP helps us plan for your arrival and keep in touch with any changes. ...",
              "event_types": [
                "literary"
              ],
              "price_info": "",
              "url": "https://bookshopsantacruz.com/hive-live-sumrall-siraganian",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bookshop_santa_cruz",
                  "source_name": "Bookshop Santa Cruz",
                  "fetched_at": "2026-08-27T22:11:24.045604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bookshop_santa_cruz|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1af909d15039",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-09-15",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-09-15",
              "event_date": "2026-09-15",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-09-15",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5d7413b2480d",
              "venue_id": "venue_dawn_club",
              "title": "SMITH DOBSON QUARTET",
              "event_time": "Tuesday, September 15, 2026 8:00 PM 11:00 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-09-15T20:00:00",
              "event_date": "2026-09-15",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Drummer/Vibraphonist/Saxophonist Smith Dobson V has been performing in the Bay Area for nearly twenty years. Originally from Santa Cruz, Ca., Dobson is a member of an important Jazz family. His father, the late Smith Dobson IV, was a world renown Pianist and director of the Jazz series at the Garden City in San Jose for over twenty years, where he accompanied artists’ like Art Pepper, Stan Getz, Bobby Hutcherson, Harold Land, Chet Baker, Red Norvo, Tal Farlow, and Lee Konitz, to name a few.Also in the family, Grandfather Smith III is a Jazz Accordionist, Grandmother Norma, Mother Gail, and Sister Sasha are all Jazz Vocalists. The family often performed as a group at the Garden City, and other venues, as well as many local schools and workshops. As a child, Smith V had the opportunity to study with legendary Jazz Drummer Albert “Tootie” Heath, who said of his pupil, “He has the talent, determination and persistence as a musician, combined with the dedication necessary to succeed… improvisational skills totally advanced, excellent sensitivity, both solo and as an accompanist… my most talented student!”Smith has had the honor of working with some of the great Jazz artists, locally and internationally, such as Bobby Hutcherson, Red Rodney, John Handy, Sheila Jordan, Red Holloway, Pete and Conte Condoli, Phillip Harper, Hal Stein, Noel Jewekes, Ben Goldberg, Graham Connahs’ Sour Note Seven, Darren Johnstone, Will Bernard, and Kenny Brooks.\n\n\n  \n#block-89dd2e0257714e49cf60 {\n    \n    \n    \n\n\n\n  }\n\n  #block-89dd2e0257714e49cf60 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-89dd2e0257714e49cf60 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-89dd2e0257714e49cf60 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-89dd2e0257714e49cf60 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-89dd2e0257714e49cf60 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-89dd2e0257714e49cf60 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/smith-dobson-quartet-1-3fh4k-8ld8n-tr9pa-snsnd-jg8w7-44zfe-et9aw-msy26-cn6nw-hjsp2-xfapm-lzk6r-mpptl-p9kk3-xmppt-f2cs5-pz49s-z2ht9-6296t",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-08-28T15:32:50.415811Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_94ba374fab26",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Gregory Alan Isakov with the SF Symphony",
              "event_time": "Tuesday, Sep 15, 2026 | 7:30 pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-09-15T19:30:00",
              "event_date": "2026-09-15",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "A cookie is a small piece of data (text file) that a website – when visited by a user – asks your browser to store on your device in order to remember information about you, such as your language preference or login information. Those cookies are set by us and called first-party cookies. We also use third-party cookies – which are cookies from a domain different than the domain of the website you are visiting – for our advertising and marketing efforts. More specifically, we use cookies and other tracking technologies for the following purposes:",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "BUY NOW",
              "url": "https://www.sfsymphony.org/Buy-Tickets/2026-27/Gregory-Alan-Isakov",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-08-28T19:38:14.129031Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_71a4f0161cf6",
              "venue_id": "venue_castro_theater",
              "title": "JEFF BERNAT",
              "event_time": "September 15, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-15T20:00:00",
              "event_date": "2026-09-15",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Luv Language Tour With Jeff Bernat undefined",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://thecastro.com/events/jeff-bernat-260915",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-08-28T20:48:00.221268Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1c1c4eaba804",
              "venue_id": "venue_exploratorium",
              "title": "Daytime Members-Only Hours",
              "event_time": "2026-09-15",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-15",
              "event_date": "2026-09-15",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Please consider joining us today ! Members are the backbone of our organization and help ensure the continuity of our mission to create inquiry-based experiences that transform learning worldwide. We can’t wait to see you at the museum.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/member-hours",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-15",
              "run_id": "run_e38dfc952011",
              "run_label": "Daytime Members-Only Hours, Aug 30 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e60cb41f7640",
              "venue_id": "venue_the_monkey_house",
              "title": "Open Mic",
              "event_time": "2026-09-15T19:00:00",
              "venue_name": "The Monkey House",
              "event_start": "2026-09-15T19:00:00",
              "event_date": "2026-09-15",
              "venue_address": "1638 University Avenue, Berkeley, CA",
              "description": "The Monkey House hosts an open mic night welcoming local musicians, poets, and storytellers to share their craft. Audience members and performers alike can enjoy a supportive, listening-room atmosphere.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monkey_house",
                  "source_name": "The Monkey House",
                  "fetched_at": "2026-08-28T21:37:06.591184Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monkey_house|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_966b0bec698f",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-09-15",
              "venue_name": "De Young",
              "event_start": "2026-09-15",
              "event_date": "2026-09-15",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-15",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_903b7969b567",
              "venue_id": "venue_rootstock_arts",
              "title": "Shreyas Ravindra",
              "event_time": "Tue, 15 Sep 2026\n6:00 PM (PDT)",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-09-15T18:00:00",
              "event_date": "2026-09-15",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "RootStock Arts is hosting a Weekly Raga Concert + Jam Session at 5741 Telegraph Ave in Oakland . Running 6:00 PM to 9:00 PM on Tuesdays in September , this all-ages, alcohol-free community event features a two-set lineup each week. The 1st Set ($10+ sliding scale/donation) highlights a rotating featured act. September 15th features: Shreyas Ravindra Following the opening performance, the 2nd Set transitions into an Open, Raga-friendly Classical Jam Session , inviting musicians and classical music enthusiasts of all levels to participate and collaborate.",
              "event_types": [
                "live_music",
                "indian_classical"
              ],
              "price_info": "",
              "url": "https://www.viewcy.com/event/weekly_raga_concert__5",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-08-29T00:16:02.821734Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3a51316b9911",
              "venue_id": "venue_punch_line",
              "title": "MARIE FAUSTIN",
              "event_time": "Sep 15, 2026 7:30 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-15T19:30:00",
              "event_date": "2026-09-15",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "New York City favorite Marie Faustin showcases her lightning-fast crowd work and hilarious storytelling about dating and relationships.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/marie-faustin-san-francisco-california-09-15-2026/event/1C0064B33BBF52CD",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_da3064860a39",
              "venue_id": "venue_the_independent",
              "title": "The Tear Garden",
              "event_time": "9.15.2026 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-15T20:00:00",
              "event_date": "2026-09-15",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List The Tear Garden (The Legendary Pink Dots & cEvin Key) Tue, Sep 15 Doors: 7:30 pm | Show: 8:00 pm 21 and up Please note - there is a delivery delay set for 2 weeks prior to show. VIP Package Includes : - One (1) General Admission Ticket - Soundcheck Viewing - Group Photo Op - Exclusive Screen Printed Tour Poster - Souvenir Laminate w/ Lanyard - Exclusive Tote Bag - Early Entry/Merch Shopping Buy Tickets Share + Google Calendar Related Events Novulent Jun 19 Buy Tickets Mamas Gun Jun 20 Buy Tickets Artists The Tear Garden The Tear Garden’s conception can literally be traced back to a seat on an aeroplane high over Greenland in 1986. cEvin Key, composer and instrumentalist of an emerging Skinny Puppy had asked Edward Ka-Spel of the Legendary Pink Dots to write lyrics for a piece that deserved more than a bonus slot on a cassette release. The song was “Center Bullet” and Ka-Spel’s contribution was requested as he had been invited to perform a string of performances in Key’s home city of Vancouver in Canada. The connection had been building for some time and after a new version of “Center Bullet” had been laid down in less than an hour, it seemed logical to write a few songs from scratch. The collaboration was set in stone… the Tear Garden was blooming and it deserved a future. A first album , “Tired Eyes Slowly Burning” was recorded a year later and as the years rolled on, the band/ project expanded, taking in Dwayne Goettel from Skinny Puppy and literally the entire lineup of the Legendary Pink Dots. Fast forward 3 decades and the Tear Garden thrives; the new album , ‘Astral Elevator’ has been gleefully received and a long persistent cry from an audience clamouring for a tour look set to have their prayers answered. For some , the combination of Skinny Puppy’s sonic overload and the Pink Dots’ hallucinogenic labyrinth may seem like an unlikely combination, but the evidence of the music and the longevity of the project exemplifies a perfect marriage.",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/the-tear-garden-the-legendary-pink-dots-cevin-key/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-08-31T10:40:49.218190Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5d4e77d5d650",
              "venue_id": "venue_yoshis",
              "title": "John Pizzarelli: Dear Mr. Bennett",
              "event_time": "September 15, 2026 - 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-15T19:30:00",
              "event_date": "2026-09-15",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "GRAMMY-WINNING PRODUCER, GUITARIST, AND VOCALIST",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$35 - $74",
              "url": "https://yoshis.com/events/buy-tickets/john-pizzarelli-7/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c7b94bfd8b78",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue Sep 15 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-15T19:00:00",
              "event_date": "2026-09-15",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "Hotel Utah's weekly Open Bluegrass Jam! Tuesday nights from about 7pm onwards. It’s free, open to the public and all are welcome to play and / or listen. So come out and take part in the Bay Area’s bluegrass scene as we continue to rebuild after covid - We jam until we are done (but not past 10:30 as we have day jobs too). Come join this good time at the Hotel Utah.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690214?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-08-31T12:12:52.447528Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_eca0466b324e",
              "venue_id": "venue_peacock_lounge",
              "title": "Jazz Night at Peacock Lounge",
              "event_time": "2026-09-15T20:00:00",
              "venue_name": "Peacock Lounge",
              "event_start": "2026-09-15T20:00:00",
              "event_date": "2026-09-15",
              "venue_address": "552 Haight St, San Francisco, CA 94117",
              "description": "Jazz music performance at Peacock Lounge",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Not specified",
              "url": "https://sfpeacock.org/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_peacock_lounge",
                  "source_name": "Peacock Lounge",
                  "fetched_at": "2026-08-31T12:21:32.216643Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_peacock_lounge|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6f5c075f2c29",
              "venue_id": "venue_presidio_theater",
              "title": "Presidio Theatre x 111 Minna Art Opening",
              "event_time": "SEP 15, 2026",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-09-15T19:30:00",
              "event_date": "2026-09-15",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "Across painting, textiles, mixed media, and illustration, the three artists draw from personal histories and cultural traditions while developing distinctly contemporary visual languages. Basta explores diasporic identity, ancestral wisdom, and archetypal storytelling; Sharma transforms geometric abstraction and repurposed Indian textiles into meditations on cultural memory and transformation; and Bushra uses surrealism, symbolism, and organic forms to externalize the complexities of the internal world.",
              "event_types": [
                "art"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.presidiotheatre.org/show-details/presidio-theatre-x-111-minna-art-opening",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-08-31T13:00:36.584647Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b900bf0a3a74",
              "venue_id": "venue_chase_center",
              "title": "Premium Suites",
              "event_time": "2026-09-15",
              "venue_name": "Chase Center",
              "event_start": "2026-09-15",
              "event_date": "2026-09-15",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "At Select-A-Suite on Thursday, September 17, 2026, not only will you have the opportunity to reserve your suites before they are released to the public, but attendees can also enjoy complimentary food and beverage tastings throughout the event, network with fans and business professionals, and have the opportunity to capture a photo with the Larry O'Brien Trophies.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://chasecenter.com/premium-experiences/premium-suites/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-08-31T17:38:13.687686Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-09-15",
              "run_id": "run_bed5be826f7c",
              "run_label": "Premium Suites, Sep 10 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8a038c0a43e6",
              "venue_id": "venue_tupelo",
              "title": "DJ Purple Karaoke",
              "event_time": "Tuesday September 15th 9:00PM - 1:00AM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-15T21:00:00",
              "event_date": "2026-09-15",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "DJ Purple is BACK! Since COVID imploded our world, we have gotten more calls wondering when Karaoke w/ DJ Purple was returning than anything else, and we sell a lot of ribs! Go get your vaccination shots, drink some tea with honey, and belt out your best songs with your friends. Fog machine standard.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7e2660a8d3a2",
              "venue_id": "venue_the_knockout",
              "title": "Human Consciousness Psych Dance Party",
              "event_time": "Tue 15 Sep ― 9:00pm",
              "venue_name": "The Knockout",
              "event_start": "2026-09-15T21:00:00",
              "event_date": "2026-09-15",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "**THE GREATER GROUP OF HUMAN CONSCIOUSNESS PSYCHEDELIC DJ COLLECTIVE DANCE PARTY • ALL VINYL • 9PM TO CLOSE • NO COVER • 21+**",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/L96e1148a464?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-09-02T10:33:16.877437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_65b8323d069a",
              "venue_id": "venue_madrone_art_bar",
              "title": "LIVE MODEL TUESDAY SKETCH",
              "event_time": "September 15 @ 6:30 pm - 8:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-15T18:30:00",
              "event_date": "2026-09-15",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "LIVE MODEL TUESDAY SKETCH hosted by Sketchboard Co. $15 fee to draw the model Every Tuesday 6:30 to 8:30 PM with live music by Twango Bring your own materials No Photos Please Respect the Models",
              "event_types": [
                "live_music",
                "art",
                "workshop"
              ],
              "price_info": "$15 fee",
              "url": "https://madroneartbar.com/event/livemodelsketch-2026-06-23/2026-09-15/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3b8341b99eba",
              "venue_id": "venue_madrone_art_bar",
              "title": "Karaoke",
              "event_time": "September 15 @ 9:30 pm - 12:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-15T21:30:00",
              "event_date": "2026-09-15",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "KARAOKE With host Lauren Yellow Music starts at 9:30pm",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/glitter-tears-karaoke-18-2026-02-04-2026-02-04-2026-04-07-2026-04-21/2026-09-15/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0ea10ded2a08",
              "venue_id": "venue_moes_alley",
              "title": "Slap Dragon",
              "event_time": "2026-09-15T20:00:00",
              "venue_name": "Moe's Alley",
              "event_start": "2026-09-15T20:00:00",
              "event_date": "2026-09-15",
              "venue_address": "1535 Commercial Way, Santa Cruz, CA 95065",
              "description": "Show: 8:00 PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_moes_alley",
                  "source_name": "Moe's Alley",
                  "fetched_at": "2026-09-03T10:23:10.512238Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_moes_alley|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fb9695331333",
              "venue_id": "venue_kuumbwa_jazz",
              "title": "Zen & the Art of Guitar Maintenance",
              "event_time": "2026-09-15T19:00:00",
              "venue_name": "Kuumbwa Jazz Center",
              "event_start": "2026-09-15T19:00:00",
              "event_date": "2026-09-15",
              "venue_address": "320-2 Cedar St, Santa Cruz, CA 95060",
              "description": "Join Gerard Egan, Santa Cruz’s ‘resident guitar mechanic,’ for Zen & the Art of Guitar Maintenance – a presentation about guitar playability and maintenance.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kuumbwa_jazz",
                  "source_name": "Kuumbwa Jazz Center",
                  "fetched_at": "2026-09-03T10:24:11.929813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kuumbwa_jazz|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_768b7119e175",
              "venue_id": "venue_local_edition",
              "title": "The Local Edition Jazz Orchestra",
              "event_time": "September 15, 2026 8:00 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-09-15T20:00:00",
              "event_date": "2026-09-15",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Live every Tuesday exclusively at Local Edition! The Local Edition Jazz Orchestra is a diverse group of long-time friends that have played alongside one another for years. The ensemble ranges from having as little as 8 to as many as 18 participants performing with occasional guest singers such as Billy Valentine, Bud E. Luv (aka Bobby Vickers), and Tom Scott.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/kwazn5t9r7ak59x-h3dwl-7hzkw-awb8n-7my9y-xbp55-lecjc-ayh5z-nn75p-82brr-yenxa-3apc9-ltjtp-t4pb2-7ww2b-ncbzf-3bayn-xphh2",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-09-03T12:59:31.047351Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_610711650f95",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Happy Hour",
              "event_time": "15 September 2026",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-15",
              "event_date": "2026-09-15",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Take advantage of Etcetera Wine Bar's happy hour specials on select drinks and light fare. It offers a relaxed neighborhood setting to unwind after work or kick off an evening of live music.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-09-03T13:50:21.930604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9154a97ceb77",
              "venue_id": "venue_caravan_lounge",
              "title": "Karaoke with Ronnie Roach",
              "event_time": "09/15/2026",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-09-15",
              "event_date": "2026-09-15",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "Welcome to The Caravan Lounge THE CARAVAN LOUNGE is a friendly, owner-operated bar located in the heart of downtown San Jose. As well as being one of San Jose’s oldest live music venues, the Caravan provides other fun activities such as karaoke, comedy, burlesque, pool table, and DJ nights. The Caravan is also extremely affordable for those trying to stretch a budget. And let’s not forget the music! All the shows at the Caravan are FREE! Open 7 days a week 2pm – Close “Aside from the obvious draw of affordable libations poured by heavy-handed barkeeps, The Caravan sets itself apart from other no-frills bars as the place to go to see up-and-coming bands. The bar has hosted plenty of local bands’ first shows, and regularly features smaller touring acts. If you’re a music fan always on the lookout for your new favorite group, make sure to pay attention to who is coming to Caravan.” -Metro FEATURED VIDEOS – Go to our YouTube Channel by clicking here to see more… SEPTEMBER 2026 TUES. SEPT 1st- Karaoke with Ronnie Roach WED. SEPT 2nd – The Caravan Lounge Comedy Show hosted by Chelsea Costanza THURS. SEPT 3rd – SWEAT with DJ SNAQ FRI. SEPT 4th – Rebelskamp, Magick Blues Band, TBA SAT. SEPT 5th – Skool Of Sharks TUES. SEPT 8th- Karaoke with Ronnie Roach WED. SEPT 9th – The Caravan Lounge Comedy Show Hosted by Nyoki THURS. SEPT 10th – Shrine Goth DJ Night with Hex Embrace, C_Death, and Owen FRI. SEPT 11th – Circus Of Sin 10 Year Sinnaversary! Hosted By Some Guy SAT. SEPT. 12th – CaveFest II We Love You Curtis Castro! Abysmal Piss, Ominous Ruin, Lost To The Void TUES. SEPT 15th – Karaoke with Ronnie Roach WED. SEPT 16th -The Caravan Lounge Comedy Show Hosted by Ato Walker THURS. SEPT 17th – TBA FRI. SEPT 18th – TBA SAT. SEPT 19th – Facekicker, American Standard, 12 Steps To Nothing TUES. SEPT 22nd – Karaoke with Ronnie Roach WED. SEPT 23rd- The Caravan Lounge Comedy Show hosted by Matt Kennedy THURS. SEPT 24th – Sweethearts DJ Night FRI. SEPT 25th – Ding Mao, Diamantide, Clou",
              "event_types": [
                "community"
              ],
              "price_info": "FREE",
              "url": "http://s172518151.onlinehome.us/caravan/site/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-09-03T14:20:40.572990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c143fc7fe903",
              "venue_id": "venue_amoeba_music_sf",
              "title": "Thee Sinseers",
              "event_time": "Tuesday September 15th 5pm",
              "venue_name": "Amoeba Music SF",
              "event_start": "2026-09-15T17:00:00",
              "event_date": "2026-09-15",
              "venue_address": "1855 Haight St, San Francisco, CA 94117",
              "description": "Thee Sinseers celebrate their new album, Love Stories with a live in-store performance and signing at Amoeba Hollywood Tuesday, September 15th at 5pm! Love Stories  is out September 18th via Colemine Records.\n\n \n\nShow is free/all-ages. Pre-purchase Love Stories on green vinyl in-store at Amoeba Hollywood to attend the post-performance signing.\n\n \n\nSigning:\n\n- Pre-purchase Love Stories (green vinyl version), in-store at Amoeba Hollywood to receive a hard ticket to attend the signing. LP will be ready for pickup on event day by showing ticket with attached Amoeba store receipt.\n\n- 1 LP + signing ticket per person for the signing. Each person must have own ticket for signing.\n\n- Thee Sinseers will be signing copies of Love Stories purchased at Amoeba. No outside or additional items.\n\n- Space is limited.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Free",
              "url": "https://www.amoeba.com/live-shows/upcoming/detail-3160/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_amoeba_music",
                  "source_name": "Amoeba Music",
                  "fetched_at": "2026-09-03T14:33:59.605406Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_amoeba_music_sf",
                  "source_name": "Amoeba Music SF",
                  "fetched_at": "2026-09-04T10:31:55.733267Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_amoeba_music_sf|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_16b1eb8051d3",
              "venue_id": "venue_hillside_club",
              "title": "Bluegrass Jam",
              "event_time": "Sep 15, 2026, 7:00 PM – 10:00 PM",
              "venue_name": "Hillside Club",
              "event_start": "2026-09-15T19:00:00",
              "event_date": "2026-09-15",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "Bring your instruments and practice your favorite tunes together. This month's theme is Moonshine Tunes",
              "event_types": [
                "live_music",
                "folk",
                "community"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/1998616643181?aff=oddtdtcreator",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-09-04T10:10:10.864332Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hillside_club|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e2bd8e6ecbd1",
              "venue_id": "venue_kilowatt",
              "title": "Magic Sword & SKYLIMIT",
              "event_time": "Tue 15 Sep ― 6:00pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-15T18:00:00",
              "event_date": "2026-09-15",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "**Magic Sword:** https://www.instagram.com/magicswordmusic/?hl=en\n\n**SKYLIMIT:** https://www.instagram.com/skylimitband/?hl=en",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$26.78",
              "url": "https://link.dice.fm/D12f7785879c?pid=ff10e59d",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-09-04T10:33:38.052132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_793654f44586",
              "venue_id": "venue_sevys_aptos",
              "title": "Live Music: Asher",
              "event_time": "September 15, Tuesday 6:00 PM",
              "venue_name": "Sevy's Bar & Kitchen",
              "event_start": "2026-09-15T18:00:00",
              "event_date": "2026-09-15",
              "venue_address": "7500 Old Dominion Ct, Aptos, CA 95003",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sevys_aptos",
                  "source_name": "Sevy's Bar & Kitchen",
                  "fetched_at": "2026-09-04T10:39:41.919005Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sevys_aptos|2026-09-15",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-09-16": {
          "date": "2026-09-16",
          "updated_at": "2026-09-04T10:39:45.176578Z",
          "events": [
            {
              "event_id": "evt_6b46e8e99f3f",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Five Finger Death Punch",
              "event_time": "2026-09-16T17:15:00",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-09-16T17:15:00",
              "event_date": "2026-09-16",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "Heavy metal heavyweights Five Finger Death Punch bring their intense live show and hard-hitting anthems to Shoreline Amphitheatre. The performance will feature a selection of the band's most popular tracks and high-energy stage production.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/five-finger-death-punch-mountain-view-california-09-16-2026/event/1C006425ABDA837C",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-04-18T08:24:47.395861Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T21:39:26.952332Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fc7f0681d350",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Ravyn Lenae",
              "event_time": "September 16, 2026 8:00pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-09-16T20:00:00",
              "event_date": "2026-09-16",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Show Cancelled - Lexa Gates",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$59+",
              "url": "https://thefoxoakland.com/events/ravyn-lenae-260916",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-06-23T11:39:52.278183Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-25T10:40:49.247198Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6683e3b5578b",
              "venue_id": "venue_california_theatre",
              "title": "Don Giovanni - Opera San José",
              "event_time": "2026-09-16T19:30:00",
              "venue_name": "California Theatre",
              "event_start": "2026-09-16T19:30:00",
              "event_date": "2026-09-16",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "Relive the epic adventure on the big screen as Symphony San Jose performs John Williams's iconic, Oscar-winning score live. This special concert event brings the beloved cinematic masterpiece to life with full orchestral accompaniment.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-06-23T13:09:42.892074Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_symphony_san_jose",
                  "source_name": "Symphony San Jose",
                  "fetched_at": "2026-06-28T03:08:41.619469Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_california_theatre|2026-09-16",
              "run_id": "run_285788e23a8b",
              "run_label": "Don Giovanni - Opera San José, Sep 13 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_36f33830ccda",
              "venue_id": "venue_curran_theater",
              "title": "Chelsea Wolfe",
              "event_time": "Wed, Sep 16, 2026",
              "venue_name": "Curran Theatre",
              "event_start": "2026-09-16",
              "event_date": "2026-09-16",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "Chelsea Wolfe has become one of the most singular artists in the world, moving fluidly between doom metal, folk, industrial, electronic music, and spectral balladry. She has collaborated with artists including Deftones' Chino Moreno, Xiu Xiu, and Converge, had her music featured in HBO's Game of Thrones , co-wrote the score for the A24 horror film X with Tyler Bates and turned heads at last year's Ann Demeulemeester show at Paris Fashion Week. Known for building immersive worlds where darkness and beauty are indistinguishable, Wolfe has cultivated a devoted global following through music that explores transformation, spirituality, grief, longing, and the unseen forces that shape our lives. With these new songs and Ghosts arriving in close succession, she opens the door to a new chapter that feels unmistakably her own.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Tickets not yet released",
              "url": "https://us.atgtickets.com/events/chelsea-wolfe/curran-theater/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_theaters",
                  "source_name": "SF Theaters",
                  "fetched_at": "2026-06-23T14:16:24.311760Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_atg_sf",
                  "source_name": "ATG SF",
                  "fetched_at": "2026-06-23T16:17:56.531437Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theatre",
                  "fetched_at": "2026-07-02T11:10:06.356307Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_curran_theater|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3bc5565fb149",
              "venue_id": "venue_4_star_theater",
              "title": "Croz Boycee",
              "event_time": "sep 16 8pm",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-16T20:00:00",
              "event_date": "2026-09-16",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "But the best way to hear Croz Boyce, really, is to forget the backstory for 40 minutes, to discard notions of why this guitar tone or that rhythmic relationship might sound familiar. Instead, simply listen and feel: What do these songs remind you of or make you aspire to? Here are some possible interpretations, all but certainly incorrect in the merged mind of Weitz and Portner but valid nevertheless. Opener “ Hanging Out with a Blueberry Pop ” first feels like lounging on a riverbank with your crew, maybe laughing as you pass a joint around, baking in the sun; the midsection is the splish-splash of finally jumping, too giddy to care about the current. Maybe it’s just the name at work, but “ Towson Acid ” maps the edge of oblivion where even the plainest of facts don’t seem certain, where reality refracts into a dozen different images, where even the drums you hear in the distance are maybe hallucinatory phantoms. And is closer “ Banana Pudding ” only these two homies fucking with each other, the space between the slow strums and the wildly teasing electronics intended to make one another (and, hey, us) chuckle? It works.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/live-music-croz-boyce",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-25T10:40:49.247198Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-06-30T17:35:34.945683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fe66dc54c838",
              "venue_id": "venue_the_chapel",
              "title": "Magic Sword",
              "event_time": "Wed Sep 16 2026 8:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-09-16T20:00:00",
              "event_date": "2026-09-16",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "(((folkYEAH!))) Presents - Supporting Talent: Skylimit - Electronic",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$22.00-$25.00",
              "url": "https://wl.seetickets.us/event/magic-sword/698674?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-07-17T10:03:46.140196Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-18T11:36:11.622544Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6ff678ad2d65",
              "venue_id": "venue_great_american_music_hall",
              "title": "When Chai Met Toast",
              "event_time": "sep 16 7pm",
              "venue_name": "Great American",
              "event_start": "2026-09-16T19:00:00",
              "event_date": "2026-09-16",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Goldenvoice presents... | Joy of Little Things Tour",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$30",
              "url": "https://wl.seetickets.us/event/when-chai-met-toast/664784?afflky=GreatAmericanMusicHall",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-08-24T10:16:41.496787Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_61d69594b5e3",
              "venue_id": "venue_rickshaw_stop",
              "title": "Ali",
              "event_time": "sep 16 8pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-09-16T20:00:00",
              "event_date": "2026-09-16",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Supporting Talent: The Helltones",
              "event_types": [
                "live_music"
              ],
              "price_info": "$20/$25",
              "url": "https://wl.seetickets.us/event/ali/692759?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-09-02T10:05:07.555428Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_3a2980e3c8a8",
              "venue_id": "venue_castro_theater",
              "title": "Jeff Bernat, Elhae",
              "event_time": "sep 16 8pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-16T20:00:00",
              "event_date": "2026-09-16",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "all ages; no ins/outs",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$48+",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_530917e34a79",
              "venue_id": "venue_the_riptide",
              "title": "Bar Trivia with @SFTrivia",
              "event_time": "Wednesday, September 16 7:00 PM - 9:00 PM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-16T19:00:00",
              "event_date": "2026-09-16",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "Wednesday nights we're here to help reinforce how smart you are or remind you otherwise. Come in and test your knowledge with the folks @SFTrivia",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5d3a39cefd7d",
              "venue_id": "venue_crepe_place",
              "title": "Brian Fitzgerald Trio",
              "event_time": "2026-09-16",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-16T20:00:00",
              "event_date": "2026-09-16",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "FREE",
              "url": "https://thecrepeplace.com/shows-list/brian-fitzgerald-trio-wednesday-march-18-from-530-to-730pm-free-show-on-the-garden-stage",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_12ed3e90a378",
              "venue_id": "venue_abbott_square",
              "title": "TRIVIA NIGHT",
              "event_time": "Wednesday, September 16, 2026 6:30 PM - 8:00 PM",
              "venue_name": "Abbott Square Market",
              "event_start": "2026-09-16T18:30:00",
              "event_date": "2026-09-16",
              "venue_address": "725 Front St, Santa Cruz, CA 95060",
              "description": "Come test your knowledge, win some prizes and have some hand crafted cocktails!",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://www.abbottsquaremarket.com/events/65tdbmgknbyx7mm87a6rfr8kfjfya6-hmd5m",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_abbott_square",
                  "source_name": "Abbott Square Market",
                  "fetched_at": "2026-08-22T12:39:51.694804Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_abbott_square|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2aff2fb702b0",
              "venue_id": "venue_the_lucky_horseshoe",
              "title": "Open Jazz Jam",
              "event_time": "09/16/2026 8:00 PM",
              "venue_name": "The Lucky Horseshoe",
              "event_start": "2026-09-16T20:00:00",
              "event_date": "2026-09-16",
              "venue_address": "453 Cortland Ave, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.theluckyhorseshoebar.com/event-details/open-jazz-jam-2026-09-16-20-00",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lucky_horseshoe",
                  "source_name": "The Lucky Horseshoe",
                  "fetched_at": "2026-08-22T14:16:43.334408Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_lucky_horseshoe|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c595783e4bc3",
              "venue_id": "venue_verdi_club",
              "title": "Scuff Queer Line Dancing & Two-Stepping",
              "event_time": "2026-09-16T20:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-09-16T20:00:00",
              "event_date": "2026-09-16",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.verdiclub.net/events-calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-08-22T14:55:24.428239Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_verdi_club|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ddac39102cbb",
              "venue_id": "venue_dance_mission",
              "title": "Tawasol Dabke Performance",
              "event_time": "2026-09-16",
              "venue_name": "Dance Mission Theater",
              "event_start": "2026-09-16",
              "event_date": "2026-09-16",
              "venue_address": "3316 24th St, San Francisco, CA 94110",
              "description": "Widely considered the lead Palestinian dance company in Palestine and the diaspora, El-Funoun was established in 1979 by a small group of enthusiastic, creative, and committed artists. The Troupe has developed an innovative style of dance deeply-rooted in Palestinian and Arab folklore and informed by elements of contemporary dance movement.",
              "event_types": [
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dance_mission",
                  "source_name": "Dance Mission Theater",
                  "fetched_at": "2026-08-22T15:02:23.569813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dance_mission|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3687212303ed",
              "venue_id": "venue_crows_nest_sc",
              "title": "YUJI TOJO",
              "event_time": "Wednesday September 16th 07:00 PM",
              "venue_name": "The Crow's Nest",
              "event_start": "2026-09-16T19:00:00",
              "event_date": "2026-09-16",
              "venue_address": "2218 East Cliff Dr, Santa Cruz, CA 95062",
              "description": "Wednesday September 16th Exciting guitar dude Starts at 07:00 PM",
              "event_types": [
                "live_music"
              ],
              "price_info": "$3 cover",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crows_nest_sc",
                  "source_name": "The Crow's Nest",
                  "fetched_at": "2026-08-22T15:19:13.909618Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crows_nest_sc|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_56b3f032efec",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Alice for Wonderland",
              "event_time": "2026-09-16",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-16",
              "event_date": "2026-09-16",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-16",
              "run_id": "run_304a2c902844",
              "run_label": "Alice for Wonderland, Aug 22 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_856895947eed",
              "venue_id": "venue_sc_county_fairgrounds",
              "title": "Santa Cruz County Fair",
              "event_time": "2026-09-16 September 16 @ 12:00 pm - September 20 @ 10:00 pm",
              "venue_name": "Santa Cruz County Fairgrounds",
              "event_start": "2026-09-16T12:00:00",
              "event_date": "2026-09-16",
              "venue_address": "2601 E Lake Ave, Watsonville, CA 95076",
              "description": "The showstopping Santa Cruz County Fair returns September 16 - 20th for family fun, great entertainment, live shows, animal displays, carnival rides,  and more!!!",
              "event_types": [
                "festival",
                "community"
              ],
              "price_info": "",
              "url": "https://www.santacruz.org/upcoming-event/santa-cruz-county-fair-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_visit_santa_cruz_county",
                  "source_name": "Visit Santa Cruz County",
                  "fetched_at": "2026-08-22T18:34:05.859446Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sc_county_fairgrounds|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_458cc9d4af7f",
              "venue_id": "venue_scpl_downtown",
              "title": "Mobile Health Clinic",
              "event_time": "September 16 2026 9:00am - 3:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-16T09:00:00",
              "event_date": "2026-09-16",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Dignity Mobile Wellness Clinic and Santa Cruz Public Libraries are partnering to offer services that support the health of patrons with weekly Wednesday visits to the Scotts Valley branch library.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15429087",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_557543edf8ff",
              "venue_id": "venue_scpl_downtown",
              "title": "Homeless Garden Project Open Office Hours",
              "event_time": "September 16 2026 10:00am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-16T10:00:00",
              "event_date": "2026-09-16",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "The Homeless Garden Project (HGP) open office hours provides people experiencing homelessness the opportunity to learn more about HGP services and programs.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15744442",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a8b51c19b15a",
              "venue_id": "venue_scpl_downtown",
              "title": "Cyber-Seniors Digital Literacy Series",
              "event_time": "September 16 2026 10:30am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-16T10:30:00",
              "event_date": "2026-09-16",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "A 12 week series on Wednesdays from 10:30AM-12PM that introduces foundational digital literacy concepts and teaches useful digital skills.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17058225",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_256c9a3fcc88",
              "venue_id": "venue_scpl_downtown",
              "title": "Preschool Storytime",
              "event_time": "September 16 2026 10:30am - 11:00am",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-16T10:30:00",
              "event_date": "2026-09-16",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Come join us for stories, songs, and lots of fun for toddlers, preschoolers and their caregivers in our beautiful Boulder Creek Library Branch every Wednesday at 11am.",
              "event_types": [
                "community",
                "literary"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17194831",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_21b61f1df3f2",
              "venue_id": "venue_scpl_downtown",
              "title": "Kiss-A-Dilla Storytime with Sarah Diaz-Bastin",
              "event_time": "September 16 2026 11:00am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-16T11:00:00",
              "event_date": "2026-09-16",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Join author Sarah Diaz-Bastin for a special storytime featuring her new book, Kiss-A Dilla, and enjoy making (and eating!) a quesadilla of your own after the story!",
              "event_types": [
                "community",
                "literary"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16920291",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_db32f201c924",
              "venue_id": "venue_scpl_downtown",
              "title": "Pilates @ the Library",
              "event_time": "September 16 2026 12:30pm - 1:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-16T12:30:00",
              "event_date": "2026-09-16",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Join us for free Pilates at the Library! All levels welcome. Bring your own mat and water. Enjoy a fun, energizing workout led by volunteer Jennifer Balboni. First come, first served!",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/14479076",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d8a3e34d089d",
              "venue_id": "venue_scpl_downtown",
              "title": "Game Zone @ Scotts Valley",
              "event_time": "September 16 2026 1:00pm - 3:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-16T13:00:00",
              "event_date": "2026-09-16",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Scotts Valley Branch Library's fun program allows tweens and teens to relax, hang out with friends and play games!",
              "event_types": [
                "community",
                "sports"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17142349",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0829f2cb0385",
              "venue_id": "venue_scpl_downtown",
              "title": "In-person Tech Help @ Capitola",
              "event_time": "September 16 2026 2:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-16T14:00:00",
              "event_date": "2026-09-16",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Are you stuck with a technology question? You can make a free appointment with a tech savvy library staff member!",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16619000",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_99aba81a07e6",
              "venue_id": "venue_scpl_downtown",
              "title": "Family Movie Matinee",
              "event_time": "September 16 2026 3:00pm - 6:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-16T15:00:00",
              "event_date": "2026-09-16",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Join us for a movie matinee for the family with California Film and Cultural Center. Enjoy our popcorn or bring your own snacks! Free!",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/14899955",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2d660dec3840",
              "venue_id": "venue_scpl_downtown",
              "title": "R.E.A.D.: Reach Every Amazing Detail @ Branciforte",
              "event_time": "September 16 2026 3:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-16T15:00:00",
              "event_date": "2026-09-16",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "R.E.A.D. is one-on-one reading comprehension instruction for grades 1-12. R.E.A.D. ofrece instrucción individual de comprensión lectora para los grados 1 a 12.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17175570",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0836429950ad",
              "venue_id": "venue_scpl_downtown",
              "title": "R.E.A.D. Program",
              "event_time": "September 16 2026 3:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-16T15:00:00",
              "event_date": "2026-09-16",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "R.E.A.D. is one-on-one reading comprehension instruction for grades 1-12. By appointment only. Please, no drop-ins! To make an appointment, call 831-427-7713.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17175975",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e80e9eb881a3",
              "venue_id": "venue_scpl_downtown",
              "title": "Make & Explore @ Garfield Park",
              "event_time": "September 16 2026 3:00pm - 4:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-16T15:00:00",
              "event_date": "2026-09-16",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Every week we will have a new project idea for you to build or explore.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17194955",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f374b401b0d6",
              "venue_id": "venue_scpl_downtown",
              "title": "Afterschool STEAM @ Aptos",
              "event_time": "September 16 2026 3:30pm - 5:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-16T15:30:00",
              "event_date": "2026-09-16",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Learn how to craft, build, and survive in the world of Minecraft.edu. Ages 8 to 18",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16251595",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f10740b954c8",
              "venue_id": "venue_scpl_downtown",
              "title": "Tales to Tails at Aptos",
              "event_time": "September 16 2026 3:30pm - 4:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-16T15:30:00",
              "event_date": "2026-09-16",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Tales to Tails is a literacy program designed to help children improve their reading skills by reading to a certified therapy dog. 1st & 3rd Wednesdays. Registration is required.",
              "event_types": [
                "literary",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16439096",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c6f5409c22bf",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Unity / Quaaludes / Yeoubi / MOONHUNTI",
              "event_time": "Wednesday September 16\n          2026 8:00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-16T20:00:00",
              "event_date": "2026-09-16",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "pop emo lofi punk queercore, garage rock post-punk, emo post-rock shoegaze, spinning",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$13 in advance / $15 at the door",
              "url": "http://www.bottomofthehill.com/20260916.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-08-24T10:19:28.171858Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f38172538f0b",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Little Shop of Horrors",
              "event_time": "2026-09-16",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-09-16",
              "event_date": "2026-09-16",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Book & Lyrics by Howard Ashman, Music by Alan Menken. Based on the film by Roger Corman, Screenplay by Charles Griffith. Directed by Ben Villegas Randle, Musical Direction by Jad Bernardo, Choreography by Leslie Waggoner",
              "event_types": [
                "theater",
                "live_music"
              ],
              "price_info": "",
              "url": "https://nctcsf.org/event/little-shop/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-08-26T11:06:39.262369Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-09-16",
              "run_id": "run_5315ef200ae4",
              "run_label": "Little Shop of Horrors, Sep 12 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6a8b77f1457a",
              "venue_id": "venue_la_pena",
              "title": "Las Mermeladas Music Jam",
              "event_time": "September 16 @ 6:30 pm",
              "venue_name": "La Pena",
              "event_start": "2026-09-16T18:30:00",
              "event_date": "2026-09-16",
              "venue_address": "3105 Shattuck Ave, Berkeley, CA 94705",
              "description": "Las Mermeladas: A Community Music Jam at La Peña Every 3rd Wednesday | 6:30 PM - 8:30 PM La Peña Lounge, 3105 Shattuck Ave, Berkeley, CA Imagine a space where […]",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "Free",
              "url": "https://lapena.org/event/las-mermeladas-at-la-pena-2-2-2/2026-09-16/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_la_pena",
                  "source_name": "La Pena",
                  "fetched_at": "2026-08-26T11:21:25.407030Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_la_pena|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_be08f0b6f75d",
              "venue_id": "venue_bookshop_santa_cruz",
              "title": "PEDRO MARTÍN, MEXIKID DREAMS: A GRAPHIC MEMOIR",
              "event_time": "Wed, 9/16/2026 4:00pm - 5:00pm",
              "venue_name": "Bookshop Santa Cruz",
              "event_start": "2026-09-16T16:00:00",
              "event_date": "2026-09-16",
              "venue_address": "1520 Pacific Ave, Santa Cruz, CA 95060",
              "description": "FREE IN-STORE EVENT: Bookshop Santa Cruz welcomes award-winning author and illustrator Pedro Martín to celebrate the release of Mexikid Dreams: A Graphic Memoir. In this extraordinary companion to...",
              "event_types": [
                "literary"
              ],
              "price_info": "",
              "url": "https://bookshopsantacruz.com/pedro-martin",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bookshop_santa_cruz",
                  "source_name": "Bookshop Santa Cruz",
                  "fetched_at": "2026-08-27T22:11:24.045604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bookshop_santa_cruz|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1a5e29374a4f",
              "venue_id": "venue_guild_theatre",
              "title": "The Infamous Stringdusters",
              "event_time": "SEP\n16\n7:30 PM",
              "venue_name": "Guild Theatre",
              "event_start": "2026-09-16T19:30:00",
              "event_date": "2026-09-16",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "DOORS OPEN: 6:30 PM • SHOW: 7:30 PM",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://www.guildtheatre.com/shows/the-infamous-stringdusters-16-sep",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-08-28T10:40:15.787828Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_guild_theatre|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3cd7e4f01630",
              "venue_id": "venue_the_freight__salvage",
              "title": "Old Blind Dogs",
              "event_time": "2026-09-16T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-16T19:00:00",
              "event_date": "2026-09-16",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Login View Cart Time remaining: 00:00 Activate Code Your cart has expired Your order contained expired items and your shopping cart has been emptied. Close Details Wednesday, September 16, 2026 8:00PM Old Blind Dogs 2026 Old Blind Dogs The musical evolution of Old Blind Dogs began in Aberdeen in 1992 with roots that grew from the eclectic music scene that flourished in the Granite City during the early 90’s. Four musicians from very different musical backgrounds came together to create a full-time professional touring band with the aim of showcasing the rich tradition of songs and tunes of Scotland on an international stage. Like many of the early flag bearing Scottish folk bands the Old Blind Dogs line up has faced inevitable changes over the years but the core values at the band’s musical heart continue to beat strong. The current line up consists of original member Jonny Hardie (fiddle/vocals), Aaron Jones (cittern/guitar/ vocals), Donald Hay (percussion/vocals) and now joined by the brilliant piper/whistle player Mike Katz (formerly of The Battlefield Band). They comprise one of the hottest live tickets on the traditional Scottish music scene today touring all over the USA, Europe and at home. Inducted in to the BBC ALBA Scots Trad Music Awards ‘Trad Music Hall of Fame’ ‘The Dogs’ have celebrated over thirty years on the road. Their fourteenth studio album ‘ Knucklehead Circus ’ is a joyous, uplifting and fun record full of compelling energy and intoxicating rhythm on which ‘OBD’ continue to innovate within their tradition while faithfully revealing its essence. The band are currently working on a new record to be released in early 2027. Here’s to many more years of Old Blind Dogs! “ With an affectionate yet playful attitude to tradition Knucklehead Circus is a joyous, glorious,and thoroughly Scottish precursor to the Old Blind Dogs’ 30th anniversary. ” (Songlines) Website | Facebook | Instagram Read More Hide View Full Calendar Please Note: Donor discount appli",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$39/$44\n(INCLUDES ALL FEES)",
              "url": "https://secure.thefreight.org/15929/15930",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1c81de01cda4",
              "venue_id": "venue_california_jazz_conservatory",
              "title": "Brownbag Jazz: Darren Johnston",
              "event_time": "2026-09-16",
              "venue_name": "CA Jazz Conservatory",
              "event_start": "2026-09-16T19:30:00",
              "event_date": "2026-09-16",
              "venue_address": "2087 Addison St, Berkeley, CA 94704",
              "description": "Free brownbag jazz performance featuring Darren Johnston on Boober Little",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://concerts.jazzschool.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_jazz_conservatory",
                  "source_name": "CA Jazz Conservatory",
                  "fetched_at": "2026-08-28T12:15:46.788864Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_california_jazz_conservatory|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_225c7a64f4e3",
              "venue_id": "venue_sfjazz_miner",
              "title": "BRIAN SIMPSON FEATURING GRACE KELLY",
              "event_time": "2026-09-16 1:15 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-09-16T13:15:00",
              "event_date": "2026-09-16",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "An artist whose work stands firmly inside the tradition, Los Angeles-based pianist and composer Brian Simpson gained fame for his decade-long tenure with the legendary George Duke and his 12 releases as a leader that have regularly topped smooth jazz charts since his 1995 debut Closer Still . For this special matinee, co-sponsored by the Smooth Jazz Cruise, Simpson and his finely wrought band will be joined by saxophonist and singer Grace Kelly . The Illinois-born Simpson was born into a musical family and cites the virtuosity of Oscar Peterson as one of his early guiding influences. Moving west after college, Simpson worked with guitarist Norman Brown and saxophonist Everette Harp before touring the world with Janet Jackson and getting the call from the iconic George Duke in 1990. He worked for a decade as music director with smooth jazz stalwart Dave Koz and has released an impressive series of albums including his latest, 2025’s Midnight Groove , featuring appearances by saxophonist Isaiah Collier and trumpeter Keyon Harrold. Called “the future of jazz” by NPR , award-winning saxophonist and vocalist Grace Kelly was recognized in nine consecutive DownBeat Critics Polls having won two “Rising Star” for alto and baritone saxophone. and has released 15 albums including 2024’s Grace Kelly with Strings: At The Movies .",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/brian-simpson-featuring-grace-kelly/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_eae113325acd",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-09-16",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-09-16",
              "event_date": "2026-09-16",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-09-16",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0af9117082ca",
              "venue_id": "venue_dawn_club",
              "title": "LILAN KANE",
              "event_time": "Wednesday, September 16, 2026 8:00 PM 11:00 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-09-16T20:00:00",
              "event_date": "2026-09-16",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Oakland-based soul singer and composer Lilan Kane (LEE - lawn) is authentic, on and off stage. The sultry honesty in her voice is as raw as her lyrical stories of love, life and self-discovery. A graduate of the prestigious Berklee College of Music, Kane has sold out numerous residencies at Yoshi's Oakland and SFJAZZ as well as performances at Minton's Playhouse (NYC), Chris's Jazz Cafe (Philly), French Quarter Festival (New Orleans), Concord Pavillion, The Mint (LA), Fillmore Jazz Festival and many others. Her songs have been featured on KCSM, WGBO, Jazziz.com, Soulandjazz.com, Soultracks.com, Thisisrnb.com and others. She is releasing new music this year that she produced and recorded during the quarantine.\"Every immaculate detail in making “TKMO” happen was guided by Kane in her debut production turn. At a time of a lengthy lockdown, Kane’s artistic spirit appears to have soared even further.\" - Soultracks.comKane has sung with Pete Escovedo Latin Jazz Orchestra, and opened for Hall & Oates, Lenny Williams, Freddie Hughes, The Doobie Brothers, Chicago, Sharon Jones, Trombone Shorty, and Morgan James. \n\n\n  \n#block-3b6fed594a742b3077d6 {\n    \n    \n    \n  }\n\n  #block-3b6fed594a742b3077d6 .sqs-html-content {\n    \n    }\n\n  #block-3b6fed594a742b3077d6 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n\n\n\n  \n  \n\n  \n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-3b6fed594a742b3077d6 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-3b6fed594a742b3077d6 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/lilan-kane-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-08-28T15:32:50.415811Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7945b25b2e26",
              "venue_id": "venue_exploratorium",
              "title": "Daytime Members-Only Hours",
              "event_time": "2026-09-16",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-16",
              "event_date": "2026-09-16",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Please consider joining us today ! Members are the backbone of our organization and help ensure the continuity of our mission to create inquiry-based experiences that transform learning worldwide. We can’t wait to see you at the museum.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/member-hours",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-16",
              "run_id": "run_e38dfc952011",
              "run_label": "Daytime Members-Only Hours, Aug 30 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8abb6810b3e8",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "2026 JAY B tape: roots",
              "event_time": "2026-09-16T19:30:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-09-16T19:30:00",
              "event_date": "2026-09-16",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "Live concert performance by K-pop artist and singer JAY B on his tape: roots tour.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.palaceoffinearts.org/event/2026-jay-b-tape-roots/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-08-28T21:32:02.715078Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_8b3cc9a933a3",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-09-16",
              "venue_name": "De Young",
              "event_start": "2026-09-16",
              "event_date": "2026-09-16",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-16",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_39f35fe516b7",
              "venue_id": "venue_de_young",
              "title": "Black-Tie Dinner",
              "event_time": "9/16/2026 7–10 pm",
              "venue_name": "De Young",
              "event_start": "2026-09-16T19:00:00",
              "event_date": "2026-09-16",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "It is our distinct pleasure to invite Champion level and above donors and special guests to our annual black-tie dinner, hosted to celebrate and thank our most dedicated supporters. The night will also honor Renée Dreyfus, George and Judy Marcus Distinguished Curator and curator in charge, ancient art, for her 50 years of extraordinary service. To ensure a seamless arrival, we are delighted to provide complimentary valet parking at the main entrance. To request accessibility accommodations, please email specialevents@famsf.org.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/black-tie-dinner",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_aaa0df08e3c7",
              "venue_id": "venue_rootstock_arts",
              "title": "Meet the Video Lab",
              "event_time": "Wed, 16 Sep 2026\n7:00 PM (PDT)",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-09-16T19:00:00",
              "event_date": "2026-09-16",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "RootStock presents a Meet the Video Lab gathering at RootStock Arts Center. Dante Escrofani will show how to effectively capture a video podcast session, with Amol Ray @yungcoconut and Sameer Gupta @tablajazz Dante Escrofani is a professional A/V engineer and multimedia designer. His discipline includes setting up & operating sound, visuals, and streaming for all ranges of concerts, conferences, and creative happenings. $20-30 per person FREE for RootStock Arts Members",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.viewcy.com/event/meet_the_video_lab_at",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-08-29T00:16:02.821734Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_26d00d301154",
              "venue_id": "venue_punch_line",
              "title": "SCOTT CAPURRO HAS FRIENDS",
              "event_time": "Sep 16, 2026 7:30 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-16T19:30:00",
              "event_date": "2026-09-16",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Provocative San Francisco native Scott Capurro hosts a night of his signature confrontational, thought-provoking stand-up alongside a lineup of talented friends.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/scott-capurro-has-friends-san-francisco-california-09-16-2026/event/1C0064B33C1D5325",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_887d00423c2f",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "ZAR THE STAR",
              "event_time": "Wed Sep 16, 2026 7:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-09-16T19:30:00",
              "event_date": "2026-09-16",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Comedian and content creator Zar The Star performs her bold stand-up, drawing from her Afghan-Tajik roots and viral online sketches.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/zar-the-star-san-francisco-california-09-16-2026/event/1C0064D121AE0803",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3e46f7a3d5f4",
              "venue_id": "venue_san_jose_improv",
              "title": "Jaime Garcia",
              "event_time": "Sep 16 8:00pm",
              "venue_name": "San Jose Improv",
              "event_start": "2026-09-16T20:00:00",
              "event_date": "2026-09-16",
              "venue_address": "62 S 2nd St, San Jose, CA 95113",
              "description": "Comedian Jaime Garcia hits the stage with his clever comedic timing, dry wit, and approachable storytelling. His stand-up set offers sharp observations on daily life and modern culture.",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY NOW",
              "url": "https://improv.com/sanjose/comic/jaime+garcia/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_improv",
                  "source_name": "San Jose Improv",
                  "fetched_at": "2026-08-29T01:07:49.368865Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_improv|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_07189d2b6149",
              "venue_id": "venue_ivy_room",
              "title": "Bang the Bay",
              "event_time": "Sep 16 6:00 PM",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-16T18:00:00",
              "event_date": "2026-09-16",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "bang the bay presents - SPITERZ + ATOMIC + MC PATTY",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ivyroom.com/#/events/195926",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-08-31T11:55:01.170393Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e52c593d445e",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "ERIK HANSEN PROJECT, ARSON WHALES, SHOT OF GRACE",
              "event_time": "Wed Sep 16 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-16T19:00:00",
              "event_date": "2026-09-16",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "Rock Night",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "21+, $12.00",
              "url": "https://wl.seetickets.us/event/erik-hansen-project-arson-whales-shot-of-grace/703946?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-08-31T12:12:52.447528Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6af684f46600",
              "venue_id": "venue_winters",
              "title": "The High Life/Adrian Xavier",
              "event_time": "2026-09-16T20:00:00",
              "venue_name": "Winters",
              "event_start": "2026-09-16T20:00:00",
              "event_date": "2026-09-16",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "Live music performance featuring The High Life and Adrian Xavier.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-08-31T12:39:12.063314Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_winters|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_3c39a00ef29a",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Singer/Songwriter Wednesday",
              "event_time": "2026-09-16T16:00:00",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-09-16T16:00:00",
              "event_date": "2026-09-16",
              "venue_address": "San Francisco, CA 94118",
              "description": "Singer/Songwriter Wednesday live performances featuring Indestructible, Angry Outlaws, and Hyperdrive Kittens.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://sfrecpark.org/calendar.aspx?EID=17155",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-08-31T13:28:15.005369Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_c3395544a9cb",
              "venue_id": "venue_boom_boom_room",
              "title": "Boom Boom’s Comedy Showcase",
              "event_time": "Wed, Sep 16, 2026 Doors: 6 pm // Show: 7:30 pm",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-09-16T19:30:00",
              "event_date": "2026-09-16",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "When: Wednesday Night, September 16thDoor Time: 6:00PMShow Time:  7:30PM ('til 11PM)  then Danceparty  Show Type: STAND-UP COMEDY SHOWCASE '& Dance Party follows..Tix:  No Cover Charge / Admission Gratis VALUE CULTURE's Adam Swig Presents: * BOOM BOOM's ~ COMEDY SHOWCASE * &  All Night Dance Party_________________ COMEDY show (7:30PM 'til 11PM+) THEN it  becomes ... A DANCE-PARTY. (11PM TIL 1:15am+) cocktails served 7PM 'til 1:30AM+ RESERVE SEATING at VALUECULTURE.ORG/COMEDY ~ NO COVER CHARGE // ADMISSION GRATIS ~_________________ ** VALUE CULTURE - BOOM BOOM COMEDY SHOWCASE ** featuring: ... SUPER STARS in THE MAKING... Stephanie BlockPaul RobertsonAdam Swig& 6+ more Headliners & rising Stars    @ivalueculture + Emcee Extraordinaire ...ADAM SWIG  Join us for Value Culture's BOOM BOOM Comedy Showcase at the famous Boom Boom Room on Fillmore Street for a special comedy event featuring future local comedy legends Stephanie Block,  and special guests. Hosted by Adam Swig, executive director of Value Culture, 501c3.   21+, free with RSVP ($10 suggested donation). Show is at 8pm roughly 90 minutes, with more drinks and DJ music to follow. Seating ... RESERVE ** SEATING at VALUECULTURE.ORG/COMEDY This event supports independent these independent comics, this independent venue, and special non profit. The event is presented by Value Culture, a California 501c3 non profit and the Boom Boom Room. Follow Value Culture on instagram for updates @ivalueculture. Please share this event and help San Francisco nightlife and us to grow an awesome community. _________________~ NO COVER CHARGE // ADMISSION GRATIS ~",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://boomboomroom.com/event/boom-boom-s-comedy-showcase-no-cover-charge-4/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-08-31T14:05:05.078255Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0a6828b94c2f",
              "venue_id": "venue_ashkenaz",
              "title": "Welcome Party Square Dance!",
              "event_time": "09/16/2026 7:00 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-09-16T19:00:00",
              "event_date": "2026-09-16",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "Berkeley Old-Time Music Convention - Square Dance",
              "event_types": [
                "dance",
                "folk"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/188645",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-08-31T14:45:33.243069Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d73cbf594f49",
              "venue_id": "venue_yerba_buena_center",
              "title": "GaHee Park: Behind the Curtain",
              "event_time": "2026-09-16",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-16",
              "event_date": "2026-09-16",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Park invites us to peek behind the curtain, as she lays claim to her own power as a surrealist painter working across fantasy and intimacy.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/gahee-park-behind-the-curtain/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-16",
              "run_id": "run_5353f80886f6",
              "run_label": "GaHee Park: Behind the Curtain, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5f6e12793cb4",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dreamlike Diorama Workshop",
              "event_time": "Wednesday, September 16, 2026, 2–4 PM",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-16T14:00:00",
              "event_date": "2026-09-16",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Construct your own dreamlike world through a creative shadowbox diorama.",
              "event_types": [
                "workshop"
              ],
              "price_info": "Tickets: Free with registration",
              "url": "https://ybca.org/event/free-art-workshop-dreamlike-diorama-9-16-26/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_604f8fde1b2e",
              "venue_id": "venue_chase_center",
              "title": "Premium Suites",
              "event_time": "2026-09-16",
              "venue_name": "Chase Center",
              "event_start": "2026-09-16",
              "event_date": "2026-09-16",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "At Select-A-Suite on Thursday, September 17, 2026, not only will you have the opportunity to reserve your suites before they are released to the public, but attendees can also enjoy complimentary food and beverage tastings throughout the event, network with fans and business professionals, and have the opportunity to capture a photo with the Larry O'Brien Trophies.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://chasecenter.com/premium-experiences/premium-suites/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-08-31T17:38:13.687686Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-09-16",
              "run_id": "run_bed5be826f7c",
              "run_label": "Premium Suites, Sep 10 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_25afe565d6a8",
              "venue_id": "venue_the_knockout",
              "title": "May Be Fern, Electric Ex & Baystar",
              "event_time": "Wed 16 Sep ― 7:00pm",
              "venue_name": "The Knockout",
              "event_start": "2026-09-16T19:00:00",
              "event_date": "2026-09-16",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "MAY BE FERN (ALL FEMALE COLORADO NEON FUNK TRIO) + ELECTRIC EX + BAYSTAR + ACADEMY REJECTS • DOORS 7PM • SHOW 8PM TO CLOSE • $10 • 21+ • NEON FUNK ALT POP DANCE MUSIC TONIGHT",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$11.33",
              "url": "https://link.dice.fm/s6e8b0bf6c55?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-09-02T10:33:16.877437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4f4a11bc1a35",
              "venue_id": "venue_public_works",
              "title": "Art Battle San Francisco",
              "event_time": "2026-09-16T19:00:00",
              "venue_name": "Public Works",
              "event_start": "2026-09-16T19:00:00",
              "event_date": "2026-09-16",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "Live competitive painting where artists transform blank canvases into finished works in 20 minutes, followed by an art auction.",
              "event_types": [
                "art",
                "sports"
              ],
              "price_info": "$20+",
              "url": "https://www.eventbrite.com/e/art-battle-san-francisco-september-16-2026-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-09-02T11:21:34.915442Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_public_works|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_085fee1d76cf",
              "venue_id": "venue_madrone_art_bar",
              "title": "Youth Art & Leap Arts Fundraiser",
              "event_time": "September 16 @ 7:00 pm - 9:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-16T19:00:00",
              "event_date": "2026-09-16",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Come raise a glass for arts education! 🎨🍹 Join us at Madrone on 9/16 for a fundraiser benefiting Youth Art Exchange x Leap Arts in Education! For two hours, 10% of all drink sales will support YAX + Leap Arts and their work providing free arts education to Bay Area youth. And when we say [&hellip;]",
              "event_types": [
                "community"
              ],
              "price_info": "free",
              "url": "https://madroneartbar.com/event/youth-art-exchange-x-leap-arts-fundraiser/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_182948a9f708",
              "venue_id": "venue_moes_alley",
              "title": "Handmade Moments",
              "event_time": "2026-09-16T20:00:00",
              "venue_name": "Moe's Alley",
              "event_start": "2026-09-16T20:00:00",
              "event_date": "2026-09-16",
              "venue_address": "1535 Commercial Way, Santa Cruz, CA 95065",
              "description": "Show: 8:00 PM",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_moes_alley",
                  "source_name": "Moe's Alley",
                  "fetched_at": "2026-09-03T10:23:10.512238Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_moes_alley|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9d011872f05f",
              "venue_id": "venue_black_cat",
              "title": "The Kuumba Experience",
              "event_time": "2026-09-16T19:00:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-16T19:00:00",
              "event_date": "2026-09-16",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n9:15 show: Bar @ 6:00, Doors @ 8:30\n\n\n\n\nA late-night conversation in groove, where jazz, R&B, funk, soul, fusion, voice, and improvisation move between the band and the room.\n\n\n\n\nThe Kuumba Experience brings a living, breathing set to Black Cat — rhythm-forward, soulful, and built around the energy of creation in real time. With drums, keys, bass, guitar, and vocals moving as one, the music opens up into something fluid, intimate, and electric.\n\n\n\n\n“Kuumba” means to create: to make, to shape, to leave something more beautiful behind. After Dark lives in that spirit, inviting the audience inside the music as it unfolds.\n\n\n\n\nBand Lineup:\n\n\n\n\nJordan McGowan, producer/drums\n\nVernon Hall, bass\n\nSkylar, lead vocals\n\nJeriko Blaq, lead guitar\n\nJamie Hawkins, musical director/keys\n\nWayne Jackson, creative director",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $30 , $40 , $50",
              "url": "https://blackcatsf.turntabletickets.com/shows/12341/2026-09-16",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7ea9f2d73b00",
              "venue_id": "venue_black_cat",
              "title": "The Kuumba Experience",
              "event_time": "2026-09-16T21:15:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-16T21:15:00",
              "event_date": "2026-09-16",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n9:15 show: Bar @ 6:00, Doors @ 8:30\n\n\n\n\nA late-night conversation in groove, where jazz, R&B, funk, soul, fusion, voice, and improvisation move between the band and the room.\n\n\n\n\nThe Kuumba Experience brings a living, breathing set to Black Cat — rhythm-forward, soulful, and built around the energy of creation in real time. With drums, keys, bass, guitar, and vocals moving as one, the music opens up into something fluid, intimate, and electric.\n\n\n\n\n“Kuumba” means to create: to make, to shape, to leave something more beautiful behind. After Dark lives in that spirit, inviting the audience inside the music as it unfolds.\n\n\n\n\nBand Lineup:\n\nJordan McGowan, producer/drums\n\nVernon Hall, bass\n\nWayne Jackson, creative director",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $30 , $40 , $50",
              "url": "https://blackcatsf.turntabletickets.com/shows/12341/2026-09-16",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c5bc69394faf",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Patrick Wolff Quartet ft. Matt Wilson",
              "event_time": "Wednesday, September 16, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-16T19:00:00",
              "event_date": "2026-09-16",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Wednesday, September 16, 2026 @ 7pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $30 per show",
              "url": "https://keysjazzbistro.com/event/patrick-wolff-quartet-ft-matt-wilson-3/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_820f99b6cb05",
              "venue_id": "venue_stookeys_blue_room",
              "title": "Jazz Jam hosted by Rabiah Kabir",
              "event_time": "Wed, Sep 16 at 8-11pm",
              "venue_name": "Stookey's Blue Room",
              "event_start": "2026-09-16T20:00:00",
              "event_date": "2026-09-16",
              "venue_address": "1523 Sutter St, San Francisco, CA 94109",
              "description": "No Cover/No Reservation\n\n8-11pm\n\nA $5 - $10 Donation is requested (for the house band)",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No Cover",
              "url": "https://www.stookeysblueroom.com/event-details/jazz-jam-session-hosted-by-flutist-rabiah-kabir-3",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stookeys_blue_room",
                  "source_name": "Stookey's Blue Room",
                  "fetched_at": "2026-09-03T12:18:49.462512Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stookeys_blue_room|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4a6098eae911",
              "venue_id": "venue_pacific_film_archive",
              "title": "Exhibition Tour: Maren Hassinger",
              "event_time": "Sep 16, 2026 12:15 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-16T12:15:00",
              "event_date": "2026-09-16",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Graduate students from the Departments of African American and African Diaspora Studies and History of Art offer exhibition tours on selected Wednesdays at 12:15 PM, Sundays at 2 PM, and Free First Thursdays at 1:15 PM.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://bampfa.org/event/exhibition-tour-maren-hassinger-living-moving-growing",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2f14f6f6c8ca",
              "venue_id": "venue_pacific_film_archive",
              "title": "Barbara Forever",
              "event_time": "Sep 16, 2026 7 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-16T19:00:00",
              "event_date": "2026-09-16",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Pioneering lesbian filmmaker Barbara Hammer takes center stage in Brydie O’Connor’s Teddy Award–winning documentary. The lyrical portrait illuminates how Hammer’s legacy continues to inspire artists while never losing sight of the ambitious, funny, bold, and joyful woman at its center.",
              "event_types": [
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/barbara-forever",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a0b5d836310a",
              "venue_id": "venue_local_edition",
              "title": "The Art Khu Quartet",
              "event_time": "September 16, 2026 4:30 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-09-16T16:30:00",
              "event_date": "2026-09-16",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Closed for a Private Event until 9pmThe Art Khu Quartet 9pm - 12:30pmArthur Khu is a world-renowned pianist whose remarkable virtuosity and artistry drawinspiration from jazz legends like Keith Jarrett, Herbie Hancock, and Chick Corea, as well asclassical composers such as Chopin and Debussy. He's also a prolific composer whose styleblends Wayne Shorter's post-bop sensibilities with elements of Brahms and Rachmaninoff.Collaborating with some of California's finest musicians, his music is always intense, emotional,and driving.Art Khu: A Seasoned Jazz Artist with a Symphony of ExperienceArt Khu is a multifaceted musician who has carved a niche for himself in the music world with his exceptional talent on a variety of instruments. His journey began at a young age, and over the years, he has honed his skills on the piano, organ, guitar, and bass, blossoming into a vibrant career spanning over 35 years. His dedication to music is evident not only in his performances but also in his educational background and compositional endeavors.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/kwazn5t9r7ak59x-h3dwl-7hzkw-awb8n-7my9y-xbp55-lecjc-ayh5z-28m7r-wrfe2-5ephw-dnl5w-zwg8n-zb82l-z6c2w-klss7-tgm38-27slt",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-09-03T12:59:31.047351Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f35fa5e12e74",
              "venue_id": "venue_cat_club",
              "title": "PLAY-X-LAND",
              "event_time": "September 16, 2026 9:00 PM",
              "venue_name": "Cat Club",
              "event_start": "2026-09-16T21:00:00",
              "event_date": "2026-09-16",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "Come out and play every\nWednesday Night!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.sfcatclub.com/calendar/sgzbsw3ltzjngjx-8yj6x-hzsr2-8tx5a-bh2wx",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cat_club",
                  "source_name": "Cat Club",
                  "fetched_at": "2026-09-03T13:24:58.141502Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2fb3a7007ae9",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Wine Special",
              "event_time": "16 September 2026",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-16",
              "event_date": "2026-09-16",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Discover curated bottle and glass specials featuring selections from Etcetera Wine Bar's extensive cellar. It is an ideal occasion to sample new varietals in a relaxed Mission District setting.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-09-03T13:50:21.930604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4dcad37b01ee",
              "venue_id": "venue_caravan_lounge",
              "title": "Caravan Lounge Comedy Show",
              "event_time": "09/16/2026",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-09-16",
              "event_date": "2026-09-16",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "Welcome to The Caravan Lounge THE CARAVAN LOUNGE is a friendly, owner-operated bar located in the heart of downtown San Jose. As well as being one of San Jose’s oldest live music venues, the Caravan provides other fun activities such as karaoke, comedy, burlesque, pool table, and DJ nights. The Caravan is also extremely affordable for those trying to stretch a budget. And let’s not forget the music! All the shows at the Caravan are FREE! Open 7 days a week 2pm – Close “Aside from the obvious draw of affordable libations poured by heavy-handed barkeeps, The Caravan sets itself apart from other no-frills bars as the place to go to see up-and-coming bands. The bar has hosted plenty of local bands’ first shows, and regularly features smaller touring acts. If you’re a music fan always on the lookout for your new favorite group, make sure to pay attention to who is coming to Caravan.” -Metro FEATURED VIDEOS – Go to our YouTube Channel by clicking here to see more… SEPTEMBER 2026 TUES. SEPT 1st- Karaoke with Ronnie Roach WED. SEPT 2nd – The Caravan Lounge Comedy Show hosted by Chelsea Costanza THURS. SEPT 3rd – SWEAT with DJ SNAQ FRI. SEPT 4th – Rebelskamp, Magick Blues Band, TBA SAT. SEPT 5th – Skool Of Sharks TUES. SEPT 8th- Karaoke with Ronnie Roach WED. SEPT 9th – The Caravan Lounge Comedy Show Hosted by Nyoki THURS. SEPT 10th – Shrine Goth DJ Night with Hex Embrace, C_Death, and Owen FRI. SEPT 11th – Circus Of Sin 10 Year Sinnaversary! Hosted By Some Guy SAT. SEPT. 12th – CaveFest II We Love You Curtis Castro! Abysmal Piss, Ominous Ruin, Lost To The Void TUES. SEPT 15th – Karaoke with Ronnie Roach WED. SEPT 16th -The Caravan Lounge Comedy Show Hosted by Ato Walker THURS. SEPT 17th – TBA FRI. SEPT 18th – TBA SAT. SEPT 19th – Facekicker, American Standard, 12 Steps To Nothing TUES. SEPT 22nd – Karaoke with Ronnie Roach WED. SEPT 23rd- The Caravan Lounge Comedy Show hosted by Matt Kennedy THURS. SEPT 24th – Sweethearts DJ Night FRI. SEPT 25th – Ding Mao, Diamantide, Clou",
              "event_types": [
                "comedy"
              ],
              "price_info": "FREE",
              "url": "http://s172518151.onlinehome.us/caravan/site/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-09-03T14:20:40.572990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0b2305dc445e",
              "venue_id": "venue_comstock_saloon",
              "title": "Peninsula Project",
              "event_time": "2026-09-16T20:00:00",
              "venue_name": "Comstock Saloon",
              "event_start": "2026-09-16T20:00:00",
              "event_date": "2026-09-16",
              "venue_address": "155 Columbus Ave, San Francisco, CA 94133",
              "description": "Live music performance",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_comstock_saloon",
                  "source_name": "Comstock Saloon",
                  "fetched_at": "2026-09-03T14:26:10.425617Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_comstock_saloon|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ec7182606814",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Midweek Melodies | September 16",
              "event_time": "September 16, 2026  4:00 pm – 7:00 pm",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-09-16T16:00:00",
              "event_date": "2026-09-16",
              "venue_address": "San Francisco, CA 94118",
              "description": "Featuring Angry Outlaws, Hyperdrive Kittens, Indestructible",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://illuminate.org/event/midweek-melodies-september-16/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_illuminate",
                  "source_name": "Illuminate",
                  "fetched_at": "2026-09-03T14:32:31.098793Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_ce4bad2f296f",
              "venue_id": "venue_poor_house_bistro",
              "title": "PHB Jazz Jam",
              "event_time": "2026-09-16T18:00:00",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-09-16T18:00:00",
              "event_date": "2026-09-16",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-09-04T10:11:13.938872Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9f10f4b3f80f",
              "venue_id": "venue_cafe_du_nord",
              "title": "Zee Machine",
              "event_time": "9/16/2026 8:00 pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-09-16T20:00:00",
              "event_date": "2026-09-16",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Cafe Du Nord Presents: ZEE MACHINE: HYMPHOMANIA THE LIVE EXPERIENCE with boy bowser Wed, Sep 16 Doors: 7:00 pm | Show: 8:00 pm Tickets: $33.45 Buy Tickets 21 and up Zee Machine is an electrifying pop/rock/electronic singer-songwriter and multi-instrumentalist, known for their powerful vocals, dynamic songwriting, and genre-fluid sound. With millions of streams across platforms, Zee Machine is continuing to grow, connect, and find their own lane as an independent artist that you know you'll have a good time dancing along to VIP with General Admission - early entry - free merch shirt of your choice - hang before the show - signed polaroid - Q&A - first listen to the new music VIP package is subject to change For any event that is listed as 18 or 21 and over, ANY ticket holder unable to present valid identification indicating that they are of age will not be admitted to this event, and will not be eligible for a refund. Any event listed as All Ages, means 6 years of age or older. ALL tickets are standing room only unless otherwise specified. If you need special accommodations, contact info@cafedunord.com. Support acts are subject to change without refund. Professional Cameras are not allowed without prior approval. Professional Camera defined as detachable lens or of professional grade as determined by the venue staff. When in doubt, just email us ahead of the show! We might be able to get you a Photo Pass depending on Artist’s approval. Artists Zee Machine Video Zee Machine is a Los Angeles-based pop/rock/electronic singer-songwriter and multi-instrumentalist, known for their powerful vocals, dynamic songwriting, and genre-fluid sound. A graduate of Berklee College of Music, they’ve been making music and performing internationally since high school, steadily building a devoted fanbase and strong online presence. Their work has caught the attention of artists like Bonnie McKee, Mark Ronson, and led to collaborations with Grammy-winning producers. Along the way, Zee Mac",
              "event_types": [
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://cafedunord.com/tm-event/zee-machine-hymphomania-the-live-experience/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cafe_du_nord_and_swedish_american_hall",
                  "source_name": "Cafe Du Nord and Swedish American Hall",
                  "fetched_at": "2026-09-04T10:21:43.132381Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_2aa3fa7a4477",
              "venue_id": "venue_kilowatt",
              "title": "Brain Fog & Victor and The Callers",
              "event_time": "Wed 16 Sep ― 7:00pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-16T19:00:00",
              "event_date": "2026-09-16",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Keep track of what’s coming up by saving events, sharing them with friends, or even listening to new music in the app.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/rc82d484fe1f?pid=ff10e59d",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-09-04T10:33:38.052132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bb3bcc0e7b3f",
              "venue_id": "venue_sevys_aptos",
              "title": "Burgers & Brews Wednesdays",
              "event_time": "September 16, Wednesday 5:00 PM",
              "venue_name": "Sevy's Bar & Kitchen",
              "event_start": "2026-09-16T17:00:00",
              "event_date": "2026-09-16",
              "venue_address": "7500 Old Dominion Ct, Aptos, CA 95003",
              "description": "",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sevys_aptos",
                  "source_name": "Sevy's Bar & Kitchen",
                  "fetched_at": "2026-09-04T10:39:41.919005Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sevys_aptos|2026-09-16",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-09-17": {
          "date": "2026-09-17",
          "updated_at": "2026-09-04T10:39:45.186957Z",
          "events": [
            {
              "event_id": "evt_49be8c0cd5f3",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Unsane / CNTS / Facet",
              "event_time": "Thursday September 17 2026 8:00PM doors -- music at 8 :30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-17T20:00:00",
              "event_date": "2026-09-17",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Thursday September 17 2026\n  8:00PM doors -- music at 8:30PM\n  •••  21 AND OVER\n$20 in advance / $25 at the door\n$25.31 in advance [20 face value + 5.31 service fee]\nUnsane\n noise rock , punk and metal\nCNTS\n punk rock, hardcore\nFacet\n Noise Rock, Post-Hardcore",
              "event_types": [
                "live_music",
                "rock",
                "experimental"
              ],
              "price_info": "$20/$25",
              "url": "http://www.bottomofthehill.com/20260917.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-04-07T08:22:03.324468Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e364e1cb86e9",
              "venue_id": "venue_greek_theatre",
              "title": "Bleachers, Linda Lindas",
              "event_time": "September 17, 2026 6:30 pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-09-17T18:30:00",
              "event_date": "2026-09-17",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "LIVE 105 presents\nBleachers Forever - The Linda Lindas",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thegreekberkeley.com/events/bleachers-260917",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-04-07T10:55:48.132614Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_greek_theatre|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_27ae191706ef",
              "venue_id": "venue_golden_gate_theater",
              "title": "My Hero Academia In Concert",
              "event_time": "2026-09-17T19:00:00",
              "venue_name": "Golden Gate Theatre",
              "event_start": "2026-09-17T19:00:00",
              "event_date": "2026-09-17",
              "venue_address": "1 Taylor St, San Francisco, CA 94102",
              "description": "Join the ultimate celebration of heroism as My Hero Academia In Concert brings a decade of unforgettable moments to life! From Deku’s first steps to the thrilling battles, this live concert experience immerses fans in the anime’s full eight season journey like never before. Set on stage with a powerful 15-piece live band performing Yuki Hayashi’s iconic score, every note captures the triumph, heartbreak, and heroism of the series. The concert seamlessly blends dynamic music with striking visuals of the anime’s most memorable scenes, creating a fully immersive journey that puts fans in the heart of the action.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "More info",
              "url": "https://us.atgtickets.com/events/my-hero-academia/golden-gate-theatre/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_golden_gate_theater",
                  "source_name": "Golden Gate Theatre",
                  "fetched_at": "2026-04-22T13:28:07.693795Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_theaters",
                  "source_name": "SF Theaters",
                  "fetched_at": "2026-04-22T13:56:34.286281Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_atg_sf",
                  "source_name": "ATG SF",
                  "fetched_at": "2026-04-22T14:37:42.000428Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_golden_gate_theater|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_37b795cd54f7",
              "venue_id": "venue_castro_theater",
              "title": "JOSH THOMAS: JIGGLE, JIGGLE",
              "event_time": "September 17, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-17T20:00:00",
              "event_date": "2026-09-17",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Our show with Josh Thomas scheduled for September 17, 2026 at Castro Theatre will now take place at Great Star Theater in San Francisco on the same date. Please hold on to your tickets! All tickets purchased for Castro Theatre will be exchanged for a comparable seat location at Great Star Theater. New tickets will be sent out close to the show please add the new tickets to your wallet upon receipt. We thank you for understanding and look forward to seeing you at the show! This event is all ages. All doors & show times subject to change.",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/josh-thomas-260917",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-06T11:49:34.527189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_07bac69007e9",
              "venue_id": "venue_ivy_room",
              "title": "Defiance & The Insane",
              "event_time": "Thursday Sep 17 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-17T19:00:00",
              "event_date": "2026-09-17",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Legendary Portland street punk band Defiance and UK punk veterans The Insane co-headline a raw, high-energy punk showcase at the Ivy Room. The stacked lineup also features Hat Trickers, Oil!, and Mokosos.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/180700",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-28T18:57:57.118250Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_913057830a32",
              "venue_id": "venue_mountain_winery",
              "title": "The Temptations & Four Tops",
              "event_time": "Sep 17, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-17T19:30:00",
              "event_date": "2026-09-17",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "The Temptations & Four Tops Thursday, September 17 Doors 5:30PM , Show 7:30PM All Ages to Enter, 21 & Over to Drink The Mountain Winery Buy Tickets Star Seating Event Info No refunds or exchanges. All shows are rain or shine. Children age 3 and older require a ticket. A child under the age of 3 is considered a lap child and does not require a ticket. For directions, dining, parking, or carpool information, please visit www.mountainwinery.com. For information on how to purchase VIP season tickets including suites and box seats, please visit https://www.mountainwinery.com/vip-seating/ Doors open 2 hours prior to the show time. Seating begins 1 hour prior to the show time.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1259541",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-06-02T10:55:16.293558Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_84c5263ba006",
              "venue_id": "venue_the_independent",
              "title": "MUSTARD SERVICE",
              "event_time": "9.17 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-17T20:00:00",
              "event_date": "2026-09-17",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List Mustard Service Pity Party (Girls Club) Manwolves Chicano Mosh Thu, Sep 17 Doors: 7:30 pm | Show: 8:00 pm All Ages Please note - there is a delivery delay set for 2 weeks prior to show. Buy Tickets Share + Google Calendar Related Events Clipse Aug 6 Sold Out! GRiZ Aug 7 Sold Out! Artists Mustard Service Hey hi hello, Mustard Service here. We are a group of five boys from Miami, Florida just looking for a good time. Pity Party (Girls Club) Pity Party (Girls Club) is the musical project of American artist, musician, and songwriter Julian Isaac A. Hailing from the Inland Empire region of Southern California, Julian launched the project in 2014 during his sophomore year of high school. That same year, the debut EP Tired gained significant online traction, paving the way for subsequent releases like Healing Process and I’m Sorry I’m Like This . These projects delivered fan-favorite tracks such as “Yellow” and “I Hope You’re Doing Okay,” solidifying Pity Party’s presence in the indie rock scene. After a four-year hiatus, Pity Party (Girls Club) returned in 2022 with the highly acclaimed album Hard Times/Bad Trips , featuring hits like “I Hope That u Think of Me,” which has amassed over 100 million streams on Spotify. In 2024, Pity Party released their latest album, Even Though I Can’t Sleep… , a hauntingly introspective work that delves into themes of longing, sleepless nights, and self-reflection. Standout tracks like “Echoes in the Dark” and “Moonlit Silence” have received widespread acclaim, further cementing Julian’s reputation as a poignant storyteller in the indie rock world. Known for blending raw emotion with a simplistic yet innovative approach to music and art, Pity Party (Girls Club) continues to evolve, captivating audiences and shaping the indie rock landscape. Manwolves Manwolves is: Jamie McNear (vocals), Eli Cohen (guitar), Henry Wolf (bass), Julian Freeman (drums), and Ari Garfin (keys). 5 guys, whose friendships span beyond a decade, f",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/mustard-service/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-06-04T10:57:29.269475Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-10T10:33:42.275715Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_independent|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4e07025e6798",
              "venue_id": "venue_california_theatre",
              "title": "Don Giovanni - Opera San José",
              "event_time": "2026-09-17T19:30:00",
              "venue_name": "California Theatre",
              "event_start": "2026-09-17T19:30:00",
              "event_date": "2026-09-17",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "Relive the epic adventure on the big screen as Symphony San Jose performs John Williams's iconic, Oscar-winning score live. This special concert event brings the beloved cinematic masterpiece to life with full orchestral accompaniment.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-06-23T13:09:42.892074Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_symphony_san_jose",
                  "source_name": "Symphony San Jose",
                  "fetched_at": "2026-06-28T03:08:41.619469Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_california_theatre|2026-09-17",
              "run_id": "run_285788e23a8b",
              "run_label": "Don Giovanni - Opera San José, Sep 13 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0a159219fe71",
              "venue_id": "venue_great_star_theater",
              "title": "JOSH THOMAS: JIGGLE, JIGGLE",
              "event_time": "sep 17 8pm",
              "venue_name": "Great Star Theater",
              "event_start": "2026-09-17T20:00:00",
              "event_date": "2026-09-17",
              "venue_address": "636 Jackson Street, San Francisco, CA 94133",
              "description": "Josh Thomas is touring Australia with a brand new stand-up show Jiggle, Jiggle, premiering at Melbourne Comedy Festival in March, and continuing onto the Sydney, Brisbane and Perth Comedy Festivals. He promises this new live show will be an hour of dumb, happy, in no way *important* stand-up. “This year I just want to have fun,” said Josh. “Jiggle, jiggle.”",
              "event_types": [
                "comedy"
              ],
              "price_info": "Tickets",
              "url": "https://www.ticketmaster.com/event/1C0064CFD898F5D7?camefrom=CFC_ANOTHERPLANET_artist&brand=anotherplanet",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_great_star_theater",
                  "source_name": "Great Star Theater",
                  "fetched_at": "2026-06-23T15:32:44.786846Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-25T10:40:49.247198Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_great_star_theater|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c50fb7af4dc5",
              "venue_id": "venue_the_fillmore",
              "title": "josh conway: the plum tour",
              "event_time": "Thu Sep 17, 2026",
              "venue_name": "The Fillmore",
              "event_start": "2026-09-17T20:00:00",
              "event_date": "2026-09-17",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "The producer, songwriter, and co-founder of the Grammy-nominated band The Marías embarks on his debut solo tour. He will perform tracks from his new solo project, showcasing his signature dream-pop and indie sensibilities.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/josh-conway-the-plum-tour-san-francisco-california-09-17-2026/event/1C0064D6F357826C",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-07-05T10:25:53.259797Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-06T11:10:01.105806Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_fillmore|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e5b3328afdfe",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Matt Mathews",
              "event_time": "Sep 17, 2026 @ 7:00pm",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-17T19:00:00",
              "event_date": "2026-09-17",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Matt Mathews is a comedian, singer/songwriter and unapologetic trailblazer whose blend of raw honesty, quick wit and Southern charm has made him one of comedy’s fastest-rising stars. Born and rais…",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "https://sanjosetheaters.org/event/78356173-20260917190000",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "San Jose CPA",
                  "fetched_at": "2026-07-13T10:23:51.933005Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a8f07ddee70a",
              "venue_id": "venue_cry_baby",
              "title": "Rolling Quartz",
              "event_time": "sep 17 7pm",
              "venue_name": "Cry Baby",
              "event_start": "2026-09-17T19:00:00",
              "event_date": "2026-09-17",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "all ages; $50 vip",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$30",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_cry_baby|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_2384db241c73",
              "venue_id": "venue_rickshaw_stop",
              "title": "American Aquarium, Buffalo Nichols",
              "event_time": "sep 17 8pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-09-17T20:00:00",
              "event_date": "2026-09-17",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Supporting Talent: Buffalo Nichols",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$30.83",
              "url": "https://wl.seetickets.us/event/american-aquarium/695263?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-09-02T10:05:07.555428Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_2bf9f0db9abd",
              "venue_id": "venue_catalyst_sc",
              "title": "The Growlers",
              "event_time": "Sep 17, 2026 Doors: 7 pm Show: 8 pm",
              "venue_name": "The Catalyst",
              "event_start": "2026-09-17T19:00:00",
              "event_date": "2026-09-17",
              "venue_address": "1011 Pacific Ave, Santa Cruz, CA 95060",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$66.87",
              "url": "https://catalystclub.com/event/the-growlers/the-catalyst/santa-cruz-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_catalyst_sc",
                  "source_name": "The Catalyst",
                  "fetched_at": "2026-08-21T16:29:43.952279Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_catalyst_sc|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e4955c55a1cf",
              "venue_id": "venue_crepe_place",
              "title": "The Two Tracks, Henry Warde",
              "event_time": "2026-09-17",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-17T20:00:00",
              "event_date": "2026-09-17",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "TICKETS",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$15",
              "url": "https://thecrepeplace.com/shows-list/no-brainer-productions-presents-the-two-tracks-album-release-henry-warde-thursday-september-17-8pm-15",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f5dc2c8d5d30",
              "venue_id": "venue_abbott_square",
              "title": "AFROBEATS NITE SC",
              "event_time": "Thursday, September 17, 2026 6:30 PM - 8:30 PM",
              "venue_name": "Abbott Square Market",
              "event_start": "2026-09-17T18:30:00",
              "event_date": "2026-09-17",
              "venue_address": "725 Front St, Santa Cruz, CA 95060",
              "description": "Afrobeats Nite Santa Cruz is your bi-weekly dose of dance, rhythm, and pure vibes. Hosted by DJ Monk Earl at Abbott Square Market, it's more than just a party—it's a community celebration built on the beats of Afrobeats, the spirit of connection, and the joy of moving together. Come for the music, stay for the energy. Let’s dance, Santa Cruz!",
              "event_types": [
                "dj_party",
                "community"
              ],
              "price_info": "",
              "url": "https://www.abbottsquaremarket.com/events/n2ab9hpsd8kpsrhye9a69n2bd982da-r5x8y-yknwn-3t992",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_abbott_square",
                  "source_name": "Abbott Square Market",
                  "fetched_at": "2026-08-22T12:39:51.694804Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_abbott_square|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4e0dccfe7b36",
              "venue_id": "venue_thee_stork_club",
              "title": "Sadie Greyduck, Scissoring, Gwyniver, Lilotus",
              "event_time": "September 17, 2026 8:00PM",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-09-17T20:00:00",
              "event_date": "2026-09-17",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "[REDACTED] Fest presented by No Time Gigs & Digital Regress. Uranium Club, Good Flying Birds, Container, Cube and more! 09/19/2026 4:00 PM at Thee Stork Club Add",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://wl.seetickets.us/event/sadie-greyduck-scissoring-gwyniver-lilotus/700384?afflky=TheeStorkClub",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-08-22T14:35:18.029489Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b76a2cbebf25",
              "venue_id": "venue_verdi_club",
              "title": "Milonga Malevaje",
              "event_time": "2026-09-17T20:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-09-17T20:00:00",
              "event_date": "2026-09-17",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance"
              ],
              "price_info": "",
              "url": "https://www.verdiclub.net/events-calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-08-22T14:55:24.428239Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_verdi_club|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e9e191e3cbd5",
              "venue_id": "venue_crows_nest_sc",
              "title": "ROGUE ROOSTERS",
              "event_time": "Thursday September 17th 08:00 PM",
              "venue_name": "The Crow's Nest",
              "event_start": "2026-09-17T20:00:00",
              "event_date": "2026-09-17",
              "venue_address": "2218 East Cliff Dr, Santa Cruz, CA 95062",
              "description": "Thursday September 17th Classic rock, blues and Motown Starts at 08:00 PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$6 cover",
              "url": "https://www.facebook.com/RogueRoosters/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crows_nest_sc",
                  "source_name": "The Crow's Nest",
                  "fetched_at": "2026-08-22T15:19:13.909618Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crows_nest_sc|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_79d72b35fc35",
              "venue_id": "venue_the_marsh_berk",
              "title": "Nina Wises Motion Theater",
              "event_time": "2026-09-17",
              "venue_name": "The Marsh Berk",
              "event_start": "2026-09-17",
              "event_date": "2026-09-17",
              "venue_address": "2120 Allston Way, Berkeley, CA 94704",
              "description": "Nina Wise’s Motion Theater Class Description Motion Theater® is a dynamic practice that blends movement, storytelling, and improvisation. A Motion Theater workshop is designed to cultivate spontaneity, creativity, and embodied presence. Through guided exercises, participants translate inner experience into movement and narrative, discovering fresh ways to express themselves with authenticity and ease. This workshop is both playful and skill-building. In a supportive environment, you will: Explore the connection between body, imagination, and voice Learn tools for creative expression and improvisational performance Cultivate mindfulness and presence through movement Experience the joy of spontaneous storytelling Deepen your capacity for authentic self-expression and connection No performance background is required—just curiosity and a willingness to move, play, and discover. Whether you are an artist, a seeker, an actor, a writer, or simply someone longing for a deeper relationship with creativity and embodiment, this workshop offers an opportunity to unlock new pathways of expression. What’s Included Nina Wise offers a 6-week workshop in Motion Theater® a form of improvised, autobiographical storytelling. In a Motion Theater class, you’ll learn to tell your stories on your feet, utilizing language, sound and movement as your tools of expression. In each workshop you’ll: Warm up and free up your body and voice Move in response to your inner impulses Play theater games that open you up and generate creativity and well-being Hone your writing and storytelling skills Embody your personal narrative Engage in uplifting adult play Motion Theater practices are designed to raise your spirits, inspire personal insight, create community, expand awareness, enhance self-confidence and develop presence and craft as a leader or performer. Motion has been described by both participants and audiences as funny, moving, liberating and transformational. Motion is playful, mindful self-",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://themarsh.org/nina-wises-motion-theater/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-08-22T17:28:42.838285Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_marsh_berk|2026-09-17",
              "run_id": "run_c7e0a197762f",
              "run_label": "Nina Wises Motion Theater, Sep 10 – Oct 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_86c2fb2d1522",
              "venue_id": "venue_the_marsh_sf",
              "title": "Soul Story Theater",
              "event_time": "2026-09-17",
              "venue_name": "The Marsh SF",
              "event_start": "2026-09-17",
              "event_date": "2026-09-17",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "Suraya Keating’s Soul Story Theater Solo Performance Program for Women Class Description Facilitated by Suraya Keating, LMFT, Registered Drama Therapist & Soul Story Coach The Soul Story Theater Solo Performance Program is a 13-week creative journey for women who long to transform meaningful life experiences into an original solo performance. Through expressive arts, storytelling, writing, movement, and theater, you’ll discover the deeper meaning within your life’s journey while finding the courage to share your authentic voice. This transformational experience culminates in a live performance where each participant presents her original soul story before a supportive audience. During this immersive journey, you will: Unearth the story your soul has been longing to tell and shape it into a compelling, authentic performance piece. Transform limiting narratives into empowering ones, discovering the resilience, wisdom, and personal mythology woven throughout your life’s journey. Awaken your creative voice through an inspiring blend of writing, storytelling, movement, and theater while deepening your connection to your inner muse. Receive personalized coaching as you write, devise, rehearse, and confidently perform your original solo piece. Experience the power of a courageous circle of women who will witness, encourage, and celebrate your creative unfolding every step of the way. What’s Included 13-week hybrid program combining online coaching with in-person rehearsals 10 live Zoom group sessions (most Thursdays, 7:15–9:15 PM PT) 2 in-person rehearsal intensives (Saturdays, 10am-3pm) Two 55-minute individual coaching sessions via Zoom Public culminating performance with a live audience Fall 2026 Schedule Program Dates: September 10 – December 12, 2026 Zoom Sessions Thursdays | 7:15–9:15 PM (PT) September 10 & 24 October 1, 8 & 22 November 5, 12 & 19 December 3 plus Zoom Dress Rehearsal on Dec 10 In-Person Rehearsals at The Marsh SF Studio Saturdays | 10am-3pm October 3",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://themarsh.org/suraya-keating-soul-story-theater-solo-performance-program-for-women/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-08-22T17:28:42.838285Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-09-17",
              "run_id": "run_f0998957edb6",
              "run_label": "Soul Story Theater, Sep 10 – Dec 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_41d26f29da23",
              "venue_id": "venue_bargetto_winery",
              "title": "Anthony Arya at Thursday Night Music!",
              "event_time": "09/17/2026 6:00 pm - 8:00 pm",
              "venue_name": "Bargetto Winery",
              "event_start": "2026-09-17T18:00:00",
              "event_date": "2026-09-17",
              "venue_address": "3535 N Main St, Soquel, CA 95073",
              "description": "Join us at Bargetto Winery in Soquel on Thursday evenings for Live Music and Wine! 6-8PM No cover charge. Wine by-the-glass for purchase. Food will be available for purchase by ITALIAFIRE Open seating, no reservations required. No outside food is permitted. For more info please call: (831) 475-2258",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "No cover charge",
              "url": "https://bargetto.com/events2/anthony-arya-live-at-thursday-night-music-408/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bargetto_winery",
                  "source_name": "Bargetto Winery",
                  "fetched_at": "2026-08-22T19:05:36.747276Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bargetto_winery|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_aad7810a4f87",
              "venue_id": "venue_scpl_downtown",
              "title": "Writing Group for 55+ at Garfield Park",
              "event_time": "September 17 2026 10:30am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-17T10:30:00",
              "event_date": "2026-09-17",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "A writing workshop the 55+ age group to reflect on awareness of the natural environment and climate change.",
              "event_types": [
                "literary",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/14937989",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c9776c117474",
              "venue_id": "venue_scpl_downtown",
              "title": "Zentangle Club",
              "event_time": "September 17 2026 10:30am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-17T10:30:00",
              "event_date": "2026-09-17",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "The Zentangle Method is a fun way to create beautiful images by drawing structured patterns. Join Certified Zentangle Teacher Lisa Hoesing for an introductory workshop and monthly meetup.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15400883",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_78036651fa71",
              "venue_id": "venue_scpl_downtown",
              "title": "Wings Birth Certificate & Notary Services",
              "event_time": "September 17 2026 10:30am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-17T10:30:00",
              "event_date": "2026-09-17",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Wings provides free birth certificates and notary services for people experiencing homelessness.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15565075",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ee2bf0e17829",
              "venue_id": "venue_scpl_downtown",
              "title": "Storytime and Stay & Play @ Downtown",
              "event_time": "September 17 2026 10:30am - 11:30am",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-17T10:30:00",
              "event_date": "2026-09-17",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "For ages 0-5",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16122889",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d8ee0fd6beaf",
              "venue_id": "venue_scpl_downtown",
              "title": "Boulder Creek Book Group",
              "event_time": "September 17 2026 11:00am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-17T11:00:00",
              "event_date": "2026-09-17",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Are you stuck with a technology question? You can make a free appointment with a tech savvy library staff member!",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15401185",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_92bebf660d10",
              "venue_id": "venue_scpl_downtown",
              "title": "Preschool Story Time @ Live Oak",
              "event_time": "September 17 2026 11:00am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-17T11:00:00",
              "event_date": "2026-09-17",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Songs and Stories",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17067769",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3a2336979b8e",
              "venue_id": "venue_scpl_downtown",
              "title": "Friends of the Branciforte Library Chapter Meeting",
              "event_time": "September 17 2026 12:00pm - 1:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-17T12:00:00",
              "event_date": "2026-09-17",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Support the Branciforte Library by joining the Friends group! We meet monthly to fundraise and advocate for our branch. New members welcome?contact friendsofthebrancifortelibrary@fscpl.org.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15095427",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_14c7b43fbfda",
              "venue_id": "venue_scpl_downtown",
              "title": "Spirituality of Aging",
              "event_time": "September 17 2026 12:00pm - 1:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-17T12:00:00",
              "event_date": "2026-09-17",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Join Dr. Illana Berger, Roshi, a Zen teacher and spiritual elder guide with more than 25 years of experience for this four week course on the spirituality of aging.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16578352",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_27c953fe693b",
              "venue_id": "venue_scpl_downtown",
              "title": "Conversations in Español",
              "event_time": "September 17 2026 12:30pm - 1:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-17T12:30:00",
              "event_date": "2026-09-17",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "This club is designed for intermediate-level participants, so if you're just starting out, you might find it a bit challenging at first.",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15545063",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7c547cc9d301",
              "venue_id": "venue_scpl_downtown",
              "title": "Housing Matters Drop in Hours & Miracle Messages",
              "event_time": "September 17 2026 1:00pm - 3:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-17T13:00:00",
              "event_date": "2026-09-17",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Housing resources and other services for those experiencing homelessness.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15565126",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_95f6eb2fa098",
              "venue_id": "venue_scpl_downtown",
              "title": "Make & Explore @ Felton",
              "event_time": "September 17 2026 3:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-17T15:00:00",
              "event_date": "2026-09-17",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "These hands-on science workshops introduce Next Generation Science Standards skills through interactive projects.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15413155",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3a333881a703",
              "venue_id": "venue_scpl_downtown",
              "title": "Pokemon @ LOLA",
              "event_time": "September 17 2026 3:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-17T15:00:00",
              "event_date": "2026-09-17",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Bring your decks and get ready to play",
              "event_types": [
                "community",
                "sports"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16085260",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d23edd18fc0f",
              "venue_id": "venue_scpl_downtown",
              "title": "Afternoon STEAM: Minecraft @ Branciforte",
              "event_time": "September 17 2026 3:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-17T15:00:00",
              "event_date": "2026-09-17",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Learn how to craft, build, and survive in the world of Minecraft.edu.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16484370",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2338ec2c3bee",
              "venue_id": "venue_scpl_downtown",
              "title": "R.E.A.D. Program",
              "event_time": "September 17 2026 3:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-17T15:00:00",
              "event_date": "2026-09-17",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "R.E.A.D. is one-on-one reading and comprehension instruction for readers 1st through 12th grade.",
              "event_types": [
                "literary",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17037560",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_71f86ecd4f37",
              "venue_id": "venue_scpl_downtown",
              "title": "R.E.A.D.: Reach Every Amazing Detail @ Felton",
              "event_time": "September 17 2026 3:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-17T15:00:00",
              "event_date": "2026-09-17",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "R.E.A.D. is one-on-one reading comprehension instruction for grades 1-12. By appointment only. Please, no drop-ins! To make an appointment, call 831-427-7713.",
              "event_types": [
                "literary",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17185904",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9f08a3be965e",
              "venue_id": "venue_scpl_downtown",
              "title": "Girls Who Code @ Scotts Valley",
              "event_time": "September 17 2026 4:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-17T16:00:00",
              "event_date": "2026-09-17",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Girls Who Code is a nation-wide organization dedicated to teaching girls not only the language and skills of coding, but about finding their confidence, learning teamwork and the drive to succeed.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16910082",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3acaacfeec6c",
              "venue_id": "venue_scpl_downtown",
              "title": "Kids Crafternoon @ La Selva Beach",
              "event_time": "September 17 2026 4:00pm - 5:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-17T16:00:00",
              "event_date": "2026-09-17",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Stop by each week for a new creative craft.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16975682",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0cf6b57c35e4",
              "venue_id": "venue_scpl_downtown",
              "title": "AI Discussion Meetup",
              "event_time": "September 17 2026 6:00pm - 8:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-17T18:00:00",
              "event_date": "2026-09-17",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "How are you using generative AI?",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16640355",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a0539a5804b6",
              "venue_id": "venue_scpl_downtown",
              "title": "Vibration Meditation with David Stowell",
              "event_time": "September 17 2026 6:30pm - 7:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-17T18:30:00",
              "event_date": "2026-09-17",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Take a journey with Tibetan and crystal bowls, a native flute, and kalimba.",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15844422",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9a4d7eb354e7",
              "venue_id": "venue_scpl_downtown",
              "title": "Trivia On Tap",
              "event_time": "September 17 2026 6:30pm - 8:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-17T18:30:00",
              "event_date": "2026-09-17",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Test your trivia knowledge with Victor or Brian. We ask 30 questions about a random array of subjects. Who's better at doling out trivia than librarians?",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16875125",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8804ca5ae54f",
              "venue_id": "venue_the_knockout",
              "title": "After Dark Industrial Dance Party",
              "event_time": "2026/09/17 Thu: Sep 17 (9pm-1:30am)",
              "venue_name": "The Knockout",
              "event_start": "2026-09-17T21:00:00",
              "event_date": "2026-09-17",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "acid, italo disco, darkwave, industrial",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$5-10 | 21+",
              "url": "https://ra.co/events/2495171",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_944f43c44ac2",
              "venue_id": "venue_tommy_ts",
              "title": "JOE HILL",
              "event_time": "Sept 17th",
              "venue_name": "Tommy T's",
              "event_start": "2026-09-17",
              "event_date": "2026-09-17",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "JOE HILL\nSept 17th\nTickets",
              "event_types": [
                "comedy"
              ],
              "price_info": "Tickets",
              "url": "https://tommyts-com.seatengine.com/events/140327",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-08-22T21:57:38.329553Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a6cd9deb5840",
              "venue_id": "venue_the_sound_room",
              "title": "An Evening of Illusions",
              "event_time": "Thursday, September 17, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-09-17T19:30:00",
              "event_date": "2026-09-17",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Join us for a night where reality blurs and wonder unfolds.\n\nJonathan Molo has captivated audiences across the country with his one-of-a-kind blend of magic, mentalism, and comedy — all delivered with heart, humor, and his signature purple suit. Jonathan is a proud member of the Academy of Magical Arts and a regular performer at the legendary The Magic Castle in Hollywood. In 2025, he was crowned the Magic Castle Strolling Showdown Champion, and returned the following year to place 2nd among 24 top magicians, solidifying his reputation as one of the premier close-up performers in the country.\n\n​Performing more than 150 events each year, his performances combine sleight-of-hand, mind-reading, and comedy to create unforgettable moments where the magic happens in the hands of the audience.\n\n​Michael Nguyen is a magician known for his captivating visual magic that appeals to all audiences. A classically trained, award-winning performer, he is a graduate of the Chavez Studio of Magic, specializing in prestidigitation and dexterity. He is the current President of The Oakland Magic Circle\n\nTickets at An Evening of Illusions with Jonathan Molo & Michael Nguyen",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/an-evening-of-illusions-with-jonathan-molo-amp-michael-nguyen",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-08-26T10:25:42.190144Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7834709c94b6",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Little Shop of Horrors",
              "event_time": "7:30PM, Thursday, September 17, 2026",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-09-17T19:30:00",
              "event_date": "2026-09-17",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Book & Lyrics by Howard Ashman, Music by Alan Menken. Based on the film by Roger Corman, Screenplay by Charles Griffith. Directed by Ben Villegas Randle, Musical Direction by Jad Bernardo, Choreography by Leslie Waggoner",
              "event_types": [
                "theater",
                "live_music"
              ],
              "price_info": "",
              "url": "https://nctcsf.org/event/little-shop/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-08-26T11:06:39.262369Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-09-17",
              "run_id": "run_5315ef200ae4",
              "run_label": "Little Shop of Horrors, Sep 12 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_451325347cec",
              "venue_id": "venue_la_pena",
              "title": "Berkeley Old-Time Music Convention",
              "event_time": "September 17 @ 7:00 pm",
              "venue_name": "La Pena",
              "event_start": "2026-09-17T19:00:00",
              "event_date": "2026-09-17",
              "venue_address": "3105 Shattuck Ave, Berkeley, CA 94705",
              "description": "Berkeley Old-Time Music Convention: five-day festival comes to La Peña! Pay-what-you-can workshop and jam precede the evening show. Workshop 4:00 PM – 5:00 PM (pay-what-you-can) | Jam 5:30 PM – […]",
              "event_types": [
                "festival",
                "folk",
                "workshop",
                "live_music"
              ],
              "price_info": "$39 – $44",
              "url": "https://lapena.org/event/the-berkeley-old-time-music-convention-thursday-concert/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_la_pena",
                  "source_name": "La Pena",
                  "fetched_at": "2026-08-26T11:21:25.407030Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_la_pena|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_88e0f4f9653e",
              "venue_id": "venue_guild_theatre",
              "title": "Phantom Planet",
              "event_time": "SEP\n17\n8:00 PM",
              "venue_name": "Guild Theatre",
              "event_start": "2026-09-17T20:00:00",
              "event_date": "2026-09-17",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "DOORS OPEN: 7:00 PM • SHOW: 8:00 PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.guildtheatre.com/shows/phantom-planet-18-sep",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-08-28T10:40:15.787828Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_guild_theatre|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d582f245ffcc",
              "venue_id": "venue_the_freight__salvage",
              "title": "Electric Blues & Classic Grooves",
              "event_time": "2026-09-17T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-17T19:00:00",
              "event_date": "2026-09-17",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "A lively concert showcasing electrifying blues rhythms, soulful melodies, and classic vintage grooves.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35\n(INCLUDES ALL FEES)",
              "url": "https://secure.thefreight.org/16049/16050",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_53f872e1024b",
              "venue_id": "venue_sfjazz_miner",
              "title": "Branford Marsalis & Dianne Reeves",
              "event_time": "2026-09-17 7:30 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-09-17T19:30:00",
              "event_date": "2026-09-17",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Saxophone great and NEA Jazz Master Branford Marsalis and his superlative quartet are joined by fellow NEA Jazz Master and jazz’s greatest vocalist, Dianne Reeves , for a week devoted to the immortal music of John Coltrane, in honor of the centennial of his birth. Saxophonist Branford Marsalis is one of the most inﬂuential and revered ﬁgures in contemporary music. The NEA Jazz master, three-time Grammy Award winner, and Tony and EMMY Award nominee is equally at home performing concertos with symphony orchestras and sitting in with members of the Grateful Dead, but the core of his musical universe remains the Branford Marsalis Quartet. After more than three decades of existence with minimal personnel changes, this celebrated ensemble is revered for its uncompromising interpretation of a kaleidoscopic range of both original compositions and jazz and popular classics. The Branford Marsalis Quartet and Dianne Reeves will release a tribute album which revisits Coltrane’s seminal 1963 collaboration with Johnny Hartman. Originally recorded at Rudy Van Gelder’s studio in March of 1963, John Coltrane and Johnny Hartman was a sublime showcase for Coltrane, McCoy Tyner, Jimmy Garrison, and Elvin Jones, who gave remarkable depth and sensitivity to a selection of standards including Irving Berlin’s “They Say It’s Wonderful,” Guy Wood’s “My One and Only Love,” and the definitive version of Billy Strayhorn’s “Lush Life.” Bringing the songs to life was the distinctive, evocative baritone of crooner Johnny Hartman, who was the only vocalist Coltrane ever collaborated with. Interpreting the songs with her own singular gifts, Reeves is a five-time GRAMMY winner who is accurately called “The most admired jazz diva since the heyday of Sarah Vaughan, Ella Fitzgerald and Billie Holiday” ( NY Times ). She is an artist who embodies the music’s enduring values of elegance, class, and improvisational poise, with an innate feel for swing.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/branford-marsalis-and-dianne-reeves-celebrate-john-coltrane/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_f7862b07d9a0",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Speaking Axolotl",
              "event_time": "2026-09-17 7:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-09-17T19:00:00",
              "event_date": "2026-09-17",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "TONIGHT come hear decolonized verses, spanglish poesia, Latine spokenword, Pocho poemas and neighborhood chisme at Speaking Axolotl, the Bay Area’s long running monthly Latine Reading series. 10 slot open mic goes up a las 6:50PM. Open mic poets have 5 minutes to read.\n\n!This month’s Speaking Axolotl is being guest curated by Yen La Poeta",
              "event_types": [
                "literary"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/speaking-axolotl-guest-curated-by-yen-la-poeta",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-08-28T14:05:33.197491Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0dfcb1d55da8",
              "venue_id": "venue_temescal_arts_center",
              "title": "Improvisation Workshop - First Tuesdays",
              "event_time": "2026-09-17T20:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-09-17T20:00:00",
              "event_date": "2026-09-17",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Improvisation is the key - hosted by Lewis Jordan. Open Workshop and Playground in free improvisation. Spontaneously Assembled Small Groups will collaborate. Come to listen, to be heard, to see, to move. Inviting musicians, poets, dancers, to a non-hierarchical setting to improvise together. Spontaneously composing or conducting, we'll be on a quest for fire.",
              "event_types": [
                "workshop",
                "experimental"
              ],
              "price_info": "Donations encouraged",
              "url": "https://www.temescalartcenter.org/tacmusic.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-08-28T14:09:19.773505Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-09-17",
              "run_id": "run_16a4ae4ccea6",
              "run_label": "Improvisation Workshop - First Tuesdays, Sep 1 – Dec 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a2b195101b60",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-09-17",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-09-17",
              "event_date": "2026-09-17",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-09-17",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9d7e1f3a411f",
              "venue_id": "venue_paramount_theatre",
              "title": "The Bald and the Beautiful Live",
              "event_time": "09/17/2026 7:30 PM",
              "venue_name": "Paramount Theatre",
              "event_start": "2026-09-17T19:30:00",
              "event_date": "2026-09-17",
              "venue_address": "2025 Broadway, Oakland, CA 94612",
              "description": "Show And Tell presents Trixie Mattel and Katya Zamolodchikova live in The Bald and the Beautiful LIVE: Very Bald, Very Beautiful. Ages 18 & Over.",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.paramountoakland.org/events/detail/the-bald-and-the-beautiful-live",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_paramount_theatre",
                  "source_name": "Paramount Theatre",
                  "fetched_at": "2026-08-28T15:07:11.727744Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_paramount_theatre|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_06e4d874a359",
              "venue_id": "venue_dawn_club",
              "title": "MIKE OLMOS",
              "event_time": "Thursday, September 17, 2026 8:00 PM 11:59 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-09-17T20:00:00",
              "event_date": "2026-09-17",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Mike Olmos has become one the most in demand jazz musicians in the San Francisco Bay Area while maintaining a frequent national and international performance/touring schedule. In the Bay, Mike has been performing with various bands such as the Marcus Shelby Jazz Orchestra, Lavay Smith and her Red Hot Skillet Lickers, Pete Escovedo, Wil Blades, Eddie Roberts, Jubu and Legally Blynd. ​When in town he can be found hosting and joining jam sessions at local clubs.​He has had the privilege of performing with Rosemary Clooney, Etta James, Michael Buble and many other great talents.He can be heard on late legendary Blues/R&B singer Etta James' Grammy nominated final album \"The Dreamer\" as well as many others.\n\n\n  \n#block-e7a2a625d5404ea075e6 {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n\n\n  }\n\n  #block-e7a2a625d5404ea075e6 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-e7a2a625d5404ea075e6 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-e7a2a625d5404ea075e6 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-e7a2a625d5404ea075e6 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-e7a2a625d5404ea075e6 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-e7a2a625d5404ea075e6 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/mike-olmos-quintet-1-tmadk-jz535-cwpmt-52csh-8cllg-zj9h4-bbrtp-bh4nk-55rrn-tfbhj-a56jl-42rlj-frrt8",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-08-28T15:32:50.415811Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_62e892a4ace1",
              "venue_id": "venue_odc_theater",
              "title": "The Machaut Project: Devotion & Desire",
              "event_time": "9/17 7:30PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-09-17T19:30:00",
              "event_date": "2026-09-17",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "classical",
                "live_music",
                "theater"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM0000042vaz2AA",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-08-28T16:07:20.992529Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_13e2f38082e0",
              "venue_id": "venue_sfmoma",
              "title": "A Modern Scandal",
              "event_time": "Thursday, Sep 17, 2026 | 6–8 p.m.",
              "venue_name": "SFMoma",
              "event_start": "2026-09-17T18:00:00",
              "event_date": "2026-09-17",
              "venue_address": "151 Third St, San Francisco, CA 94103",
              "description": "WORKSHOP",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.sfmoma.org/event/a-modern-scandal-an-evening-of-art-making/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sfmoma",
                  "source_name": "SFMoma",
                  "fetched_at": "2026-08-28T16:39:30.693329Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfmoma|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_975956735315",
              "venue_id": "venue_omca",
              "title": "BeHere / 1942 Member Preview",
              "event_time": "2026-09-17T11:00:00",
              "venue_name": "OMCA",
              "event_start": "2026-09-17T11:00:00",
              "event_date": "2026-09-17",
              "venue_address": "1000 Oak St, Oakland, CA 94607",
              "description": "Be among the first to experience BeHere/1942: A New Lens on the Japanese American Incarceration—an immersive gallery installation and augmented reality (AR) experience by world-renowned media artist, Masaki Fujihata. Reflecting on the impact of Executive Order 9066, which led to the incarceration of Japanese Americans during World War II, the exhibition uses digital media to reframe how history and memory are seen and felt.",
              "event_types": [
                "art"
              ],
              "price_info": "Free for Members",
              "url": "https://museumca.org/event/member-preview-hours-for-behere-1942/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_omca",
                  "source_name": "OMCA",
                  "fetched_at": "2026-08-28T16:49:24.654558Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_omca|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a5524f16150d",
              "venue_id": "venue_cry_baby",
              "title": "Rolling Quartz",
              "event_time": "2026-09-17T07:00:00.000Z",
              "venue_name": "Cry Baby",
              "event_start": "2026-09-17T07:00:00",
              "event_date": "2026-09-17",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "Leo Presents Rolling Quartz - My Turn 2026 Tour - Live in Oakland Thu Sep 17, 2026 6:00 PM All Ages Buy Tickets Additional Info + Google Calendar Related Events Buy Tickets Sat Jul 18 CASEY VEGGIE'S BIRTHDAY BASH HOSTED BY BENDERS TAKE THE WEST Buy Tickets Sat Jul 18 CAFE CALIENTE: Baddies Y Band Buy Tickets Sat Jul 18 DESMADRE A LA VUELTA w/ Profesito + Mare E. Fresh + Healing Hottie & Patio Takeover by NoiseCandy",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://crybaby.live/tm-event/rolling-quartz-my-turn-2026-tour-live-in-oakland/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-08-28T19:56:15.638282Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cry_baby|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7eca5be8e047",
              "venue_id": "venue_exploratorium",
              "title": "Daytime Members-Only Hours",
              "event_time": "2026-09-17",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-17",
              "event_date": "2026-09-17",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Please consider joining us today ! Members are the backbone of our organization and help ensure the continuity of our mission to create inquiry-based experiences that transform learning worldwide. We can’t wait to see you at the museum.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/member-hours",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-17",
              "run_id": "run_e38dfc952011",
              "run_label": "Daytime Members-Only Hours, Aug 30 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4b6b1af23733",
              "venue_id": "venue_exploratorium",
              "title": "After Dark: Unplug and Play",
              "event_time": "Thu, Sep 17 2026 • 6 - 10pm",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-17T18:00:00",
              "event_date": "2026-09-17",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Your monthly invitation to hang out and try something new—play science trivia, find your community, and connect deeply.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/after-dark-unplug-play-sep2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ce9a3eea9d16",
              "venue_id": "venue_club_fox",
              "title": "Mark Karan’s Budz",
              "event_time": "Thursday September 17th Doors 7:30PM / Show 8PM",
              "venue_name": "Club Fox",
              "event_start": "2026-09-17T19:30:00",
              "event_date": "2026-09-17",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Eventbrite - Club Fox presents MARK KARAN'S BUDZ - Thursday, September 17, 2026 at Club Fox, Redwood City, CA. Find event and ticket information.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/mark-karans-buds-tickets-1997801190139?aff=oddtdtcreator&keep_tld=true",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-08-28T22:45:26.741794Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4924d864a358",
              "venue_id": "venue_rhythmix",
              "title": "The Locals: Opening Reception",
              "event_time": "2026-09-17T18:00:00",
              "venue_name": "Rhythmix",
              "event_start": "2026-09-17T18:00:00",
              "event_date": "2026-09-17",
              "venue_address": "2513 Blanding Ave, Alameda, CA 94501",
              "description": "Opening reception for \"The Locals\" exhibit at K Gallery. Exhibit dates listed as September 11 to October 25, 2026.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://www.rhythmix.org/upcoming-exhibits/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rhythmix",
                  "source_name": "Rhythmix",
                  "fetched_at": "2026-08-28T23:14:01.025318Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rhythmix|2026-09-17",
              "run_id": "run_566a8f02098a",
              "run_label": "The Locals: Opening Reception, Sep 11 – Oct 25",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_022340fe04e6",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-09-17",
              "venue_name": "De Young",
              "event_start": "2026-09-17",
              "event_date": "2026-09-17",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-17",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4878a180ea15",
              "venue_id": "venue_rootstock_arts",
              "title": "IMPROMPTU",
              "event_time": "Thu, 17 Sep 2026\n7:30 PM (PDT)",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-09-17T19:30:00",
              "event_date": "2026-09-17",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.viewcy.com/event/impromptu",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-08-29T00:16:02.821734Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5641285e40a8",
              "venue_id": "venue_punch_line",
              "title": "RED RICHARDSON",
              "event_time": "Sep 17, 2026 8:00 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-17T20:00:00",
              "event_date": "2026-09-17",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "British comedian and viral sensation Red Richardson brings his sharp, toxic-skewering wit and hilarious storytelling across the pond.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/red-richardson-san-francisco-california-09-17-2026/event/1C0064C9C6D972F6",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9f4e80e0ad68",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "IAN BAGG",
              "event_time": "Thu Sep 17, 2026 7:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-09-17T19:30:00",
              "event_date": "2026-09-17",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Renowned for his fast-paced crowd work and quick wit, comedian Ian Bagg headlines a night of unpredictable live stand-up.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/ian-bagg-san-francisco-california-09-17-2026/event/1C0064B452312777",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c6555e8d0354",
              "venue_id": "venue_shapeshifters",
              "title": "Gravitational Lensing: Feminist Film Dialogues",
              "event_time": "2026-09-17",
              "venue_name": "Shapeshifters",
              "event_start": "2026-09-17",
              "event_date": "2026-09-17",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "Program 17: Family Portraits/Relational Exercises includes a spectrum of diaristic films—from uncanny documentary to autobiographical re-enactments—that manifest different ways filmmakers choose to represent their relationships to family and, more broadly, to home (both literal and conceptual) through cinematic language.",
              "event_types": [
                "film"
              ],
              "price_info": "San Francisco Cinematheque",
              "url": "https://sfcinematheque.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shapeshifters",
                  "source_name": "Shapeshifters",
                  "fetched_at": "2026-08-30T10:04:33.112973Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-09-17",
              "run_id": "run_8afbca984fe1",
              "run_label": "Gravitational Lensing: Feminist Film Dialogues, Sep 9 – Nov 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5acd6ed82b4b",
              "venue_id": "venue_the_elbo_room",
              "title": "Comedy Oakland at The Elbo Room - Thu Sep 17 2026",
              "event_time": "2026-09-17T19:30:00",
              "venue_name": "The Elbo Room",
              "event_start": "2026-09-17T19:30:00",
              "event_date": "2026-09-17",
              "venue_address": "311 Broadway, Oakland, CA 94607",
              "description": "Live stand-up comedy show by Comedy Oakland featuring a rotating lineup of diverse comedic talent at Elbo Room Jack London.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Free RSVP / From $0.00",
              "url": "https://www.eventbrite.com/e/comedy-oakland-at-the-elbo-room-thu-sep-17-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_elbo_room",
                  "source_name": "The Elbo Room",
                  "fetched_at": "2026-08-31T10:09:45.262566Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_elbo_room|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_47eb672c3db0",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "SARA RODENBERG, ESSIE THOMAS, JANE FRANK",
              "event_time": "Thu Sep 17 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-17T19:00:00",
              "event_date": "2026-09-17",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "Singer-Songwriters In-The-Round",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "21+, $10.00",
              "url": "https://wl.seetickets.us/event/sara-rodenberg-essie-thomas-jane-frank/703948?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-08-31T12:12:52.447528Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_601b9c56cf11",
              "venue_id": "venue_brava_theater",
              "title": "HUMP! Film Festival – Fall Season",
              "event_time": "2026-09-17",
              "venue_name": "Brava Theater",
              "event_start": "2026-09-17",
              "event_date": "2026-09-17",
              "venue_address": "2781 24th St, San Francisco, CA 94110",
              "description": "HUMP! is a live, curated short film festival celebrating sex, love, kink, humor, vulnerability, and human creativity told by real people and experienced together, in theaters, as it was meant to be.\n\nFounded by Dan Savage, HUMP! has spent over two decades proving that intimacy is culture and that audiences are hungry for work that is bold, funny, handmade, and deeply human.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.brava.org/all-events/humpfallfestival2026-6zp3n-hp5pk-w2pcm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brava_theater",
                  "source_name": "Brava Theater",
                  "fetched_at": "2026-08-31T12:29:43.593913Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brava_theater|2026-09-17",
              "run_id": "run_3a948c83cb9d",
              "run_label": "HUMP! Film Festival – Fall Season, Sep 17 – Sep 19",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_43d779796041",
              "venue_id": "venue_cal_academy_of_science",
              "title": "NightLife",
              "event_time": "2026-09-17T18:00:00",
              "venue_name": "Cal Academy of Science",
              "event_start": "2026-09-17T18:00:00",
              "event_date": "2026-09-17",
              "venue_address": "55 Music Concourse Dr, San Francisco, CA 94118",
              "description": "We've got good vibes down to a science. Make friends with 60,000 creatures and discover the unexpected.",
              "event_types": [
                "community"
              ],
              "price_info": "$26.00",
              "url": "https://www.calacademy.org/nightlife/nightlife-september-17",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cal_academy_of_science",
                  "source_name": "Cal Academy of Science",
                  "fetched_at": "2026-08-31T12:46:28.638169Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_cal_academy_of_science|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9de632e083b1",
              "venue_id": "venue_presidio_theater",
              "title": "Anza 250: A Documentary Film",
              "event_time": "SEP 17, 2026",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-09-17T19:30:00",
              "event_date": "2026-09-17",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "250 years ago, explorer Juan Bautista de Anza arrived with an expeditionary party on the peninsula that was to become San Francisco. To mark this significant occasion, the Presidio Historical Association, with the support of the San Francisco Historical Society, is honored to present, on the exact date of the Presidio's own 250th anniversary, the world premiere of Anza 250: A Documentary Film. This feature chronicles Professor Luis Valle as he retraces Anza’s journey, traveling 1,200 miles—by bike—along the expedition's original route from present-day Sonora, Mexico, to San Francisco. Learn more about his experience along the way, bringing historical and cultural context to Anza's arrival and what it wrought, a true world-changing moment in time.",
              "event_types": [
                "film"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.presidiotheatre.org/show-details/anza-250",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-08-31T13:00:36.584647Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_df82fc22a3d2",
              "venue_id": "venue_boom_boom_room",
              "title": "William Johnston’s Superband",
              "event_time": "Thu, Sep 17, 2026 Doors: 7 pm // Show: 8:30 pm",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-09-17T20:30:00",
              "event_date": "2026-09-17",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "Date: Thursday Night, September 17thDoors: 7:00PMthShow: 9:00PM going 'til 1:30AMTix Price:  ~No Cover Charge/ Admission Gratis ~   ** WILLIAM JOHNSTON’s EXTRAVAGANT SUPERBAND  ** _____________ WILLIAM JOHNSTON’s EXTRAVAGANT SUPERBAND  Channeling the dark wit and biting social commentary of the 70’s, multi-instrumentalist William Johnston has sharpened his songwriting craft to a deadly edge, ready to cut the wires of the systems that keep us in place. Think the acidity of Steely Dan with the smooth finish of Al Green- too modern to be Retro Soul but too funky to simply be Indie Rock.   Amazing show!_____________ ~No Cover Charge/ Admission Gratis ~",
              "event_types": [
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://boomboomroom.com/event/william-johnstons-extravagant-superband-no-cover-11/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-08-31T14:05:05.078255Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c23559203cfe",
              "venue_id": "venue_ashkenaz",
              "title": "Third Thursday Tango",
              "event_time": "09/17/2026 7:00 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-09-17T19:00:00",
              "event_date": "2026-09-17",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "Charles Gorczynski & Scott O’Day Tango Duo plus Live DJ Set",
              "event_types": [
                "live_music",
                "latin_world",
                "dj_party",
                "dance"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/195972",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-08-31T14:45:33.243069Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bbbbe75d1457",
              "venue_id": "venue_yerba_buena_center",
              "title": "GaHee Park: Behind the Curtain",
              "event_time": "2026-09-17",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-17",
              "event_date": "2026-09-17",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Park invites us to peek behind the curtain, as she lays claim to her own power as a surrealist painter working across fantasy and intimacy.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/gahee-park-behind-the-curtain/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-17",
              "run_id": "run_5353f80886f6",
              "run_label": "GaHee Park: Behind the Curtain, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b81690c44fb3",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dream",
              "event_time": "2026-09-17",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-17",
              "event_date": "2026-09-17",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public art installation commissioned by YBCA and co-sponsored by San Francisco Public Works.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dream-public-art/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-17",
              "run_id": "run_b6a5ba4e8809",
              "run_label": "Dream, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7f6c386bacda",
              "venue_id": "venue_yerba_buena_center",
              "title": "SoMa Mahal Kita",
              "event_time": "2026-09-17",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-17",
              "event_date": "2026-09-17",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A message of love for the SoMa neighborhood and community, inspired by weaving practices in the Phillipines and the colors of the Filipino flag.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/soma-mahal-kita-soma-i-love-you-ciriaco-sayoc/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-17",
              "run_id": "run_0c5141fff335",
              "run_label": "SoMa Mahal Kita, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4a6d61e8c0ee",
              "venue_id": "venue_yerba_buena_center",
              "title": "We Rooted in Flight",
              "event_time": "2026-09-17",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-17",
              "event_date": "2026-09-17",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public artwork inviting passerbyers to join in the journey of collective flight",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/we-fly-for-a-liberated-we-we-rooted-in-flight/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-17",
              "run_id": "run_1d34139aedcf",
              "run_label": "We Rooted in Flight, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4ea49c43caf2",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-09-17T14:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-17T14:00:00",
              "event_date": "2026-09-17",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-17",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_c2c2beaf3baf",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-09-17T18:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-17T18:00:00",
              "event_date": "2026-09-17",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-17",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 2,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_5c74580e2167",
              "venue_id": "venue_elis_mile_high",
              "title": "Honey Pluton & Spike Einbinder",
              "event_time": "Thu, Sep 17, 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-09-17",
              "event_date": "2026-09-17",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "Comedy Show: Honey Pluton & Spike Einbinder Thu, Sep 17 | Eli's Mile High Club Buy Tickets Time & Location Sep 17, 2026, 7:00 PM – 11:00 PM Eli's Mile High Club, 3629 Martin Luther King Jr Way, Oakland, CA 94609, USA Tickets Ticket type General Admission Sale ends Sep 17, 7:00 PM Price $15.00 +$0.38 ticket service fee Quantity 0 Total $0.00 Checkout Share this event",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.elismilehighclub.com/events/comedy-show-honey-pluton-spike-einbinder",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-08-31T16:36:06.503526Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fa628046b74e",
              "venue_id": "venue_chase_center",
              "title": "Premium Suites",
              "event_time": "2026-09-17",
              "venue_name": "Chase Center",
              "event_start": "2026-09-17",
              "event_date": "2026-09-17",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "At Select-A-Suite on Thursday, September 17, 2026, not only will you have the opportunity to reserve your suites before they are released to the public, but attendees can also enjoy complimentary food and beverage tastings throughout the event, network with fans and business professionals, and have the opportunity to capture a photo with the Larry O'Brien Trophies.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://chasecenter.com/premium-experiences/premium-suites/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-08-31T17:38:13.687686Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-09-17",
              "run_id": "run_bed5be826f7c",
              "run_label": "Premium Suites, Sep 10 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_66f9553fd74e",
              "venue_id": "venue_tupelo",
              "title": "Jinx Jones and the Kingtones",
              "event_time": "Thursday September 17th 9:00PM - 1:00AM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-17T21:00:00",
              "event_date": "2026-09-17",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "Rockabilly at its absolute finest! Tupelo is so very very very pleased to present Jinx Jones and the Kingtones on the Tupelo stage the first Friday of every month. Heck yeah...",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5caa2252c69f",
              "venue_id": "venue_cafe_zoe_pizza_guy",
              "title": "Open Mic Night",
              "event_time": "2026-09-17T01:00:00",
              "venue_name": "Cafe Zoe",
              "event_start": "2026-09-17T01:00:00",
              "event_date": "2026-09-17",
              "venue_address": "1929 Menalto Ave, Menlo Park, CA 94025",
              "description": "Hosted by Pete Sommer. Signups to perform open at 5:30pm.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://neighborhood.pizza/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cafe_zoe_pizza_guy",
                  "source_name": "Cafe Zoe",
                  "fetched_at": "2026-09-02T10:14:27.017935Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cafe_zoe_pizza_guy|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_9d3a3e710603",
              "venue_id": "venue_f8",
              "title": "Fern's Bday Bash",
              "event_time": "2026-09-17T21:00:00",
              "venue_name": "F8",
              "event_start": "2026-09-17T21:00:00",
              "event_date": "2026-09-17",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "Causmic Creative's monthly bass music party at F8 celebrating Fern's birthday with local West Coast bass selectors.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10",
              "url": "https://ra.co/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-09-02T10:39:00.610887Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_f8|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_b9188cbed89d",
              "venue_id": "venue_madrone_art_bar",
              "title": "MACY BLACKMAN",
              "event_time": "September 17 @ 6:00 pm - 8:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-17T18:00:00",
              "event_date": "2026-09-17",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "6-8pm Macy Blackman on the Piano No Cover New Orleans R&B Hearing Macy Blackman is like stepping into New Orleans in 1955.",
              "event_types": [
                "rnb_soul_funk",
                "live_music"
              ],
              "price_info": "No Cover",
              "url": "https://madroneartbar.com/event/macy-blackman-5/2026-09-17/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e4b707496f2e",
              "venue_id": "venue_madrone_art_bar",
              "title": "WeWorkHere",
              "event_time": "September 17 @ 9:00 pm - 11:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-17T21:00:00",
              "event_date": "2026-09-17",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Local500 Presents: WeWorkHere You’ve seen them behind the bar but tonight, they are mixing more than just cocktails. Madrone’s very own bar staff Dave, Noah, Rene and other locals are DJing a combination of HOUSE, TECHNO, and CLUB music. No Cover 9:00pm.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "No Cover",
              "url": "https://madroneartbar.com/event/weworkhere-17-2026-04-16-2026-09-17/2026-09-17/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a7dc1442a795",
              "venue_id": "venue_moes_alley",
              "title": "The Schizophonics",
              "event_time": "2026-09-17T20:00:00",
              "venue_name": "Moe's Alley",
              "event_start": "2026-09-17T20:00:00",
              "event_date": "2026-09-17",
              "venue_address": "1535 Commercial Way, Santa Cruz, CA 95065",
              "description": "Show: 8:00 PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_moes_alley",
                  "source_name": "Moe's Alley",
                  "fetched_at": "2026-09-03T10:23:10.512238Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_moes_alley|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d75d7601ba61",
              "venue_id": "venue_kuumbwa_jazz",
              "title": "Sarah Elizabeth Charles – Dawn",
              "event_time": "2026-09-17T19:00:00",
              "venue_name": "Kuumbwa Jazz Center",
              "event_start": "2026-09-17T19:00:00",
              "event_date": "2026-09-17",
              "venue_address": "320-2 Cedar St, Santa Cruz, CA 95060",
              "description": "Sarah Elizabeth Charles is a vocalist/composer/producer/teaching artist/mother based in Brooklyn, New York.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kuumbwa_jazz",
                  "source_name": "Kuumbwa Jazz Center",
                  "fetched_at": "2026-09-03T10:24:11.929813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kuumbwa_jazz|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_de0555dad547",
              "venue_id": "venue_black_cat",
              "title": "The Kuumba Experience",
              "event_time": "2026-09-17T19:00:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-17T19:00:00",
              "event_date": "2026-09-17",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n9:15 show: Bar @ 6:00, Doors @ 8:30 \n\n\n\n\nA late-night conversation in groove, where jazz, R&B, funk, soul, fusion, voice, and improvisation move between the band and the room.\n\n\n\n\nThe Kuumba Experience brings a living, breathing set to Black Cat — rhythm-forward, soulful, and built around the energy of creation in real time. With drums, keys, bass, guitar, and vocals moving as one, the music opens up into something fluid, intimate, and electric.\n\n\n\n\n“Kuumba” means to create: to make, to shape, to leave something more beautiful behind. After Dark lives in that spirit, inviting the audience inside the music as it unfolds.\n\n\n\n\nBand Lineup:\n\nJordan McGowan, producer/drums\n\nVernon Hall, bass\n\nSkylar, lead vocals\n\nJeriko Blaq, lead guitar\n\nJamie Hawkins, musical director/keys\n\nWayne Jackson, creative director",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $30 , $40 , $50",
              "url": "https://blackcatsf.turntabletickets.com/shows/12345/2026-09-17",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_20d3179da293",
              "venue_id": "venue_black_cat",
              "title": "The Kuumba Experience",
              "event_time": "2026-09-17T21:15:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-17T21:15:00",
              "event_date": "2026-09-17",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n9:15 show: Bar @ 6:00, Doors @ 8:30 \n\n\n\n\nA late-night conversation in groove, where jazz, R&B, funk, soul, fusion, voice, and improvisation move between the band and the room.\n\n\n\n\nThe Kuumba Experience brings a living, breathing set to Black Cat — rhythm-forward, soulful, and built around the energy of creation in real time. With drums, keys, bass, guitar, and vocals moving as one, the music opens up into something fluid, intimate, and electric.\n\n\n\n\n“Kuumba” means to create: to make, to shape, to leave something more beautiful behind. After Dark lives in that spirit, inviting the audience inside the music as it unfolds.\n\n\n\n\nBand Lineup:\n\nJordan McGowan, producer/drums\n\nVernon Hall, bass\n\nWayne Jackson, creative director",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $30 , $40 , $50",
              "url": "https://blackcatsf.turntabletickets.com/shows/12345/2026-09-17",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bc4aa9c97425",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Fog City Swing",
              "event_time": "Thursday, September 17, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-17T19:00:00",
              "event_date": "2026-09-17",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Thursday, September 17, 2026 @ 7pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $35 per show",
              "url": "https://keysjazzbistro.com/event/fog-city-swing-11/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ca7cf551f7ac",
              "venue_id": "venue_brick_and_mortar",
              "title": "DUTCH MELROSE, BENNY MAYNE, PRETTY HAVOC",
              "event_time": "9.17 Show: 8:00PM",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-09-17T20:00:00",
              "event_date": "2026-09-17",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Event Details Brick & Mortar Music Hall Presents Dutch Melrose September 17, 2026 8:00 pm PDT (Doors: 7:00 pm ) Brick and Mortar Music Hall , 1710 Mission Street , San Francisco, CA ( map ) $33.24 Buy Tickets + Google Calendar VIP Upgrades: Official upgrades are available through the link below. This is an optional add-on to your experience and a concert ticket is still required to attend. VIP Upgrade includes: Early entry to venue Early access to merch Merch Items: Tour sticker, Tour keychain, Signed tour poster, Lanyard w VIP laminate, Commemorative tour tote Meet/Greet + Photo Opp https://thering.vip/vip/dutch-melrose-the-heartbreak-hotel-tour Dutch Melrose JUST ANNOUNCED Felukah — HibisKiss Tour October 28, 2026 Thoughts on Bowling November 27, 2026 BIIRD (Night 2) September 20, 2026 MoneyHillCasino October 11, 2026 Hayden Everett October 29, 2026 Follow us on Instagram Join the Brick & Mortar Newsletter",
              "event_types": [
                "live_music"
              ],
              "price_info": "$33.24",
              "url": "https://www.brickandmortarmusic.com/tm-event/dutch-melrose/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-09-03T11:13:51.689688Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0729d193054a",
              "venue_id": "venue_pacific_film_archive",
              "title": "California Live!: Fighting Back",
              "event_time": "Sep 17, 2026 6:30 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-17T18:30:00",
              "event_date": "2026-09-17",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Professor Claudia Polsky joins California editor Pat Joseph to discuss her class action suit confronting the Trump administration’s assault on higher education—a suit that has so far restored nearly a billion dollars in research funding to UC scientists and scholars.",
              "event_types": [
                "community",
                "literary",
                "workshop"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/california-live-fighting-back-berkeley-law%E2%80%99s-claudia-polsky-taking-trump-court",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_95402ff08823",
              "venue_id": "venue_4_star_theater",
              "title": "SF Critterfest: Second Nature",
              "event_time": "17 September 2026 6:15 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-17T18:15:00",
              "event_date": "2026-09-17",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Turns out Darwin wasn’t right about everything. He nailed that theory of evolution, but his understanding of gender and sexual diversity in the animal kingdom was more than a little misguided. Turns out the natural world is way more diverse and complex than he — or your high school biology teacher — may have led you to believe. Meanwhile, many unsung contemporary scientists, like evolutionary biologists Joan Roughgarden and Patricia Brennan and primatologist Amy Parish, have been zealously studying animal behavior and anatomy and exposing the myth of the gender binary for decades, despite ongoing resistance to their findings from the research establishment.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/critterfest-second-nature",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7b9a2c18e18d",
              "venue_id": "venue_4_star_theater",
              "title": "Honey Pluton & Spike Einbinder",
              "event_time": "17 September 2026 9:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-17T21:00:00",
              "event_date": "2026-09-17",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Honey Pluton is a stand-up comedian and theatrical performer with 8 years of experience spanning stage, film and screen. He’s creatively inspired by disruption, risk-taking, and the liminal thresholds that blur states of consciousness. He is nationally touring his solo show ‘I’ve Always Been Like This’ to sold out crowds across the country and is also host of the weekly podcast ‘Up Good with Honey Pluton’",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/comedy-spike-einbinder-honey-pluton-sept",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0c6bc20afb7d",
              "venue_id": "venue_local_edition",
              "title": "Jason Movrich & Friends",
              "event_time": "September 17, 2026 8:00 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-09-17T20:00:00",
              "event_date": "2026-09-17",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Jazz Trio, Jason Movrich & Friends playing their Blues, Soul and Funk tunes.Jason Movrich vocals and guitarJoe Carusi on drumsEric Goodwill on bass",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/kecdkln5dcdy7et-p792h-p72j5-mzzet-a57ac-p4asy-6rfg9-4fprt-e47lb-gdpd5-ntr9k-ywdtk-cl5l4-fcj4a",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-09-03T12:59:31.047351Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f91d2f01c275",
              "venue_id": "venue_the_monarch",
              "title": "Bump",
              "event_time": "17 September 2026 9:00 PM",
              "venue_name": "The Monarch",
              "event_start": "2026-09-17T21:00:00",
              "event_date": "2026-09-17",
              "venue_address": "101 6th St, San Francisco, CA 94103",
              "description": "Bump.sf is excited to move to a new night every Third Thursday,",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Buy Ticket",
              "url": "https://www.eventbrite.com/e/bump-presents-tickets-1999291131594",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monarch",
                  "source_name": "The Monarch",
                  "fetched_at": "2026-09-03T13:00:26.245791Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monarch|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_54743fee6fe9",
              "venue_id": "venue_cat_club",
              "title": "1984",
              "event_time": "September 17, 2026 9:00 PM",
              "venue_name": "Cat Club",
              "event_start": "2026-09-17T21:00:00",
              "event_date": "2026-09-17",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "The Best of the 80s on 2 Dance Floors\n——\n9pm-2am | No Cover",
              "event_types": [
                "dj_party"
              ],
              "price_info": "No Cover",
              "url": "https://www.sfcatclub.com/calendar/ymp4cekk5sb4y8x-chwt8-3rd9b-ztzra-abpta-7a9be-3m6a8-74c9n-sz9cw-jztgp-ntp9n-nlygf-6j7mm-gfrn9-bgknm-ysm82-fzhm2-krz5d-yzj7d-f4ysm-2d5kp-ebjy4",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cat_club",
                  "source_name": "Cat Club",
                  "fetched_at": "2026-09-03T13:24:58.141502Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a13c2f623c40",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Happy Hour",
              "event_time": "17 September 2026",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-17",
              "event_date": "2026-09-17",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Take advantage of Etcetera Wine Bar's happy hour specials on select drinks and light fare. It offers a relaxed neighborhood setting to unwind after work or kick off an evening of live music.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-09-03T13:50:21.930604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_012ea4264aad",
              "venue_id": "venue_caravan_lounge",
              "title": "Live Music",
              "event_time": "09/17/2026",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-09-17",
              "event_date": "2026-09-17",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "Welcome to The Caravan Lounge THE CARAVAN LOUNGE is a friendly, owner-operated bar located in the heart of downtown San Jose. As well as being one of San Jose’s oldest live music venues, the Caravan provides other fun activities such as karaoke, comedy, burlesque, pool table, and DJ nights. The Caravan is also extremely affordable for those trying to stretch a budget. And let’s not forget the music! All the shows at the Caravan are FREE! Open 7 days a week 2pm – Close “Aside from the obvious draw of affordable libations poured by heavy-handed barkeeps, The Caravan sets itself apart from other no-frills bars as the place to go to see up-and-coming bands. The bar has hosted plenty of local bands’ first shows, and regularly features smaller touring acts. If you’re a music fan always on the lookout for your new favorite group, make sure to pay attention to who is coming to Caravan.” -Metro FEATURED VIDEOS – Go to our YouTube Channel by clicking here to see more… SEPTEMBER 2026 TUES. SEPT 1st- Karaoke with Ronnie Roach WED. SEPT 2nd – The Caravan Lounge Comedy Show hosted by Chelsea Costanza THURS. SEPT 3rd – SWEAT with DJ SNAQ FRI. SEPT 4th – Rebelskamp, Magick Blues Band, TBA SAT. SEPT 5th – Skool Of Sharks TUES. SEPT 8th- Karaoke with Ronnie Roach WED. SEPT 9th – The Caravan Lounge Comedy Show Hosted by Nyoki THURS. SEPT 10th – Shrine Goth DJ Night with Hex Embrace, C_Death, and Owen FRI. SEPT 11th – Circus Of Sin 10 Year Sinnaversary! Hosted By Some Guy SAT. SEPT. 12th – CaveFest II We Love You Curtis Castro! Abysmal Piss, Ominous Ruin, Lost To The Void TUES. SEPT 15th – Karaoke with Ronnie Roach WED. SEPT 16th -The Caravan Lounge Comedy Show Hosted by Ato Walker THURS. SEPT 17th – TBA FRI. SEPT 18th – TBA SAT. SEPT 19th – Facekicker, American Standard, 12 Steps To Nothing TUES. SEPT 22nd – Karaoke with Ronnie Roach WED. SEPT 23rd- The Caravan Lounge Comedy Show hosted by Matt Kennedy THURS. SEPT 24th – Sweethearts DJ Night FRI. SEPT 25th – Ding Mao, Diamantide, Clou",
              "event_types": [
                "workshop"
              ],
              "price_info": "FREE",
              "url": "http://s172518151.onlinehome.us/caravan/site/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-09-03T14:20:40.572990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e1c26043810b",
              "venue_id": "venue_poor_house_bistro",
              "title": "Jefe Meduri Famiglia Band",
              "event_time": "2026-09-17T18:00:00",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-09-17T18:00:00",
              "event_date": "2026-09-17",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-09-04T10:11:13.938872Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e8b4d8f5d006",
              "venue_id": "venue_cafe_du_nord",
              "title": "Boys Go To Jupiter",
              "event_time": "9/17/2026 8:00 pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-09-17T20:00:00",
              "event_date": "2026-09-17",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Live Nation Presents: Boys Go To Jupiter with Abby Kenna Thu, Sep 17 Doors: 7:00 pm | Show: 8:00 pm Tickets: $28.30 Buy Tickets All Ages Boys Go To Jupiter is most definitely a band. But it feels like something else. A friend you can just talk to for hours. A story that hooks you from the very first word. Or three Brooklyn twenty-somethings who really, really love a great song. A whirlwind of influences and genres, their captivating sound is grounded in strong storytelling and powerful live performance. Blending joyful indie-pop, dreamy soul, lush folk and sugary punk, the Brooklyn-based band delivers. Whether supported by their six-piece band or as a trio, they share a love for songs with heart, humor, and hooks that have audiences dancing, singing, crying, and back again. Their debut album Meet Me After Practice was released in February 2025 and are currently recording their next project. Seated Artist Presale: Wed, 4/29, at 10am Onsale: Fri, 5/1, at 10am Cafe Du Nord's Preferred Viewing Available For any event that is listed as 18 or 21 and over, ANY ticket holder unable to present valid identification indicating that they are of age will not be admitted to this event, and will not be eligible for a refund. Any event listed as All Ages, means 6 years of age or older. ALL tickets are standing room only unless otherwise specified. If you need special accommodations, contact info@cafedunord.com. Support acts are subject to change without refund. Professional Cameras are not allowed without prior approval. Professional Camera defined as detachable lens or of professional grade as determined by the venue staff. When in doubt, just email us ahead of the show! We might be able to get you a Photo Pass depending on Artist’s approval. Artists Boys Go To Jupiter Video Boys Go To Jupiter is most definitely a band. But it feels like something else. A friend you can just talk to for hours. A story that hooks you from the very first word. Or three Brooklyn twenty-somethings who",
              "event_types": [
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://cafedunord.com/tm-event/boys-go-to-jupiter/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cafe_du_nord_and_swedish_american_hall",
                  "source_name": "Cafe Du Nord and Swedish American Hall",
                  "fetched_at": "2026-09-04T10:21:43.132381Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_be81fb6d8714",
              "venue_id": "venue_swedish_american",
              "title": "Big Brain Lectures - SF",
              "event_time": "9/17/2026 8:00 pm",
              "venue_name": "Swedish American Hall",
              "event_start": "2026-09-17T20:00:00",
              "event_date": "2026-09-17",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Cafe Du Nord Presents: Why Are We So Bad at Being Happy? The Psychology of Happiness Thu, Sep 17 Doors: 7:00 pm | Show: 8:00 pm Tickets: Buy Tickets 21 and up Why are we so bad at the one thing almost everyone wants: being happy? ​Nearly every human being strives to be happy in some form. Yet despite how universal and powerful that goal is, most of us are surprisingly bad at actually pursuing it, often falling well short of our own happiness goals. ​Dr. Iris Mauss, a professor of psychology at UC Berkeley, studies why this gap exists and what the science actually says about closing it. In this talk, she'll unpack the psychological research on why the pursuit of happiness so often backfires, from setting the wrong goals to chasing happiness in ways that push it further away. ​Iris will also take on a bolder question: should we give up on the pursuit of happiness altogether? Her answer, grounded in years of research, lands somewhere more hopeful. There are real pitfalls, but greater happiness is genuinely possible if we go about it differently. ​​🕰 Event Details ​​​​​​What should I expect? ​7:00-8:00pm --> arrival & chats ​8:00pm-8:40pm --> lecture ​8:40-9:00 --> q&a and more chatting For any event that is listed as 18 or 21 and over, ANY ticket holder unable to present valid identification indicating that they are of age will not be admitted to this event, and will not be eligible for a refund. Any event listed as All Ages, means 6 years of age or older. ALL tickets are standing room only unless otherwise specified. If you need special accommodations, contact info@cafedunord.com. Support acts are subject to change without refund. Professional Cameras are not allowed without prior approval. Professional Camera defined as detachable lens or of professional grade as determined by the venue staff. When in doubt, just email us ahead of the show! We might be able to get you a Photo Pass depending on Artist’s approval. Artists Big Brain Lectures - SF + Google Calendar",
              "event_types": [
                "workshop"
              ],
              "price_info": "Buy Tickets",
              "url": "https://cafedunord.com/tm-event/why-are-we-so-bad-at-being-happy-the-psychology-of-happiness/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cafe_du_nord_and_swedish_american_hall",
                  "source_name": "Cafe Du Nord and Swedish American Hall",
                  "fetched_at": "2026-09-04T10:21:43.132381Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_swedish_american|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_6853a77556cc",
              "venue_id": "venue_cesar_chavez_plaza",
              "title": "The Changing Same",
              "event_time": "Thu, Sep 17 •  7:00 PM",
              "venue_name": "San Jose Chavez Plaza",
              "event_start": "2026-09-17T19:00:00",
              "event_date": "2026-09-17",
              "venue_address": "194 S Market St, San Jose, CA 95113",
              "description": "About: GENA GENA unites Detroit drummer and producer Karriem Riggins —renowned for his work with Common, Erykah Badu, Madlib, and the late J Dilla—with Dallas singer, songwriter, rapper, and producer Liv.e , one of contemporary R&B's most adventurous voices. Their debut album, The Pleasure Is Yours , blends jazz, soul, hip-hop, and experimental R&B into a sound that's both deeply rooted and unmistakably forward-thinking.",
              "event_types": [
                "dj_party",
                "rnb_soul_funk",
                "live_music"
              ],
              "price_info": "From $30.12",
              "url": "https://www.eventbrite.com/e/the-changing-same-with-special-guest-gena-tickets-1993722177703?aff=ebdssbdestsearch",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_eventbrite_sj",
                  "source_name": "Eventbrite SJ",
                  "fetched_at": "2026-09-04T10:29:52.660454Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cesar_chavez_plaza|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_f26d89e8ca15",
              "venue_id": "venue_kilowatt",
              "title": "LOON & Chris King & The Gutterballs",
              "event_time": "Thu 17 Sep ― 7:00pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-17T19:00:00",
              "event_date": "2026-09-17",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "**LOON:** https://www.instagram.com/loonband/\n\n**Chris King & The Gutterballs:** https://www.instagram.com/gutterstagram/\n\n**Silver Swoon:** https://www.inst...",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$13.39",
              "url": "https://link.dice.fm/b9698f1ac57c?pid=ff10e59d",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-09-04T10:33:38.052132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2057ccda61b4",
              "venue_id": "venue_kilowatt",
              "title": "Lettuce Rock DJs",
              "event_time": "Thu 17 Sep ― 10:00pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-17T22:00:00",
              "event_date": "2026-09-17",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Keep track of what’s coming up by saving events, sharing them with friends, or even listening to new music in the app.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/j163bc21f9a6?pid=ff10e59d",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-09-04T10:33:38.052132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0f61435d093b",
              "venue_id": "venue_sevys_aptos",
              "title": "Wine30 Thursdays",
              "event_time": "September 17, Thursday 5:00 PM",
              "venue_name": "Sevy's Bar & Kitchen",
              "event_start": "2026-09-17T17:00:00",
              "event_date": "2026-09-17",
              "venue_address": "7500 Old Dominion Ct, Aptos, CA 95003",
              "description": "",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sevys_aptos",
                  "source_name": "Sevy's Bar & Kitchen",
                  "fetched_at": "2026-09-04T10:39:41.919005Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sevys_aptos|2026-09-17",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-09-18": {
          "date": "2026-09-18",
          "updated_at": "2026-09-04T10:41:17.624660Z",
          "events": [
            {
              "event_id": "evt_d8579110dcba",
              "venue_id": "venue_castro_theater",
              "title": "THE GROWLERS",
              "event_time": "September 18, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "The Growlers have carved out their own mythos in modern rock—a sun-drenched fever dream of surf, psych, garage, and California weirdness. At the center is founder and ringleader Brooks Nielsen, whose unmistakable voice and twisted pop sensibility have guided the band from dive bar misfits to cult legends. Now, after six years away from the road, The Growlers return for their first world tour since 2019, with dates spanning Australia, the UK, Europe, and North America. The comeback arrives alongside two brand-new singles, “Crisis” and “Feel My Funk,” signaling a bold new chapter for the band while staying true to their unmistakable sound and unshakable spirit.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/the-growlers-260918",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-04-07T10:00:27.146710Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_77957106b5bd",
              "venue_id": "venue_regency_ballroom",
              "title": "Citizen - Halcyon Blues Tour",
              "event_time": "Sep 18 6pm/7pm",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-09-18T18:00:00",
              "event_date": "2026-09-18",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Goldenvoice Presents Citizen Halcyon Blues with Hotline TNT, Anxious, Cryogeyser Friday, September 18 Doors 6:00PM, Show 7:00PM All Ages The Regency Ballroom Buy Tickets Star Seating Event Info If tickets in the accessible section are unavailable, please reach out to the venue for accommodations. Please note, orders in violation of the published ticket limit are subject to cancellation without notice. Ticket prices may fluctuate, at any time, based on demand. Artist Info With the ability to excel in both quiet ballads and distorted rock anthems, Citizen (which recently expanded to a full quintet with the addition of former touring members drummer Ben Russin and guitarist Mason Mercer) has an incredible knack for channeling raw emotion and energy into singalong songs. On Calling The Dogs , the band exemplifies that passionate songwriting and styling while stripping back to what they do best: guitar-driven rock ‘n roll. Picking up labels ranging from post-hardcore to shoegaze over the years, it’s reductive to try to categorize Citizen as anything other than one of the best rock bands around today. Evolving from teenagers playing local dives to a vibrant band capable of selling out theaters and hitting major festivals around the world, vocalist Mat Kerekes, guitarist Nick Hamm and bassist Eric Hamm have earned their reputation as both tremendous songwriters and a must-see live act — and they do both better than ever on their new album, Calling The Dogs .",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Check website for pricing",
              "url": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQHAXsEbBh1rYld4f91dggrI1Sq1L8pimx9cJMkw920Ggk5ggwYuY0SMs003DV8hQ61HwWwoXIEJBNXz6HVrl0q34VipoBCIUev1imjfcF1YOMGgHI8XMAaxHkdD6GMvHzIm7WNVcDjKhw==",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-05-11T12:13:46.781052Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_20d447853ef6",
              "venue_id": "venue_rickshaw_stop",
              "title": "SWEEPING PROMISES",
              "event_time": "Fri Sep 18 9:00PM",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-09-18T21:00:00",
              "event_date": "2026-09-18",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Post-punk duo Sweeping Promises delivers an energetic live performance featuring their signature lo-fi production style.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20.00-$25.00",
              "url": "https://wl.seetickets.us/event/sweeping-promises/691105?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-05-14T10:46:20.204876Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b50aa44c2d43",
              "venue_id": "venue_ivy_room",
              "title": "Plan 9, Highway Ghosts, Suburban Robots",
              "event_time": "Sep 18 8:00 PM",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "CiderUp Shows XXVI PLAN 9 (misfits) + HIGHWAY GHOSTS (The Gun Club) + SUBURBAN ROBOTS (Devo) Fri Sep 18 Minimum age: 21 and over Show time: 7:30 PM Doors open: 8:00 PM Purchase tickets Description Cider Up Shows XXVI Presents FRIDAY SEPT 18TH — PLAN 9 (misfits) HIGHWAY GHOSTS (the gun club) SUBURBAN ROBOTS (devo) — 8pm doors / 8:30pm show Advance Tickets Available — IVY ROOM 860 San Pablo Avenue, Albany • 21+ PLAN 9 — Plan 9 is a California-based Misfits tribute band, active since 1997 and recognized as one of the longest-running and most authentic tributes to the Danzig-era Misfits. Known for a high-energy, authentic 1980s-style show, the band has evolved into a full-fledged horror punk act, sometimes collaborating with Misfits member Jerry Only. Lineup Plan 9 Suburban Robots Important Information for Ticket Holders Entry Policy: This is a 21+ event . A valid ID is required for entry. No exceptions. Refund Policy: All sales are final. No refunds or exchanges will be issued. How to Enter (Will Call): Your ID is your ticket! Check in at Will Call upon arrival. VIP & Accessibility: For ADA seating, VIP booth reservations or any other inquiries, please contact us at info@ivyroom.com . Save on Fees: For future events, advance tickets can be purchased at our box office during any live show. Cash only; no service fees.",
              "event_types": [],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/183707",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-15T12:45:06.254655Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cf2ba8de9eff",
              "venue_id": "venue_paramount_theatre",
              "title": "Mojo Brookzz: Outta Pocket Tour",
              "event_time": "09/18/2026 7:30 PM",
              "venue_name": "Paramount Theatre",
              "event_start": "2026-09-18T19:30:00",
              "event_date": "2026-09-18",
              "venue_address": "2025 Broadway, Oakland, CA 94612",
              "description": "BMN Entertainment presents viral comedian and entertainer Mojo Brookzz bringing his Outta Pocket comedy tour to Oakland.",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://www.paramountoakland.org/events/detail/mojo-brookzz-outta-pocket-tour",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_paramount_theatre",
                  "source_name": "Paramount Theatre",
                  "fetched_at": "2026-05-28T17:46:59.372859Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_paramount_theatre|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b5992b314a59",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Jack Harlow",
              "event_time": "September 18, 2026 8:00pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Show Rescheduled from 9/21/26 Monica Tour - James Savage",
              "event_types": [],
              "price_info": "Buy Tickets",
              "url": "https://thefoxoakland.com/events/jack-harlow-260918",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-06-02T11:32:18.655351Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ca8369dedccf",
              "venue_id": "venue_bimbos_365",
              "title": "Lido Pimienta",
              "event_time": "September 18, 2026 8:00 pm",
              "venue_name": "Bimbos 365",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "1025 Columbus Ave, San Francisco, CA 94133",
              "description": "Another Planet presents Grammy-nominated multidisciplinary artist Lido Pimienta with guest Chancha Via Circuito. 21 and up.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://bimbos365club.com/tm-event/lido-pimienta/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bimbos_365",
                  "source_name": "Bimbos 365",
                  "fetched_at": "2026-06-02T13:05:19.480853Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bimbos_365|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bb6ae4777ba0",
              "venue_id": "venue_august_hall",
              "title": "The Exploited, Total Chaos, Dwarves",
              "event_time": "sep 18 8pm",
              "venue_name": "August Hall",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$33.65",
              "url": "https://www.augusthallsf.com/tm-event/the-exploited/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T21:39:26.952332Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-06-03T13:09:58.459749Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_de2e9ef19d31",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Steel Pole Bath Tub",
              "event_time": "Friday September 18 2026 7:30PM doors -- music at 8:30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-18T19:30:00",
              "event_date": "2026-09-18",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Friday September 18 2026\n 7:30PM doors -- music at 8:30PM\n  •••  21 AND OVER\n$35 in advance / $40 at the door\n$41.81 in advance [35 face value +6.81 service fee]\nSteel Pole Bath Tub \n garage punk shoegaze\nOvarian Trolley \n psych-punk\nWife \n noise-rock post-hardcore",
              "event_types": [],
              "price_info": "$ 35 in advance / $40 at the door",
              "url": "http://www.bottomofthehill.com/20260918.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-06-04T11:24:06.802385Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-10T10:33:42.275715Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_074315323c39",
              "venue_id": "venue_the_independent",
              "title": "DANIEL AVERY LIVE",
              "event_time": "9.18 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-18T21:00:00",
              "event_date": "2026-09-18",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List Daniel Avery Live Fri, Sep 18 Doors: 8:30 pm | Show: 9:00 pm 21 and up Please note - there is a delivery delay set for 2 weeks prior to show. On Sale Soon 6/19 Share + Google Calendar Related Events Young Franco Jul 10 Buy Tickets bad tuner x veggi Jul 17 Buy Tickets Artists Daniel Avery Back to Event List Upcoming Events Novulent Fri Jun 19 Mamas Gun Sat Jun 20 Out & Loud Thu Jun 25 The Lagoons Fri Jun 26 Bay Pride Amplified! Sat Jun 27 Kelly McFarling Thu Jul 2 Mac Gross Project – SF Rock Project Benefit + Against Medical Advice Album Release Fri Jul 3 High Fade Wed Jul 8 Young Franco Fri Jul 10 The Emo Night Tour Sat Jul 11 bad tuner x veggi Fri Jul 17 Los Tranquilos Sat Jul 18",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "ON SALE 6.25",
              "url": "https://www.theindependentsf.com/tm-event/daniel-avery-live/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-06-23T10:46:17.531604Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-06-29T13:04:25.374124Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-30T18:59:56.104919Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_independent|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_77839bea5697",
              "venue_id": "venue_california_theatre",
              "title": "Don Giovanni - Opera San José",
              "event_time": "2026-09-18T19:30:00",
              "venue_name": "California Theatre",
              "event_start": "2026-09-18T19:30:00",
              "event_date": "2026-09-18",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "Relive the epic adventure on the big screen as Symphony San Jose performs John Williams's iconic, Oscar-winning score live. This special concert event brings the beloved cinematic masterpiece to life with full orchestral accompaniment.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "https://events.timely.fun/jc0x91t0/event/78443815",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-06-23T13:09:42.892074Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_symphony_san_jose",
                  "source_name": "Symphony San Jose",
                  "fetched_at": "2026-06-28T03:08:41.619469Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_california_theatre|2026-09-18",
              "run_id": "run_285788e23a8b",
              "run_label": "Don Giovanni - Opera San José, Sep 13 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_052d2e7415d1",
              "venue_id": "venue_the_chapel",
              "title": "Shawn James",
              "event_time": "Fri Sep 18 2026 9:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-09-18T21:00:00",
              "event_date": "2026-09-18",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "Soulful blues and folk-rock singer-songwriter Shawn James performs live with Gravedancer.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$30.00-$155.00",
              "url": "https://wl.seetickets.us/event/shawn-james/696157?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-06-28T14:38:55.229014Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-30T18:59:56.104919Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_chapel|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_32ea8ec1e28b",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Jaane Pehchaane Anjaane",
              "event_time": "Sep 18, 2026 @ 8:00pm",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "This live theatrical production brings celebrated Bollywood actors Anupam Kher and Mahima Chaudhry to the stage for a compelling dramatic performance. Audiences can expect a powerful evening of storytelling and emotion from two of Indian cinema's most respected figures.",
              "event_types": [
                "theater",
                "literary"
              ],
              "price_info": "",
              "url": "https://sanjosetheaters.org/event/78399015-20260918200000",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "San Jose CPA",
                  "fetched_at": "2026-07-13T10:23:51.933005Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4f2f82c81786",
              "venue_id": "venue_san_jose_civic",
              "title": "Kany Garcia",
              "event_time": "Sep 18, 2026 @ 8:00pm",
              "venue_name": "San Jose Civic",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "Honesty, credibility and soulfulness are the hallmarks of world-class Latin pop star Kany García. The Puerto Rican singer-songwriter has been a potent presence in Latin music since 2007, when her debut album Cualquier Día (Any Day) generated four hit singles...",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Varies",
              "url": "https://events.timely.fun/jc0x91t0/event/78328587",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-07-14T10:57:41.573315Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_dc486de20230",
              "venue_id": "venue_sap_center",
              "title": "Carin Leon",
              "event_time": "sep 18 8pm",
              "venue_name": "SAP Center",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "Regional Mexican star Carin Leon live at SAP Center on his De Sonora Para El Mundo Tour.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$76.30+",
              "url": "https://www.sapcenter.com/events/carin-leon",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-18T11:36:11.622544Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-07-20T13:20:49.561655Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sap_center|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_988871c346c5",
              "venue_id": "venue_the_uc_theatre",
              "title": "Jazz Is Dead: Cortex",
              "event_time": "Sep 18 - Show: 8:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "Adrian Younge, J Rocc",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "BUY TICKETS $50 + FEES",
              "url": "https://www.theuctheatre.org/shows/jazz-is-dead-cortex-18-sep",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-07-28T13:05:48.337295Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_63a888026ea3",
              "venue_id": "venue_halcyon",
              "title": "SAM COLLINS",
              "event_time": "09/18/2026 10:00pm",
              "venue_name": "Halcyon",
              "event_start": "2026-09-18T22:00:00",
              "event_date": "2026-09-18",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "SAM COLLINS captivates with his spellbinding compositions. sonic innovation and mesmerizing beats! WILL BE + 7CEZ support!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$12",
              "url": "https://link.dice.fm/od4c33e433b7?pid=d6c08999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-07-31T15:20:21.495651Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-06T11:58:22.520624Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a03219326a14",
              "venue_id": "venue_mitchell_park_center",
              "title": "Splash: Myra Melford",
              "event_time": "2026-09-18T20:00:00",
              "venue_name": "Mitchell Park",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "3700 Middlefield Rd, Palo Alto, CA 94303",
              "description": "Earthwise welcomes Myra Melford Splash TrioEarthwise welcomes pianist Myra Melford's Splash trio featuring Michael Formanek bass and Ches Smith drums and vibraphone. Opening the show is the duo of Tammy L. Hall piano and Leberta Lorál voice.https://www.eventbrite.com/e/earthwise-welcomes-myra-melford-splash-trio-tickets-1989268334137",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23271",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_earthwise_productions",
                  "source_name": "Earthwise Productions",
                  "fetched_at": "2026-08-06T10:11:55.240203Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-14T10:07:47.535282Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_eventbrite_sj",
                  "source_name": "Eventbrite SJ",
                  "fetched_at": "2026-09-04T10:29:52.660454Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mitchell_park_center|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_bfa5f2222f69",
              "venue_id": "venue_thee_stork_club",
              "title": "SHE’s, The Vaxxines & Clean Girl",
              "event_time": "September 18 2026 8:00PM",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Fri., 9/18/26 Bargain Rock presents SHE’s (Tokyo), The Vaxxines, Clean Girl and the Dirty Dishes 8:00pm, $12 adv., $15 door SHE’s (Tokyo) All-girl Japanese indie garage band featuring SF expat, Aya Cuzner. https://www.youtube.com/watch?v=2hxAXboqcx4&t=9s https://www.instagram.com/shes_band/ The Vaxxines The Vaxxines. Loud rocknroll singalong anthems from Oakland, CA!! https://thevaxxines.bandcamp.com/ https://www.instagram.com/the_vaxxines/ Clean Girl and the Dirty Dishes Out of the skillet and into the frying pan! https://www.instagram.com/cleangirlandthedirtydishes/ https://cleangirlandthedirtydishes.bandcamp.com/ Bargain Rock Presents Garage Punk Rockin’! https://www.instagram.com/bargainrock/",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10/$12",
              "url": "https://wl.seetickets.us/event/shes-tokyo-the-vaxxines-clean-girl-and-the-dirty-dishes/700748?afflky=TheeStorkClub",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-08-06T11:16:26.119873Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_41e165a9e075",
              "venue_id": "venue_bird_and_beckett",
              "title": "Scott Foster Combo",
              "event_time": "2026-09-18T19:30:00",
              "venue_name": "Bird & Beckett",
              "event_start": "2026-09-18T19:30:00",
              "event_date": "2026-09-18",
              "venue_address": "653 Chenery St, San Francisco, CA 94131",
              "description": "Pianist/vocalist Eric Shifrin leads Eric & the In Crowd on 2nd Fridays in odd-numbered months",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20",
              "url": "https://birdbeckett.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bird_and_beckett",
                  "source_name": "Bird & Beckett",
                  "fetched_at": "2026-08-07T18:42:15.297625Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-14T10:07:47.535282Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bird_and_beckett|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_268fb2502fcd",
              "venue_id": "venue_the_royal_cuckoo",
              "title": "Kevin Gerzevitz Ring-a-ding Duo",
              "event_time": "2026-09-18T18:00:00",
              "venue_name": "The Royal Cuckoo",
              "event_start": "2026-09-18T18:00:00",
              "event_date": "2026-09-18",
              "venue_address": "3202 Mission St, San Francisco, CA 94110",
              "description": "Live performance featuring keyboardist Kevin Gerzevitz and Mr. Lucky at The Royal Cuckoo Organ Lounge.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://events.sfgate.com/event/kevin-gerzevitz-ring-a-ding-duo-featuring-mr-lucky-and-kevvyg",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_royal_cuckoo",
                  "source_name": "The Royal Cuckoo",
                  "fetched_at": "2026-08-09T10:01:42.914394Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_royal_cuckoo|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_569020724812",
              "venue_id": "venue_audio",
              "title": "Nick Warren",
              "event_time": "2026-09-18T21:30:00",
              "venue_name": "Audio",
              "event_start": "2026-09-18T21:30:00",
              "event_date": "2026-09-18",
              "venue_address": "316 11th St, San Francisco, CA 94103",
              "description": "Electronic music veteran Nick Warren performs at Audio with support from Verlk.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "From $21.07",
              "url": "https://audiosf.com/event/nick-warren-09-18-26/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audio",
                  "source_name": "Audio",
                  "fetched_at": "2026-08-15T10:43:36.782348Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_audio|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6456d1d3d1e1",
              "venue_id": "venue_public_works",
              "title": "Âme & Rodriguez Jr.",
              "event_time": "2026-09-18T21:00:00",
              "venue_name": "Public Works",
              "event_start": "2026-09-18T21:00:00",
              "event_date": "2026-09-18",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "A night of melodic techno and deep house featuring Âme (DJ set) and Rodriguez Jr. (hybrid live performance).",
              "event_types": [
                "dj_party",
                "electronic",
                "live_music"
              ],
              "price_info": "$11-46 | 21+",
              "url": "https://dothebay.com/events/2026/9/18/ame-innervisions-dj-rodriguez-jr-hybrid-live-by-set-safra-konnekted-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-08-17T10:45:28.908286Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-20T13:04:21.299441Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_eventbrite_sf",
                  "source_name": "Eventbrite SF",
                  "fetched_at": "2026-08-22T16:56:50.453316Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_public_works|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7ad932e75ee9",
              "venue_id": "venue_the_monarch",
              "title": "Felix Dickinson (UK)",
              "event_time": "18 September 2026 9:00 PM",
              "venue_name": "The Monarch",
              "event_start": "2026-09-18T21:00:00",
              "event_date": "2026-09-18",
              "venue_address": "101 6th St, San Francisco, CA 94103",
              "description": "Get ready to vibe with Felix Dickinson dropping some fresh tunes and good times all night long.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Buy Ticket",
              "url": "https://www.eventbrite.com/e/felix-dickinson-uk-tickets-1991740486411",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monarch",
                  "source_name": "The Monarch",
                  "fetched_at": "2026-08-20T12:12:16.271150Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monarch|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_06ed63521841",
              "venue_id": "venue_1015_folsom",
              "title": "MILD MINDS",
              "event_time": "2026-09-18T22:00:00",
              "venue_name": "1015 Folsom",
              "event_start": "2026-09-18T22:00:00",
              "event_date": "2026-09-18",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "DJ Dials & 1015 Folsom Present: Mild Minds (DJ SET). Influential artist at the forefront of electronic music production worldwide. Ages 21+.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "BUY TICKETS | Bottle Service",
              "url": "https://wl.eventim.us/event/mild-minds/694902?afflky=1015Folsom",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-08-20T12:52:11.701520Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2228ae2cca1c",
              "venue_id": "venue_the_riptide",
              "title": "DJ Lance - Soul, Funk, Hip-Hop and more",
              "event_time": "September 18 9:00 PM - September 19 1:30 AM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-18T21:00:00",
              "event_date": "2026-09-18",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "DJ Lance and his guests spin vinyl delicacies for your enjoyment!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2d8f169098ec",
              "venue_id": "venue_crepe_place",
              "title": "Joe Ferrara",
              "event_time": "2026-09-18",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "FREE",
              "url": "https://thecrepeplace.com/shows-list/joe-ferrara-friday-september-18-from-530-to-730pm-free-show-on-the-garden-stage",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_40e8c78f797f",
              "venue_id": "venue_abbott_square",
              "title": "ROSEBUD",
              "event_time": "Friday, September 18, 2026 7:00 PM - 10:00 PM",
              "venue_name": "Abbott Square Market",
              "event_start": "2026-09-18T19:00:00",
              "event_date": "2026-09-18",
              "venue_address": "725 Front St, Santa Cruz, CA 95060",
              "description": "Central California band playing Grateful Dead music mixed with originals, Beatles, Dylan, etc",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.abbottsquaremarket.com/events/rosebud",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_abbott_square",
                  "source_name": "Abbott Square Market",
                  "fetched_at": "2026-08-22T12:39:51.694804Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_abbott_square|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6b52eaf419a9",
              "venue_id": "venue_verdi_club",
              "title": "Private Event",
              "event_time": "2026-09-18T18:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-09-18T18:00:00",
              "event_date": "2026-09-18",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.verdiclub.net/events-calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-08-22T14:55:24.428239Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_verdi_club|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a20f6787f959",
              "venue_id": "venue_dance_mission",
              "title": "Entre Mucho Machismo Hay Pocos Machos",
              "event_time": "2026-09-18 2026-09-19",
              "venue_name": "Dance Mission Theater",
              "event_start": "2026-09-18",
              "event_date": "2026-09-18",
              "venue_address": "3316 24th St, San Francisco, CA 94110",
              "description": "Presented by Rogelio López & Dancers, this dance theater production follows a queer Mexican folklórico dancer's journey of romance and self-love.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dance_mission",
                  "source_name": "Dance Mission Theater",
                  "fetched_at": "2026-08-22T15:02:23.569813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dance_mission|2026-09-18",
              "run_id": "run_217875807028",
              "run_label": "Entre Mucho Machismo Hay Pocos Machos, Sep 18 – Sep 20",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d41e85ecbe87",
              "venue_id": "venue_crows_nest_sc",
              "title": "THE SURF CREEPS",
              "event_time": "Friday September 18th 08:00 PM",
              "venue_name": "The Crow's Nest",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "2218 East Cliff Dr, Santa Cruz, CA 95062",
              "description": "Friday September 18th Surf Rockabilly aka Surfabilly Starts at 08:00 PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$8 cover",
              "url": "https://www.facebook.com/lennyfortunato/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crows_nest_sc",
                  "source_name": "The Crow's Nest",
                  "fetched_at": "2026-08-22T15:19:13.909618Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crows_nest_sc|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d9ead322c089",
              "venue_id": "venue_woodhouse_brewing",
              "title": "SOLCIRCLE",
              "event_time": "Friday, September 18, 2026 7:00 PM",
              "venue_name": "Woodhouse Blending & Brewing",
              "event_start": "2026-09-18T19:00:00",
              "event_date": "2026-09-18",
              "venue_address": "119 Madrone St, Santa Cruz, CA 95060",
              "description": "Come have a Special Fun time!",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.woodhousebrews.com/events/2026/9/18/solcircle",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_woodhouse_brewing",
                  "source_name": "Woodhouse Blending & Brewing",
                  "fetched_at": "2026-08-22T15:55:04.316453Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_woodhouse_brewing|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d05a43588f4f",
              "venue_id": "venue_the_marsh_sf",
              "title": "Dan Hoyle TAK",
              "event_time": "2026-09-18",
              "venue_name": "The Marsh SF",
              "event_start": "2026-09-18",
              "event_date": "2026-09-18",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "Dan Hoyle’s Takes All Kinds Winner of SF Bay Area Critics Circle Award “Best Solo Performance” Live & In Person at The Marsh San Francisco Mainstage Written & Performed by Dan Hoyle Directed by Aldo Billingslea & Michael Moran Developed with Charlie Varon Online ticket sales close 2 hours before each performance, and additional tickets may be available for purchase at the door. August 1 – September 18, 2026 Select Fridays at 7:30 pm, Select Saturdays at 5:00 pm (please check ticket link for show dates and times) May 8 – 100th Performance & Post-show Talkback with Mark Follman, National Editor of Mother Jones magazine Award-winning journalist Mark Follman is the national affairs editor at Mother Jones and author of the bestselling book, “Trigger Points: Inside the Mission to Stop Mass Shootings in America” May 22 – Post-show Talkback with Arlie Hochschild, Berkeley Sociologist and author of Stolen Pride Named one of Barack Obama’s Favorite Books of 2024 and a New York Times Notable Book of the Year. For all the attempts to understand the state of American politics and the blue/red divide, we’ve ignored what economic and cultural loss can do to pride . In Stolen Pride , renowned sociologist Arlie Russell Hochschild ventures to Appalachia to uncover the “pride paradox” that has given the right’s appeals such resonance. June 6 – Post-show Talkback on The Science Behind How People’s Minds Change with UCSF Professor and Researcher Michael Geschwind Michael Geschwind, MD, PhD, is a professor of neurology at the UCSF Weill Institute for Neurosciences and a clinician-researcher at the UCSF Edward and Pearl Fein Memory and Aging Center. A behavioral neurologist, he specializes in understanding how changes in thinking, behavior, emotion, and movement reflect underlying brain changes. In his clinical work, he evaluates patients with memory disorders, rapidly progressive dementias, movement disorders, and other neurological conditions, using detailed assessments of cognition, be",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://themarsh.org/shows_and_events/marshstream/dan-hoyle-takes-all-kinds/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-08-22T17:28:42.838285Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-09-18",
              "run_id": "run_76a851d0a0e5",
              "run_label": "Dan Hoyle TAK, Aug 1 – Sep 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_0e3dbe17223e",
              "venue_id": "venue_kuumbwa_jazz",
              "title": "Old Blind Dogs",
              "event_time": "2026-09-18 September 18 @ 7:30 pm - 9:30 pm",
              "venue_name": "Kuumbwa Jazz Center",
              "event_start": "2026-09-18T19:30:00",
              "event_date": "2026-09-18",
              "venue_address": "320-2 Cedar St, Santa Cruz, CA 95060",
              "description": "Scottish folk band, Old Blind Dogs has a line up that consists of some of Scotland's finest traditional musicians at the top of their game. Original member Jonny Hardie (fiddle/vocals) […]",
              "event_types": [
                "folk",
                "live_music"
              ],
              "price_info": "$15.25 – $31.25",
              "url": "https://www.santacruz.org/upcoming-event/kuumbwa-jazz-center-old-blind-dogs-concert/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_visit_santa_cruz_county",
                  "source_name": "Visit Santa Cruz County",
                  "fetched_at": "2026-08-22T18:34:05.859446Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_kuumbwa_jazz",
                  "source_name": "Kuumbwa Jazz Center",
                  "fetched_at": "2026-09-03T10:24:11.929813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kuumbwa_jazz|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_3bf0e6c6dec8",
              "venue_id": "venue_park_hall_ben_lomond",
              "title": "The Addams Family",
              "event_time": "2026-09-18",
              "venue_name": "Park Hall",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "9400 Mill St, Ben Lomond, CA 95005",
              "description": "The Addams Family theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://mctshows.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_park_hall_ben_lomond",
                  "source_name": "Park Hall",
                  "fetched_at": "2026-08-22T19:38:45.882590Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_park_hall_ben_lomond|2026-09-18",
              "run_id": "run_8d42d89c5c45",
              "run_label": "The Addams Family, Sep 18 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_31ffbea70c84",
              "venue_id": "venue_park_hall_ben_lomond",
              "title": "Rumors",
              "event_time": "2026-09-18T14:00:00",
              "venue_name": "Park Hall",
              "event_start": "2026-09-18T14:00:00",
              "event_date": "2026-09-18",
              "venue_address": "9400 Mill St, Ben Lomond, CA 95005",
              "description": "A comedy by Neil Simon, directed by Marnae Taylor. Charley, the deputy mayor of New York, and his wife Myra Brock, on the evening of their tenth wedding anniversary, had an elegant dinner party which goes histrically wrong. Four couples arrive expecting a night of sophistication—only to discover the host has had a terrible mishap and his wife is missing. Desperate to cover up the scandal, they spin wilder and wilder stories, turning confusion into chaos as rumors fly faster than champagne corks. With a niche fit, a whiplash, mitigated jealousy, a recurring back spasm, comedy ensues. Brimming with razor-sharp wit, slapstick mishaps, and Simon's trademark charm, Rumors is a laugh-out-loud comedy that proves the truth may be the funniest thing of all.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "",
              "url": "https://mctshows.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_park_hall_ben_lomond",
                  "source_name": "Park Hall",
                  "fetched_at": "2026-08-22T19:38:45.882590Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_park_hall_ben_lomond|2026-09-18",
              "run_id": "run_b17f8875ebd5",
              "run_label": "Rumors, Sep 18 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1633e8a2a66a",
              "venue_id": "venue_scpl_downtown",
              "title": "Bring Your Own Book Discussion Group",
              "event_time": "September 18 2026 11:00am - 12:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-18T11:00:00",
              "event_date": "2026-09-18",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Share what you're reading and discover new favorites! Bring any book: fiction, nonfiction, poetry, or more - and join a welcoming group for lively discussion and recommendations.",
              "event_types": [
                "literary",
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/14529157",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_447c6900c37e",
              "venue_id": "venue_scpl_downtown",
              "title": "Bridge Club @ La Selva Beach",
              "event_time": "September 18 2026 11:00am - 12:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-18T11:00:00",
              "event_date": "2026-09-18",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Sharpen your word skills and enjoy friendly competition at our Scrabble Club - fun for all levels.",
              "event_types": [
                "sports",
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15200158",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2861fed549ae",
              "venue_id": "venue_scpl_downtown",
              "title": "Discovery Zone Playgroup",
              "event_time": "September 18 2026 11:00am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-18T11:00:00",
              "event_date": "2026-09-18",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "A time for free play for children with a participating adult.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15607420",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_74d8a124ba34",
              "venue_id": "venue_scpl_downtown",
              "title": "Knitting @ Live Oak",
              "event_time": "September 18 2026 11:00am - 1:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-18T11:00:00",
              "event_date": "2026-09-18",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "We are knitting at Live Oak Library on Fridays.",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17068430",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_efc803d5996a",
              "venue_id": "venue_scpl_downtown",
              "title": "Preschool Story Time & Craft @ Aptos",
              "event_time": "September 18 2026 11:30am - 12:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-18T11:30:00",
              "event_date": "2026-09-18",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Come join Librarian Emily for stories, songs, and lots of fun for preschoolers and their caregivers in our beautiful, newly-renovated Scotts Valley Library Branch every Friday at 11:30am.",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16251517",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7be82405efeb",
              "venue_id": "venue_scpl_downtown",
              "title": "Munching with Mozart",
              "event_time": "September 18 2026 12:10pm - 12:50pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-18T12:10:00",
              "event_date": "2026-09-18",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "A popular monthly series of free noon-time concerts at the Downtown Branch. Pieces and performers vary from month to month. Bring your lunch and enjoy some music!",
              "event_types": [
                "classical",
                "live_music"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/14862652",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e3cf36fde0c3",
              "venue_id": "venue_scpl_downtown",
              "title": "Encompass Outreach Worker Office Hours",
              "event_time": "September 18 2026 1:00pm - 3:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-18T13:00:00",
              "event_date": "2026-09-18",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Connecting people to social services, county mental health and more.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15565217",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_76e366de452e",
              "venue_id": "venue_scpl_downtown",
              "title": "Medicare & Long Term Care Planning",
              "event_time": "September 18 2026 1:00pm - 2:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-18T13:00:00",
              "event_date": "2026-09-18",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Learn the essentials of Medicare and Long-Term Care in this free talk. Get clear guidance on coverage, costs, options, and planning from local specialists.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17086032",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e168921e8e8a",
              "venue_id": "venue_scpl_downtown",
              "title": "In-person Tech Help @ Branciforte",
              "event_time": "September 18 2026 2:00pm - 4:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-18T14:00:00",
              "event_date": "2026-09-18",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Are you stuck with a technology question? You can make a free appointment with a tech savvy library staff member!",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15630341",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_61f213573fc3",
              "venue_id": "venue_scpl_downtown",
              "title": "Lego Friday Fun",
              "event_time": "September 18 2026 3:30pm - 4:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-18T15:30:00",
              "event_date": "2026-09-18",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Use your imagination and build anything you can dream! Lego and Duplo blocks will be available for children and youth to tinker with, build, explore, and creatively play! No registration necessary.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15559939",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1f985279ed78",
              "venue_id": "venue_the_418_project",
              "title": "La Practilonga del 418",
              "event_time": "Friday, September 18, 2026\n7:00 PM - 11:00 PM",
              "venue_name": "The 418 Project",
              "event_start": "2026-09-18T19:00:00",
              "event_date": "2026-09-18",
              "venue_address": "155 S River St, Santa Cruz, CA 95060",
              "description": "The 418 Project welcomes new and experienced Tango dancers for a night of practice dance and traditional Tango music.",
              "event_types": [
                "dance",
                "community"
              ],
              "price_info": "Free - Donations Accepted",
              "url": "https://the418project.org/events/la-practilonga-del-418",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_418_project",
                  "source_name": "The 418 Project",
                  "fetched_at": "2026-08-22T20:30:04.363966Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_418_project|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1517b8ce7eff",
              "venue_id": "venue_the_midway",
              "title": "K Motionz",
              "event_time": "2026/09/18 Fri: Sep 18 (9pm-2am)",
              "venue_name": "The Midway",
              "event_start": "2026-09-18T21:00:00",
              "event_date": "2026-09-18",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "GODS & MONSTERS ∙ INDOORS",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$16.17-20.22 | 21+",
              "url": "https://www.tixr.com/groups/midwaysf/events/k-motionz-199727",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-08-30T10:57:54.572474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_10bdbe21c788",
              "venue_id": "venue_oasis",
              "title": "Madonna vs. Britney: Bootie Mashup",
              "event_time": "2026/09/18 Fri: Sep 18 (9:30pm-2am)",
              "venue_name": "Oasis",
              "event_start": "2026-09-18T21:30:00",
              "event_date": "2026-09-18",
              "venue_address": "298 11th St, San Francisco, CA 94103",
              "description": "Bootie Mashup dance party tribute pitting Madonna against Britney Spears with live mashups and DJ sets.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$17.4 | 21+",
              "url": "https://www.eventbrite.com/e/madonna-vs-britney-bootie-mashup-tickets-1997512181707",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_oasis",
                  "source_name": "Oasis",
                  "fetched_at": "2026-08-28T21:03:01.054070Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_oasis|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_30ccce3b285c",
              "venue_id": "venue_tommy_ts",
              "title": "KOUNTRY WAYNE",
              "event_time": "Sept 18th, 19th & 20th",
              "venue_name": "Tommy T's",
              "event_start": "2026-09-18",
              "event_date": "2026-09-18",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "KOUNTRY WAYNE\nSept 18th, 19th & 20th\nTickets – Video",
              "event_types": [
                "comedy"
              ],
              "price_info": "Tickets",
              "url": "https://tommyts-com.seatengine.com/events/136790",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-08-22T21:57:38.329553Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4ce39cd4bdd2",
              "venue_id": "venue_the_sound_room",
              "title": "Chris Cain",
              "event_time": "Friday, September 18, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-09-18T19:30:00",
              "event_date": "2026-09-18",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "If you are a blues fan, it doesn't get any better than this!!!\n\nTake some influence from B.B. King, Albert King, Ray Charles, and a pinch of Albert Collins. Add in dazzling blues and jazz guitar chops, a rich soulful baritone vocal delivering original, often wry and beleaguered lyrics with sophisticated chord changes and instrumentation, and skills on various horns and keyboards, all delivered with an uptown cool that never lacks searing passion. It all adds up to the one and only Chris Cain, who has gone from being a newcomer phenomenon bursting onto the blues scene in 1987 with a classic debut release, to being a legend, inspiration and long-established member of the blues pantheon.\n\nHis jazz-informed blues guitar playing is fiery, emotional and always unpredictable. His vocals—gruff, lived-in and powerful—add fuel to the fire. His indelible original songs keep one foot in the blues tradition and both eyes on the future. The pure joy Cain brings to his playing and singing is palpable, and draws fans even closer in.\n\n\"Hands down my favorite blues player on the scene today. He’s an absolute blinder of a guitarist, with the voice of B.B. King and the chops of Albert King.\" –Joe Bonamassa\n\n\"Chris Cain? Now that boy can PLAY the guitar!\" –B.B. King\n\n\"Chris Cain is a hot-shot guitarist and a singer with the maturity of blues masters like Bobby Bland and B.B. King.\" –The Washington Post\n\nTickets at Chris Cain",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/chris-cain-2",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-08-26T10:25:42.190144Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d790514fa83e",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Little Shop of Horrors",
              "event_time": "2026-09-18",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-09-18",
              "event_date": "2026-09-18",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Book & Lyrics by Howard Ashman, Music by Alan Menken. Based on the film by Roger Corman, Screenplay by Charles Griffith. Directed by Ben Villegas Randle, Musical Direction by Jad Bernardo, Choreography by Leslie Waggoner",
              "event_types": [
                "theater",
                "live_music"
              ],
              "price_info": "",
              "url": "https://nctcsf.org/event/little-shop/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-08-26T11:06:39.262369Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-09-18",
              "run_id": "run_5315ef200ae4",
              "run_label": "Little Shop of Horrors, Sep 12 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a0fa21d9a6d6",
              "venue_id": "venue_la_pena",
              "title": "¡BAILA! Community Dance Party",
              "event_time": "September 18 @ 8:00 pm",
              "venue_name": "La Pena",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "3105 Shattuck Ave, Berkeley, CA 94705",
              "description": "(opens in new tab)(opens in new tab)Join us in Berkeley for a monthly Latine Community Dance Party with live salsa, bachata, and more, centering consent and inclusivity! Get your tickets […]",
              "event_types": [
                "dj_party",
                "dance",
                "latin_world",
                "live_music"
              ],
              "price_info": "$15 – $30",
              "url": "https://lapena.org/event/baila-community-dance-party-ft-live-salsa-11/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_la_pena",
                  "source_name": "La Pena",
                  "fetched_at": "2026-08-26T11:21:25.407030Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_la_pena|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_80ec16084ff1",
              "venue_id": "venue_guild_theatre",
              "title": "Moonalice",
              "event_time": "SEP\n18\n8:00 PM",
              "venue_name": "Guild Theatre",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "Moonalice GENRE: Rock Spotify | Apple Music | Youtube Moonalice is an exuberant Bay Area ten-piece known for delivering a unique brand of psychedelic soul and rock-tinged Americana. With an unparalleled list of collaborations with some of the biggest names in music, the family tree of Moonalice has touchedevery corner of rock and roll history. Led by vocalist Lester Chambers, who co-founded pioneering '60s psychedelic soul group The Chambers Brothers; bassist Pete Sears, a founding member of Jefferson Starship who has played with everyone from Rod Stewart to Jimi Hendrix, and guitarist Roger McNamee, who was an advisor to Grateful Dead and U2 and fights against entrenched power in the tech industry - their incredible chemistry shines through in their live performances and the recent release of the Chambers Brothers classic, \"Time Has Come Today.\" Moonalice also features esteemed members Barry Sless (lead guitar and pedal steel), Jason Crosby (keyboards), Grammy winner John Molo (drums), along with the next generation of legends including Lester's son Dylan Chambers, and Erika, Rachel, and Chloe Tietjen of acclaimed Americana band the T Sisters. Moonalice has a renegade spirit and an ethos of love, peace, and happiness that permeates everything they do. – Doors 7PM // Show 8PM General Admission is standing room only. Mezzanine is on the second floor, reserved and fully seated. For more information please contact ticketing@guildtheatre.com",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.guildtheatre.com/shows/moonalice-18-sep",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-08-28T10:40:15.787828Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_guild_theatre|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e2c0178184e0",
              "venue_id": "venue_the_freight__salvage",
              "title": "Berkeley Old Time Music Convention",
              "event_time": "2026-09-18T18:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-18T18:00:00",
              "event_date": "2026-09-18",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Account Login Cart Time remaining: 00:00 Enter Promo Code Promo Code (Optional) Activate Code Promo Code View Cart 0 Your cart has expired Your order contained expired items and your shopping cart has been emptied. Close Enter Promo Code Alice Gerrard & Friends, Justin Robinson, and Forty Drop Few Berkeley Old Time Music Convention , Friday, September 18, 2026 7:00PM Event Summary Friday, September 18, 2026 7:00PM Alice Gerrard & Friends, Justin Robinson, and Forty Drop Few Berkeley Old Time Music Convention 2026 BOTMC Additional Details The Berkeley Old Time Music Convention is a five day music festival featuring a lovingly curated roster of local and national acts, with concert sets, rollicking square dances, workshops, jams, and the illustrious string band contest in venues throughout Berkeley. Head to the BOTMC website for a full list of this year’s activities! On Friday September 18th, the Berkeley Old Time Music Convention returns to The Freight to present three phenomenal acts: Alice Gerrard with Reed Stutz & Suzy Thompson, Justin Robinson, and Forty Drop Few. ABOUT THE ARTISTS Alice Gerrard In a career spanning more than 50 years, Alice Gerrard has known, learned from, and performed with many of the old-time and bluegrass greats and has in turn earned worldwide respect for her own important contributions to the music. Known for her groundbreaking collaboration with Appalachian singer Hazel Dickens during the 1960s and ’70s, their music continues to be highly influential. Alice has appeared on more than 20 recordings, including projects with many traditional musicians such as Tommy Jarrell, Enoch Rutherford, Otis Burris, Luther Davis and Matokie Slaughter; with Tom Sauber and Brad Leftwich as Tom, Brad & Alice, with the Harmony Sisters, The Piedmont Melody Makers, The Herald Angels, Beverly Smith, Kay Justice, and with Anna R-g and Elizabeth LaPrelle. A tireless advocate of traditional music, Alice has won numerous national honors. In 1987 Alice founded The O",
              "event_types": [
                "live_music",
                "folk",
                "festival"
              ],
              "price_info": "$39/$44\n(INCLUDES ALL FEES)",
              "url": "https://secure.thefreight.org/15998/15999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d68e1c692b9d",
              "venue_id": "venue_meyhouse",
              "title": "Bill Cunliffe: Nat King Cole Reimagined",
              "event_time": "Sep 18, 2026, 5:00 PM – 8:00 PM",
              "venue_name": "Meyhouse Palo Alto",
              "event_start": "2026-09-18T17:00:00",
              "event_date": "2026-09-18",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.meyhousejazz.com/event-details/grammy-winner-bill-cunliffe-nat-king-cole-reimagined-fri-9-18-5pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Palo Alto",
                  "fetched_at": "2026-08-28T12:28:47.745590Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_meyhouse|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1795f408b6d0",
              "venue_id": "venue_meyhouse",
              "title": "Bill Cunliffe: Nat King Cole Reimagined",
              "event_time": "Sep 18, 2026, 8:00 PM – 10:00 PM",
              "venue_name": "Meyhouse Palo Alto",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.meyhousejazz.com/event-details/grammy-winner-bill-cunliffe-nat-king-cole-reimagined-fri-9-18-8pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Palo Alto",
                  "fetched_at": "2026-08-28T12:28:47.745590Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_meyhouse|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_022dd08444af",
              "venue_id": "venue_sfjazz_lab",
              "title": "CAMILLE KERANI",
              "event_time": "2026-09-18 7:00 PM",
              "venue_name": "SFJAZZ Lab",
              "event_start": "2026-09-18T19:00:00",
              "event_date": "2026-09-18",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "plays John Coltrane’s A Love Supreme",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/hotplate-camille-kerani-a-love-supreme/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_lab|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_95a43cf6ccf9",
              "venue_id": "venue_sfjazz_miner",
              "title": "Branford Marsalis & Dianne Reeves",
              "event_time": "2026-09-18 7:30 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-09-18T19:30:00",
              "event_date": "2026-09-18",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Members Only\n\nLivestream Only",
              "event_types": [
                "live_music",
                "jazz",
                "livestream"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/branford-marsalis-and-dianne-reeves-celebrate-john-coltrane/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_e89f353353a7",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Noise Witch",
              "event_time": "2026-09-18 7:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-09-18T19:00:00",
              "event_date": "2026-09-18",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "Other Dimensions in Sound is our Friday music series curated and hosted by Boohaabian multi reed player extraordinare David Boyce. Each week David will be inviting different musical guests to join him in our galeria for a night of musical medicina.\n\nTonight’s sonic sustenance is being brought to you by Noise Witch(David Boyce-reeds&efxs, Brian Rodvien-drums, and Bryan Dean-bass)",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/b3563sjjj4hg6awgd3zlgeg85kdlf2",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-08-28T14:05:33.197491Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-31T10:04:42.136151Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fe429dcb86d6",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-09-18",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-09-18",
              "event_date": "2026-09-18",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-09-18",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_31e9bd1d1ef2",
              "venue_id": "venue_dawn_club",
              "title": "VERVE QUINTET",
              "event_time": "Friday, September 18, 2026 8:00 PM 11:59 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Introducing The Verve Quintet, The Bay Area’s hottest new jazz ensemble! Celebrating the effervescent sound of the 1960’s hard bop era. In addition to performing their own original compositions they honor the great jazz artists like Horace Silver, Freddie Hubbard, Art Blakey, Miles Davis, John Coltrane, and Lee Morgan to name a few.  The Verve Quintet is led by Trumpeter Daniel Herrera and saxophonist Andrew Dixon, who’s dynamic pairing and complementary musical stylings create a unique and exciting sound that you will not want to miss!\n\n\n  \n#block-d2e5f98ba595e07b6be6 {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n\n\n  }\n\n  #block-d2e5f98ba595e07b6be6 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-d2e5f98ba595e07b6be6 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-d2e5f98ba595e07b6be6 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-d2e5f98ba595e07b6be6 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-d2e5f98ba595e07b6be6 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-d2e5f98ba595e07b6be6 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/verve-quintet-eynb8-5cc77-4aetx-cbhwl-5cp62-nl7wa-6p5sl-wcj6l-am5xb-alf8l-gybpz-t6jcf-plj5c",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-08-28T15:32:50.415811Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_24d0509e151c",
              "venue_id": "venue_omca",
              "title": "Fall Teacher Night",
              "event_time": "2026-09-18T16:30:00",
              "venue_name": "OMCA",
              "event_start": "2026-09-18T16:30:00",
              "event_date": "2026-09-18",
              "venue_address": "1000 Oak St, Oakland, CA 94607",
              "description": "Calling all teachers! In celebration of our school communities, teachers and principals are invited to join us for OMCA's Annual Fall Teacher Night.",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "https://museumca.org/event/fall-teacher-night-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_omca",
                  "source_name": "OMCA",
                  "fetched_at": "2026-08-28T16:49:24.654558Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_omca|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d5fb6b08d7e5",
              "venue_id": "venue_omca",
              "title": "Kiyomi & Cal Raijin Taiko",
              "event_time": "2026-09-18T17:00:00",
              "venue_name": "OMCA",
              "event_start": "2026-09-18T17:00:00",
              "event_date": "2026-09-18",
              "venue_address": "1000 Oak St, Oakland, CA 94607",
              "description": "Celebrate the opening week of BeHere/1942: A New Lens on the Japanese American Incarceration this Friday Night at OMCA with an evening of music, culture, and community. The Garden Stage features two dynamic performances, beginning with Cal Raijin Taiko, whose original compositions blend the tradition of Japanese taiko drumming with contemporary influences. Following, Bay Area singer-songwriter Kiyomi brings her soulful alternative R&B sound to the stage, weaving rich harmonies, live looping, and heartfelt storytelling into an intimate performance that invites audiences to slow down and connect.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Free",
              "url": "https://museumca.org/event/friday-nights-at-omca-with-kiyomi-cal-raijin-taiko/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_omca",
                  "source_name": "OMCA",
                  "fetched_at": "2026-08-28T16:49:24.654558Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_omca|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c6649d6d1a0e",
              "venue_id": "venue_envelop_sf",
              "title": "Grateful Dead - American Beauty",
              "event_time": "Friday, September 18, 09/18/2026",
              "venue_name": "Envelop SF",
              "event_start": "2026-09-18",
              "event_date": "2026-09-18",
              "venue_address": "2439 3rd St, San Francisco, CA 94107",
              "description": "LISTEN is a series of iconic album listenings in Envelop, allowing us to listen together within the music. Here's the important info to know before you arrive - Envelop SF is a pioneering immersive listening space that allows you to experience sound like never before. Our events are low capacity by design and tickets can sell out quickly. We encourage you to make your purchase ahead of time so we don’t miss you. Envelop SF is a shoeless venue. We want you to be as comfortable as possible, and this helps us keep the space extra clean for everyone. You can find us easily. Envelop SF is within The Midway at 900 Marin St, SF, CA. Enter from the Michigan St side of the building through the patio. Envelop SF is ADA compliant. If you have any accessibility needs, please feel free to reach out ahead of time and we’ll be happy to support. A cash bar for wine, beer, and tea is available. No outside drinks or food are allowed. No admittance into Envelop SF beyond 15 mins after start time. The main gate will be closed. Arriving late disrupts the listening. Please arrive before the event begins. Please avoid in's and out's during listening events to respect everyone's experience. Listening events are seated, dance parties are not. This event's seating map is below the description. We have a comfortable space waiting for you.﻿ Please no phones while listening, and please silence your ringer. We encourage you to take photos before and after the event. Please also be respectful of other people's experiences in the space during the event. All sales are final. There are no refunds or ticket exchanges.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://envelop.us/event/ESF20260918-grateful-dead-american-beauty-listen",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_envelop_sf",
                  "source_name": "Envelop SF",
                  "fetched_at": "2026-08-28T18:09:17.910007Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_envelop_sf|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ed24789ce195",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Garrick Ohlsson Plays Brahms",
              "event_time": "Friday, Sep 18, 2026 | 7:30 pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-09-18T19:30:00",
              "event_date": "2026-09-18",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "Overview Conductor David Afkham and the San Francisco Symphony explore the musical orbit of Robert and Clara Schumann. Robert’s Fourth Symphony begins with a catchy rising-and-falling figure, the “Clara theme,” derived from one of his beloved bride’s own piano compositions. The theme appears throughout the symphony, which he presented to her on her 22nd birthday. Johannes Brahms’s Piano Concerto No. 1 is both an elegy for Robert and a tender portrait of Clara, whom Brahms once described as “going to the concert hall like a priestess to the altar.” You won’t want to miss the visionary soloist Garrick Ohlsson, who shares her disciplined devotion. Inspired by Ludwig van Beethoven, Unsuk Chin’s subito con forza pronounces itself forcefully and without reservation, painting with the bold brush strokes of the avant-garde.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "LEARN MORE",
              "url": "https://www.sfsymphony.org/Buy-Tickets/2026-27/Garrick-Ohlsson-Plays-Brahms",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-08-28T19:38:14.129031Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_95e1722eab83",
              "venue_id": "venue_cry_baby",
              "title": "Cuffing Season",
              "event_time": "2026-09-18T07:00:00.000Z",
              "venue_name": "Cry Baby",
              "event_start": "2026-09-18T07:00:00",
              "event_date": "2026-09-18",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "Crybaby & Cuffing Season Present CUFFING SEASON - The Bay's Best R&B Party! Fri Sep 18, 2026 9:00 PM 21+ Buy Tickets Additional Info a R&B party for you + boo to bump, grind, and freak to Pull up to Crybaby on Friday, September 18th with a boo or find some love at the club. R&B bangers and club anthems all night. Be ready for to experience what it would be like if T-Pain, Burna Boy, Kehlani and Drake had a party. DJs TBA! 9:00 PM | 21+ | Drink Specials All Night Limited free entry with RSVP, but only the first 25...don't sleep on it, snag an early bird ticket and save! + Google Calendar Related Events Buy Tickets Fri Sep 11 The Hyphy Function - A Party For The Bay, By The Bay! w/ DJ Westcoast + MicahTron + Mattyagi & Patio by Family Not a Group",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://crybaby.live/tm-event/cuffing-season-the-bays-best-rb-party/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-08-28T19:56:15.638282Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cry_baby|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cbc9c28f9f2c",
              "venue_id": "venue_exploratorium",
              "title": "Daytime Members-Only Hours",
              "event_time": "2026-09-18",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-18",
              "event_date": "2026-09-18",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Please consider joining us today ! Members are the backbone of our organization and help ensure the continuity of our mission to create inquiry-based experiences that transform learning worldwide. We can’t wait to see you at the museum.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/member-hours",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-18",
              "run_id": "run_e38dfc952011",
              "run_label": "Daytime Members-Only Hours, Aug 30 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_145fdb573523",
              "venue_id": "venue_the_monkey_house",
              "title": "bay station, shaffer",
              "event_time": "09/18/2026",
              "venue_name": "The Monkey House",
              "event_start": "2026-09-18",
              "event_date": "2026-09-18",
              "venue_address": "1638 University Avenue, Berkeley, CA",
              "description": "Americana band Bay Station joins songwriter Mick Shaffer for an evening of rootsy tunes and heartfelt lyrics. Catch this collaborative live folk performance at The Monkey House.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monkey_house",
                  "source_name": "The Monkey House",
                  "fetched_at": "2026-08-28T21:37:06.591184Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monkey_house|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_609fc2f23a1e",
              "venue_id": "venue_club_fox",
              "title": "Sona: 70s & 80s Rock Covers",
              "event_time": "2026-09-18T19:30:00",
              "venue_name": "Club Fox",
              "event_start": "2026-09-18T19:30:00",
              "event_date": "2026-09-18",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Friday September 18thSONAA Tribute to your Favorite 70s & 80s Rock CoversDoors 7:30PM / Show 8:30PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/sona-a-tribute-to-your-favorite-70s-and-80s-rock-covers-tickets-1994391109496?aff=oddtdtcreator&keep_tld=true",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-08-28T22:45:26.741794Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1b5a02dcf0c7",
              "venue_id": "venue_the_ritz",
              "title": "Daft Disko",
              "event_time": "2026-09-18T21:00:02-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-09-18T21:00:02",
              "event_date": "2026-09-18",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "GBH Presents\nDAFT DISKO\n\n \n\nFRIDAY SEPTEMBER 18, 2026",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$15 GA",
              "url": "https://www.ticketweb.com/event/daft-disko-the-ritz-tickets/14249774",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-08-28T22:59:09.006281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c22fa2d001ca",
              "venue_id": "venue_rhythmix",
              "title": "The Locals: Opening Reception",
              "event_time": "2026-09-18T18:00:00",
              "venue_name": "Rhythmix",
              "event_start": "2026-09-18T18:00:00",
              "event_date": "2026-09-18",
              "venue_address": "2513 Blanding Ave, Alameda, CA 94501",
              "description": "Opening reception for \"The Locals\" exhibit at K Gallery. Exhibit dates listed as September 11 to October 25, 2026.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://www.rhythmix.org/upcoming-exhibits/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rhythmix",
                  "source_name": "Rhythmix",
                  "fetched_at": "2026-08-28T23:14:01.025318Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rhythmix|2026-09-18",
              "run_id": "run_566a8f02098a",
              "run_label": "The Locals: Opening Reception, Sep 11 – Oct 25",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_025adcb389fe",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-09-18",
              "venue_name": "De Young",
              "event_start": "2026-09-18",
              "event_date": "2026-09-18",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-18",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_257cb4ef735f",
              "venue_id": "venue_de_young",
              "title": "Artist Activations: Hope & Akagi",
              "event_time": "9/18/2026 10 am–4 pm",
              "venue_name": "De Young",
              "event_start": "2026-09-18T10:00:00",
              "event_date": "2026-09-18",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join Tlingit artists Lily Hope and Sydney Akagi for multiple artist activations throughout this Free Saturdays event. Hope and Akagi specialize in Ravenstail and Chilkat styles of weaving and were commissioned to weave a special Chilkat dancing blanket for FAMSF. The activations include a talk, a family art-making activity, and weaving demonstrations. The program concludes with a ceremony that activates their newly made Chikat blanket through dance, marking the beginning of its life at the de Young. Schedule 10 am–noon: Weaving Demonstrations by Lily Hope and Sydney Akagi, Wilsey Court 11 am–3 pm: Family Art Making with Lily Hope, Sydney Akagi, and Addy Mallott, Piazzoni Murals Room 1–2 pm: Artist Talk by Lily Hope and Sydney Akagi, Koret Auditorium 3–4 pm: First Dance with maternal aunts, Irene and Deanna Lampe, and Eagle opposites, Joseph and Elijah Marks, Wilsey CourtAbout the artists Sydney Akagi (Tlingit) is a Chilkat and Ravenstail weaver working at the intersection of Indigenous knowledge systems, contemporary form, and environmental advocacy. Rooted in Lingít Aaní (Southeast Alaska), Akagi’s work is informed by an ongoing relationship to the Taku River and its salmon systems. Recent bodies of work explore the presence of the human figure within Chilkat structure, incorporating elements such as adornment, tattoo, and mark-making to consider identity, transformation, and the visibility of Indigenous bodies across time. Lily Hope (b. 1980) was born and raised in Juneau, Alaska. She is Tlingit, of the Raven moiety, of her grandmother’s clan, the T’akdeintaan. She learned Ravenstail weaving from her late mother, Clarissa Rizal, and Kay Field Parker. She also apprenticed for over a decade in Chilkat weaving with Rizal, who was one of the last living apprentices of the late master Chilkat weaver Jennie Thlunaut. She’s committed to co-creating, and teaching the technical and spiritual practices in these two premiere finger-twined textiles. She spearheads multicommun",
              "event_types": [
                "art",
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/artist-activations-lily-hope-sydney-akagi",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4c49e0837b19",
              "venue_id": "venue_punch_line",
              "title": "RED RICHARDSON",
              "event_time": "Sep 18, 2026 7:30 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-18T19:30:00",
              "event_date": "2026-09-18",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "British comedian and viral sensation Red Richardson brings his sharp, toxic-skewering wit and hilarious storytelling across the pond.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/red-richardson-san-francisco-california-09-18-2026/event/1C0064C9C6DE730C",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d43bf48614c5",
              "venue_id": "venue_punch_line",
              "title": "RED RICHARDSON",
              "event_time": "Sep 18, 2026 9:45 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-18T21:45:00",
              "event_date": "2026-09-18",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "British comedian and viral sensation Red Richardson brings his sharp, toxic-skewering wit and hilarious storytelling across the pond.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/red-richardson-san-francisco-california-09-18-2026/event/1C0064C9C6E37319",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_792c6c86e391",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "CHRISTOPHER TITUS",
              "event_time": "Fri Sep 18, 2026 7:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-09-18T19:00:00",
              "event_date": "2026-09-18",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Stand-up veteran Christopher Titus takes the stage for a night of hard-hitting, cathartic, and personal comedy.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/christopher-titus-san-francisco-california-09-18-2026/event/1C0064B45A2E2D0E",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9a20fd657b73",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "GET IT?! GAMESHOW",
              "event_time": "Fri Sep 18, 2026 9:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-09-18T21:30:00",
              "event_date": "2026-09-18",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "An interactive and comedic live game show blending audience participation, stand-up, and unpredictable fun.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/get-it-gameshow-san-francisco-california-09-18-2026/event/1C0064E72EBD5949",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_99849d1f50ef",
              "venue_id": "venue_shapeshifters",
              "title": "Gravitational Lensing: Feminist Film Dialogues",
              "event_time": "2026-09-18",
              "venue_name": "Shapeshifters",
              "event_start": "2026-09-18",
              "event_date": "2026-09-18",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "Program 17: Family Portraits/Relational Exercises includes a spectrum of diaristic films—from uncanny documentary to autobiographical re-enactments—that manifest different ways filmmakers choose to represent their relationships to family and, more broadly, to home (both literal and conceptual) through cinematic language.",
              "event_types": [
                "film"
              ],
              "price_info": "San Francisco Cinematheque",
              "url": "https://sfcinematheque.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shapeshifters",
                  "source_name": "Shapeshifters",
                  "fetched_at": "2026-08-30T10:04:33.112973Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-09-18",
              "run_id": "run_8afbca984fe1",
              "run_label": "Gravitational Lensing: Feminist Film Dialogues, Sep 9 – Nov 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8f6c61097395",
              "venue_id": "venue_wyldflowr_arts",
              "title": "Edgetone Records 35th Anniversary",
              "event_time": "9/18/2026 7:00 PM",
              "venue_name": "Wyldflowr Arts",
              "event_start": "2026-09-18T19:00:00",
              "event_date": "2026-09-18",
              "venue_address": "809 37th St, Oakland, CA 94609",
              "description": "Edgetone Records celebrates 35 years on planet Earth with a series of showcase performances.Brett Carson’s Quattuor Elephantis, duoB, Matt Davignon",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23340",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-31T10:04:42.136151Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_wyldflowr_arts|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_db5440bc6c6a",
              "venue_id": "venue_yoshis",
              "title": "BIG DADDY KANE",
              "event_time": "September 18, 2026 - 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-18T19:30:00",
              "event_date": "2026-09-18",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "ONE OF THE MOST INFLUENTIAL AND SKILLED MCS IN HIP-HOP",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$74 - $99",
              "url": "https://yoshis.com/events/buy-tickets/big-daddy-kane-2/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_16ddd92400e7",
              "venue_id": "venue_brava_theater",
              "title": "HUMP! Film Festival – Fall Season",
              "event_time": "2026-09-18",
              "venue_name": "Brava Theater",
              "event_start": "2026-09-18",
              "event_date": "2026-09-18",
              "venue_address": "2781 24th St, San Francisco, CA 94110",
              "description": "HUMP! is a live, curated short film festival celebrating sex, love, kink, humor, vulnerability, and human creativity told by real people and experienced together, in theaters, as it was meant to be.\n\nFounded by Dan Savage, HUMP! has spent over two decades proving that intimacy is culture and that audiences are hungry for work that is bold, funny, handmade, and deeply human.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.brava.org/all-events/humpfallfestival2026-6zp3n-hp5pk-w2pcm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brava_theater",
                  "source_name": "Brava Theater",
                  "fetched_at": "2026-08-31T12:29:43.593913Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brava_theater|2026-09-18",
              "run_id": "run_3a948c83cb9d",
              "run_label": "HUMP! Film Festival – Fall Season, Sep 17 – Sep 19",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_136f42b59a10",
              "venue_id": "venue_winters",
              "title": "MATINEE***Maverick Bluegrass",
              "event_time": "2026-09-18T16:00:00",
              "venue_name": "Winters",
              "event_start": "2026-09-18T16:00:00",
              "event_date": "2026-09-18",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "Afternoon matinee featuring coastal bluegrass music with Maverick Bluegrass.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-08-31T12:39:12.063314Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_winters|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_6f67e583ecc1",
              "venue_id": "venue_winters",
              "title": "Vesseles/Wroth/Sunset's Ire",
              "event_time": "2026-09-18T20:00:00",
              "venue_name": "Winters",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "Evening live music featuring Vesseles, Wroth, and Sunset's Ire.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQEw46PdWbakBeEAH6BDxfSMCX2YLlgkQ_uPbxgw8_XmKsVxK0NEcIuGKw4IkMMzkhF2TMSQMKOfiPRIFhgQkVg8SiKmH_Id8i2dSKWJLGaLHiz0WikRLJ1RaZy8lvnJil96cL9HDFSa96biKzg6T2LA9g0nI3I9WA==",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-08-31T12:39:12.063314Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_winters|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_2d4fb2e4359b",
              "venue_id": "venue_cornerstone",
              "title": "Matt Braunger (Live Special Recording)",
              "event_time": "2026-09-18T19:00:00",
              "venue_name": "Cornerstone",
              "event_start": "2026-09-18T19:00:00",
              "event_date": "2026-09-18",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Cornerstone Presents comedian and actor Matt Braunger recording his new hour comedy special live.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$29+",
              "url": "https://www.prekindle.com/event/61585-matt-braunger-berkeley",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-08-31T14:04:10.183515Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cornerstone|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_2d0451e72a51",
              "venue_id": "venue_ashkenaz",
              "title": "Carlos y Charlos",
              "event_time": "09/18/2026 7:30 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-09-18T19:30:00",
              "event_date": "2026-09-18",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "Traditional Norteño Music",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/192252",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-08-31T14:45:33.243069Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_93786aa23d02",
              "venue_id": "venue_yerba_buena_center",
              "title": "GaHee Park: Behind the Curtain",
              "event_time": "2026-09-18",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-18",
              "event_date": "2026-09-18",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Park invites us to peek behind the curtain, as she lays claim to her own power as a surrealist painter working across fantasy and intimacy.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/gahee-park-behind-the-curtain/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-18",
              "run_id": "run_5353f80886f6",
              "run_label": "GaHee Park: Behind the Curtain, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_480d3fbfac39",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dream",
              "event_time": "2026-09-18",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-18",
              "event_date": "2026-09-18",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public art installation commissioned by YBCA and co-sponsored by San Francisco Public Works.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dream-public-art/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-18",
              "run_id": "run_b6a5ba4e8809",
              "run_label": "Dream, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_27a786e49812",
              "venue_id": "venue_yerba_buena_center",
              "title": "SoMa Mahal Kita",
              "event_time": "2026-09-18",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-18",
              "event_date": "2026-09-18",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A message of love for the SoMa neighborhood and community, inspired by weaving practices in the Phillipines and the colors of the Filipino flag.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/soma-mahal-kita-soma-i-love-you-ciriaco-sayoc/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-18",
              "run_id": "run_0c5141fff335",
              "run_label": "SoMa Mahal Kita, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d478b19b2866",
              "venue_id": "venue_yerba_buena_center",
              "title": "We Rooted in Flight",
              "event_time": "2026-09-18",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-18",
              "event_date": "2026-09-18",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public artwork inviting passerbyers to join in the journey of collective flight",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/we-fly-for-a-liberated-we-we-rooted-in-flight/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-18",
              "run_id": "run_1d34139aedcf",
              "run_label": "We Rooted in Flight, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c04886c584c2",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-09-18T14:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-18T14:00:00",
              "event_date": "2026-09-18",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-18",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_592ba8bd8c63",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-09-18T18:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-18T18:00:00",
              "event_date": "2026-09-18",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-18",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 2,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_a04f73d7db9b",
              "venue_id": "venue_elis_mile_high",
              "title": "Still Ruins, Tube Alloys & Shop Regulars",
              "event_time": "Fri, Sep 18, 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-09-18",
              "event_date": "2026-09-18",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "Still Ruins, Tube Alloys, Shop Regulars, Clarko with Lower Grand Radio DJS Fri, Sep 18 | Eli's Mile High Club Buy Tickets Time & Location Sep 18, 2026, 8:00 PM – 11:50 PM Eli's Mile High Club, 3629 Martin Luther King Jr Way, Oakland, CA 94609, USA About the event 8pm Doors - 9pm Music 21+ Lower Grand Radio & No Time Gigs presents: Still Ruins (Headliner) : Still Ruins make the kind of music that feels like déjà vu for a future you never lived. Since forming in Oakland in 2018, the trio of Frankie Soto, Jose Medina, and Cyrus VandenBerghe have carved out a space where dreamwave, new wave, and post-punk converge into something both lush and immediate. Their self-titled debut EP introduced the band’s sensibility: a blend of widescreen romanticism and shadowy introspection that recalls The Chameleons or early Tears for Fears while sounding entirely their own. Tube Alloys LA punks influenced by Wire, Swell Maps and Crisis with records out via thier own label URGE Records and La Vida Es Un Mus. Shop Regulars Formed by Portland guitarist Matt Radosevich after the demise of his former outfit, the much-beloved Honey Bucket, Shop Regulars has developed into something of a local… Show More Tickets Ticket type General Admission Sale ends Sep 18, 10:30 PM Price $15.00 +$0.38 ticket service fee Quantity 0 Total $0.00 Checkout Share this event",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.elismilehighclub.com/events/still-ruins-tube-alloys-shop-regulars-clarko-with-lower-grand-radio-djs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-08-31T16:36:06.503526Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_52857119bfdc",
              "venue_id": "venue_chase_center",
              "title": "Valkyries vs. Fire",
              "event_time": "September 18, 2026 - 7:00 PM",
              "venue_name": "Chase Center",
              "event_start": "2026-09-18T19:00:00",
              "event_date": "2026-09-18",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "At Select-A-Suite on Thursday, September 17, 2026, not only will you have the opportunity to reserve your suites before they are released to the public, but attendees can also enjoy complimentary food and beverage tastings throughout the event, network with fans and business professionals, and have the opportunity to capture a photo with the Larry O'Brien Trophies.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://chasecenter.com/events/20260918-gsv-vs-por/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-08-31T17:38:13.687686Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_04a0b8b9c1bc",
              "venue_id": "venue_tupelo",
              "title": "Cougar Unleashed",
              "event_time": "Friday September 18th 9:00PM - 1:30AM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-18T21:00:00",
              "event_date": "2026-09-18",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "The best of the Bay Area's funky soul musicians bring their chops to North Beach. It's time to get down, old school. NO COVER. DJ Van kicks it off from 9-10, and hits the breaks. Cougar Unleashed at 10. Get here early - we fill up!",
              "event_types": [
                "live_music",
                "rnb_soul_funk",
                "dj_party"
              ],
              "price_info": "NO COVER",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a041f29f925a",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Heather Shaw",
              "event_time": "2026-09-18 2026-09-18T21:45:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-09-18",
              "event_date": "2026-09-18",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show featuring Heather Shaw with Chase Harter and Dan Aguinaga.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Price not found in the specific listing.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/133171",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-08-31T18:20:03.865483Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-09-18",
              "run_id": "run_ae301c6daee4",
              "run_label": "Heather Shaw, Sep 18 – Sep 19",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_fb75a7ca40b0",
              "venue_id": "venue_the_knockout",
              "title": "Black Vinyl Happy Hour",
              "event_time": "Fri 18 Sep ― 6:00pm",
              "venue_name": "The Knockout",
              "event_start": "2026-09-18T18:00:00",
              "event_date": "2026-09-18",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "LOVE T.K.O. DISCO DANCE PARTY! DJ AUDREY AND SPECIAL FRIENDS GET BEHIND THE DECKS AND FILL THE DANCE FLOOR WITH DISCO, FUNK, AND HOUSE VIBES THAT DON’T STOP UNTIL YOU DROP! ALL VINYL SELECTIONS! • 9PM TO CLOSE • NO COVER • 21+ • IF IT’S THE THIRD FRIDAY, I ...",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/m665b685e646?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-09-02T10:33:16.877437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b311526d90a1",
              "venue_id": "venue_the_knockout",
              "title": "Love T.K.O. Disco Dance Party",
              "event_time": "Fri 18 Sep ― 9:00pm",
              "venue_name": "The Knockout",
              "event_start": "2026-09-18T21:00:00",
              "event_date": "2026-09-18",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "LOVE T.K.O. DISCO DANCE PARTY! DJ AUDREY AND SPECIAL FRIENDS GET BEHIND THE DECKS AND FILL THE DANCE FLOOR WITH DISCO, FUNK, AND HOUSE VIBES THAT DON’T STOP UNTIL YOU DROP! ALL VINYL SELECTIONS! • 9PM TO CLOSE • NO COVER • 21+ • IF IT’S THE THIRD FRIDAY, I ...",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/l58d15384ba0?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-09-02T10:33:16.877437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_640271be4641",
              "venue_id": "venue_discretion_brewing",
              "title": "John Ryback & Friends",
              "event_time": "2026-09-18T17:30:00",
              "venue_name": "Discretion Brewing",
              "event_start": "2026-09-18T17:30:00",
              "event_date": "2026-09-18",
              "venue_address": "2703 41st Ave Ste A, Soquel, CA 95073",
              "description": "Live Music 5:30-7:30pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_discretion_brewing",
                  "source_name": "Discretion Brewing",
                  "fetched_at": "2026-09-02T11:35:03.120781Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_discretion_brewing|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4eff3e2beb5c",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy",
              "event_time": "2026-09-18T19:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-09-18T19:45:00",
              "event_date": "2026-09-18",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "Stand-up comedy show at Shelton Theater. Listing says each show features five to six hand-picked, experienced comedians and an occasional guest drop-in.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$25.00",
              "url": "https://tickets.cttcomedy.com/events/2564/cheaper-than-therapy-stand-up-comedy-fri-sep-18-7-45-pm/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-09-02T11:40:03.690341Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_8ff921f10d7d",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy",
              "event_time": "2026-09-18T21:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-09-18T21:45:00",
              "event_date": "2026-09-18",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "Stand-up comedy show at Shelton Theater. Listing says each show features five to six hand-picked, experienced comedians and an occasional guest drop-in.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$25.00",
              "url": "https://tickets.cttcomedy.com/events/2565/cheaper-than-therapy-stand-up-comedy-fri-sep-18-9-45-pm/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-09-02T11:40:03.690341Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_a321889da8f6",
              "venue_id": "venue_madrone_art_bar",
              "title": "TWANG PEAKS",
              "event_time": "September 18 @ 6:30 pm - 8:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-18T18:30:00",
              "event_date": "2026-09-18",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Bluegrass, Swing & other S$*t 6:30-8:30pm",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/twang-peaks-5/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f46037025951",
              "venue_id": "venue_madrone_art_bar",
              "title": "WILD CARD",
              "event_time": "September 18 @ 9:00 pm - 11:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-18T21:00:00",
              "event_date": "2026-09-18",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Ante up! DJs King Most and White Mike host a night of drinks and dancing, dealing out your favorite hip hop, funk and dance jams—including some unexpected gems. Music starts at 9pm. $10 cover at 9:30pm / 21 & up w/ID Guarantee your spot!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10 cover",
              "url": "https://madroneartbar.com/event/wild-card-2026-04-17-2026-09-18/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_75499a6138b6",
              "venue_id": "venue_moes_alley",
              "title": "Rayland Baxter",
              "event_time": "2026-09-18T21:00:00",
              "venue_name": "Moe's Alley",
              "event_start": "2026-09-18T21:00:00",
              "event_date": "2026-09-18",
              "venue_address": "1535 Commercial Way, Santa Cruz, CA 95065",
              "description": "Show: 9:00 PM",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_moes_alley",
                  "source_name": "Moe's Alley",
                  "fetched_at": "2026-09-03T10:23:10.512238Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_moes_alley|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9b57e465b63c",
              "venue_id": "venue_black_cat",
              "title": "Lady Stout & Nurenssnce",
              "event_time": "2026-09-18T19:00:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-18T19:00:00",
              "event_date": "2026-09-18",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50, $60\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n9:30 show: Bar @ 6:00, Doors @ 8:45\n\n*Sunday 9:15 show: Bar @ 6:00, Doors @ 8:30\n\n\n\n\nVoice-led, genre-bending soul where jazz, gospel, rock, funk, and fearless improvisation collide.\n\n\n\n\nLady Stout & Nurenssnce deliver a powerful live experience where soulful storytelling, deep grooves, and fearless improvisation meet. Blending jazz, gospel, rock, and contemporary soul, every performance is immersive, emotionally charged, and completely alive in the moment.\n\n\n\n\nLady Stout has shared the stage with Robert Glasper, Chris Dave, Derrick Hodge, Ledisi, Alicia Keys, Patti LaBelle, Anderson .Paak, Durand Bernarr, Keyon Harrold, and Noname, with appearances at Carnegie Hall, NPR Tiny Desk, the GRAMMY Awards, BET Awards, the Billboard Music Awards, The Tonight Show Starring Jimmy Fallon, and collaborations including De La Soul. Backed by an exceptional band of internationally recognized musicians, Nurenssnce honors the traditions of jazz while boldly pushing the music into new territory.\n\n\n\n\nBand Lineup:\n\nLady Stout — lead vocals\n\nDan Winshall — bass, musical director\n\nTyson Jackson — drums\n\nAxel Tosca — piano\n\nMatt Sewell — guitar",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "$20 , $30 , $40 , $50, $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/12433/2026-09-18",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_67d17505308e",
              "venue_id": "venue_black_cat",
              "title": "Lady Stout & Nurenssnce",
              "event_time": "2026-09-18T21:30:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-18T21:30:00",
              "event_date": "2026-09-18",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50, $60\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n9:30 show: Bar @ 6:00, Doors @ 8:45\n\n*Sunday 9:15 show: Bar @ 6:00, Doors @ 8:30\n\n\n\n\nVoice-led, genre-bending soul where jazz, gospel, rock, funk, and fearless improvisation collide.\n\n\n\n\nLady Stout & Nurenssnce deliver a powerful live experience where soulful storytelling, deep grooves, and fearless improvisation meet. Blending jazz, gospel, rock, and contemporary soul, every performance is immersive, emotionally charged, and completely alive in the moment.\n\n\n\n\nLady Stout has shared the stage with Robert Glasper, Chris Dave, Derrick Hodge, Ledisi, Alicia Keys, Patti LaBelle, Anderson .Paak, Durand Bernarr, Keyon Harrold, and Noname, with appearances at Carnegie Hall, NPR Tiny Desk, the GRAMMY Awards, BET Awards, the Billboard Music Awards, The Tonight Show Starring Jimmy Fallon, and collaborations including De La Soul. Backed by an exceptional band of internationally recognized musicians, Nurenssnce honors the traditions of jazz while boldly pushing the music into new territory.\n\n\n\n\nBand Lineup:\n\nLady Stout — lead vocals\n\nDan Winshall — bass, musical director\n\nTyson Jackson — drums\n\nAxel Tosca — piano\n\nMatt Sewell — guitar",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "$20 , $30 , $40 , $50, $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/12433/2026-09-18",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fc8552bbc798",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Kenny Washington Quartet",
              "event_time": "Friday, September 18, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-18T19:00:00",
              "event_date": "2026-09-18",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Friday, September 18, 2026 @ 7pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/kenny-washington-quartet-11/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e094c3a65eaf",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Tony Lindsay",
              "event_time": "Friday, September 18, 2026 @ 9pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-18T21:00:00",
              "event_date": "2026-09-18",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Friday, September 18, 2026 @ 9pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/tony-lindsay-18/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d758163b9b02",
              "venue_id": "venue_brick_and_mortar",
              "title": "BIIRD (NIGHT 1)",
              "event_time": "9.18 Show: 9:00PM",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-09-18T21:00:00",
              "event_date": "2026-09-18",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Event Details Brick & Mortar Music Hall Presents BIIRD (Night 1) September 18, 2026 9:00 pm PDT (Doors: 8:00 pm ) Brick and Mortar Music Hall , 1710 Mission Street , San Francisco, CA ( map ) Sold Out + Google Calendar BIIRD Made up of Lisa Canny, Niamh Hinchy, Laura Doherty, Ciara Murphy, Zoran Donohoe, Miadhachlughain O’Donnell, Sal Heneghan and Hannah Hiemstra this sisterhood’s energy is unmatched. After appearing on the Late Late show in February 2025 the group went on to sell out every show on their debut Historical Tour, including Vicar Street in Dublin. They then went on to play the MainStage at Altogether Now to 15000 fans. 2025 also saw them become Ambassadors of the Twentieth edition of Culture Night, an evening organised by the Irish Arts Council celebrating culture, music and the Arts. Furthermore, they won Goss.ie’s “Artists of the Year”, featured in Vogue Magazine and released 2 music videos on YouTube “ The Rollover Set” and “The Love Buzz Set”. They have amassed nearly 150k followers and 25million views online in less than 2 years together. Image.ie describes their performances as “Magic”, renowned DJ Annie Mac says they are “destined for success” and The Irish Times states they are “breaking the mould”. 2026 will see them record their debut album at Decoy Studios, hit the mainstages of many festivals including Beyond the Pale, Altogether Now and Latitude. Their debut album is set for release at the end of 2026. JUST ANNOUNCED Felukah — HibisKiss Tour October 28, 2026 Thoughts on Bowling November 27, 2026 BIIRD (Night 2) September 20, 2026 MoneyHillCasino October 11, 2026 Hayden Everett October 29, 2026 Follow us on Instagram Join the Brick & Mortar Newsletter",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.brickandmortarmusic.com/tm-event/biird/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-09-03T11:13:51.689688Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a385634c02fa",
              "venue_id": "venue_stookeys_blue_room",
              "title": "Rumi Abe Trio",
              "event_time": "Fri, Sep 18 at 8-10:30pm",
              "venue_name": "Stookey's Blue Room",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "1523 Sutter St, San Francisco, CA 94109",
              "description": "Jazz and Originals: Piano Trio\n\n8-10:30pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.stookeysblueroom.com/event-details/rumi-abe-trio-4",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stookeys_blue_room",
                  "source_name": "Stookey's Blue Room",
                  "fetched_at": "2026-09-03T12:18:49.462512Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stookeys_blue_room|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ad912112950d",
              "venue_id": "venue_pacific_film_archive",
              "title": "Senegalese Meet Sene-Gallic",
              "event_time": "Sep 18, 2026 7 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-18T19:00:00",
              "event_date": "2026-09-18",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Two shorts that mark the beginning and the current state of Alice Diop’s visionary filmmaking: Les Sénégalaises et la Sénégauloise finds her musing on migration, exile, and fate in her mother’s former home in Senegal, while Fragments for Venus (2025) follows one woman’s visit to the Louvre to see Black lives in art, and another’s visit to Bed-Stuy to witness the art of Black life.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://bampfa.org/event/senegalese-meet-sene-gallic",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5dca69fabdea",
              "venue_id": "venue_4_star_theater",
              "title": "Spencer Noble Record Release",
              "event_time": "18 September 2026 8:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Spencer Noble is a local musician who has been seen on stage supporting Mayya, Juicebumps, Mae Powell and many others. Now he brings his own songs to the scene, channeling his love for songwriters like Paul McCartney, Harry Nilsson, Todd Rungren and Brian May. He is joined by his band of Super Stars who all have their own bands and are pillars in the scene.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/live-music-spencer-noble",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c830f01070bd",
              "venue_id": "venue_local_edition",
              "title": "Kamrin Ortiz & His Knock Outs",
              "event_time": "September 18, 2026 8:30 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-09-18T20:30:00",
              "event_date": "2026-09-18",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Kamrin Ortiz brings his six piece band to Local Edition with his 1940’s and 50’s style Rhythm & Blues and Jazz originals.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/nh8xw54d648wmbj-zaw38-23ttn",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-09-03T12:59:31.047351Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e53d2b0adf55",
              "venue_id": "venue_cat_club",
              "title": "DANCING GHOSTS",
              "event_time": "September 18, 2026 9:30 PM",
              "venue_name": "Cat Club",
              "event_start": "2026-09-18T21:30:00",
              "event_date": "2026-09-18",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "The Darkwave Dance Party\n—-\n9:30pm-2am | $10 Cover",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10 Cover",
              "url": "https://www.sfcatclub.com/calendar/101824-kmymf-n3ncf-hng6c-8kajz-sdlyw-hyzrf-anel3-rmxjz-gzs8r-42lhh-2rrpa-mnbeh-whrhz-cfcya-cz5kp-dk9y5-rttw6-aem46-5hg3c-zm9dt-t8m9y",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cat_club",
                  "source_name": "Cat Club",
                  "fetched_at": "2026-09-03T13:24:58.141502Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0df5b32946e8",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Hipsteria",
              "event_time": "18 September 2026",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-18",
              "event_date": "2026-09-18",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Hipsteria performs an energetic mix of swing jazz, soul, and party classics live at Etcetera Wine Bar. Guests can enjoy wine and tapas accompanied by lively rhythms and classic jazz grooves.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-09-03T13:50:21.930604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fcd0b53a163c",
              "venue_id": "venue_caravan_lounge",
              "title": "Live Music",
              "event_time": "09/18/2026",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-09-18",
              "event_date": "2026-09-18",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "Welcome to The Caravan Lounge THE CARAVAN LOUNGE is a friendly, owner-operated bar located in the heart of downtown San Jose. As well as being one of San Jose’s oldest live music venues, the Caravan provides other fun activities such as karaoke, comedy, burlesque, pool table, and DJ nights. The Caravan is also extremely affordable for those trying to stretch a budget. And let’s not forget the music! All the shows at the Caravan are FREE! Open 7 days a week 2pm – Close “Aside from the obvious draw of affordable libations poured by heavy-handed barkeeps, The Caravan sets itself apart from other no-frills bars as the place to go to see up-and-coming bands. The bar has hosted plenty of local bands’ first shows, and regularly features smaller touring acts. If you’re a music fan always on the lookout for your new favorite group, make sure to pay attention to who is coming to Caravan.” -Metro FEATURED VIDEOS – Go to our YouTube Channel by clicking here to see more… SEPTEMBER 2026 TUES. SEPT 1st- Karaoke with Ronnie Roach WED. SEPT 2nd – The Caravan Lounge Comedy Show hosted by Chelsea Costanza THURS. SEPT 3rd – SWEAT with DJ SNAQ FRI. SEPT 4th – Rebelskamp, Magick Blues Band, TBA SAT. SEPT 5th – Skool Of Sharks TUES. SEPT 8th- Karaoke with Ronnie Roach WED. SEPT 9th – The Caravan Lounge Comedy Show Hosted by Nyoki THURS. SEPT 10th – Shrine Goth DJ Night with Hex Embrace, C_Death, and Owen FRI. SEPT 11th – Circus Of Sin 10 Year Sinnaversary! Hosted By Some Guy SAT. SEPT. 12th – CaveFest II We Love You Curtis Castro! Abysmal Piss, Ominous Ruin, Lost To The Void TUES. SEPT 15th – Karaoke with Ronnie Roach WED. SEPT 16th -The Caravan Lounge Comedy Show Hosted by Ato Walker THURS. SEPT 17th – TBA FRI. SEPT 18th – TBA SAT. SEPT 19th – Facekicker, American Standard, 12 Steps To Nothing TUES. SEPT 22nd – Karaoke with Ronnie Roach WED. SEPT 23rd- The Caravan Lounge Comedy Show hosted by Matt Kennedy THURS. SEPT 24th – Sweethearts DJ Night FRI. SEPT 25th – Ding Mao, Diamantide, Clou",
              "event_types": [
                "workshop"
              ],
              "price_info": "FREE",
              "url": "http://s172518151.onlinehome.us/caravan/site/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-09-03T14:20:40.572990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8ece7bf7a27f",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Friday Happy Hour | September 18",
              "event_time": "September 18, 2026  4:30 pm – 7:30 pm",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-09-18T16:30:00",
              "event_date": "2026-09-18",
              "venue_address": "San Francisco, CA 94118",
              "description": "Sep 18 Friday Happy Hour | September 18 September 18, 2026 4:30 pm – 7:30 pm Golden Gate Bandshell 75 Hagiwara Tea Garden Dr San Francisco, CA 94118 + open in Google Maps Kick off the weekend with free live music in Golden Gate Park! Bring your favorite drinks, tasty snacks, and enjoy this all-ages show. More details to come soon. Add to calendar Google Calendar iCalendar Export .ics file Click to share on facebook (opens in new window) Click to share on x (opens in new window) Copy this page's address to your clipboard Link copied to clipboard Free Concert GoldenGateBandshell Illuminate Live",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://illuminate.org/event/friday-happy-hour-september-18/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_illuminate",
                  "source_name": "Illuminate",
                  "fetched_at": "2026-09-03T14:32:31.098793Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_225b8371d0f1",
              "venue_id": "venue_amoeba_music_sf",
              "title": "Beck Listening Party",
              "event_time": "Friday September 18th 5pm",
              "venue_name": "Amoeba Music SF",
              "event_start": "2026-09-18T17:00:00",
              "event_date": "2026-09-18",
              "venue_address": "1855 Haight St, San Francisco, CA 94117",
              "description": "Ride Lonesome, but Listen Together!\n\n \n\nAmoeba Hollywood is throwing a release day listening party to celebrate Beck’s new album, Ride Lonesome (Capitol Records), on Friday, September 18th at 5pm! Hear Ride Lonesome with fellow fans, get a free Beck postcard (while supplies last), and enter our raffle to win a canvas Beck print. Plus, starting at 5pm, get a canvas tote bag, while supplies last, with purchase of Ride Lonesome on CD or vinyl at the event.\n\n \n\n5pm - Attendees receive a raffle ticket and postcard (postcards are while supplies last). Album playback starts.\n\n5:30 - We'll pause the album to host the raffle for the Beck canvas print, Amoeba gift certificates and other goodies then hear the rest of the album.\n\n\n** This is a free, all-ages event.\n** No RSVP or purchase necessary to attend.\n** One raffle ticket per person. Must be present to win. Winner will be announced at 5:30pm.\n** Giveaway quantities are limited and available only while supplies last.\n** This is a fan event only. Beck will not be in attendance.",
              "event_types": [
                "film"
              ],
              "price_info": "Free",
              "url": "https://www.amoeba.com/live-shows/upcoming/detail-3162/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_amoeba_music",
                  "source_name": "Amoeba Music",
                  "fetched_at": "2026-09-03T14:33:59.605406Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_amoeba_music_sf",
                  "source_name": "Amoeba Music SF",
                  "fetched_at": "2026-09-04T10:31:55.733267Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_amoeba_music_sf|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_906f41d9054b",
              "venue_id": "venue_poor_house_bistro",
              "title": "Amy Lou & The Hipshakers",
              "event_time": "2026-09-18T18:00:00",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-09-18T18:00:00",
              "event_date": "2026-09-18",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-09-04T10:11:13.938872Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_64af7efc8836",
              "venue_id": "venue_sailing_goat",
              "title": "David Rosewood",
              "event_time": "2026-09-18T17:00:00",
              "venue_name": "Sailing Goat",
              "event_start": "2026-09-18T17:00:00",
              "event_date": "2026-09-18",
              "venue_address": "1900 Stenmark Dr, Richmond, CA 94801",
              "description": "Fingerstyle guitar performance across jazz, Latin, classical, and folk roots by David Rosewood.",
              "event_types": [
                "live_music",
                "jazz",
                "latin_world",
                "classical",
                "folk"
              ],
              "price_info": "Free",
              "url": "https://www.sailinggoatrestaurant.com/event-details/david-rosewood",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sailing_goat",
                  "source_name": "Sailing Goat",
                  "fetched_at": "2026-09-04T10:13:07.105977Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sailing_goat|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_533e82dfefb4",
              "venue_id": "venue_cafe_du_nord",
              "title": "RUSSELL!",
              "event_time": "9/18/2026 8:00 pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Live Nation Presents: RUSSELL! with Nari Fri, Sep 18 Doors: 7:00 pm | Show: 8:00 pm Tickets: $33.45 - $90.10 Buy Tickets All Ages Brampton's own RUSSELL! is a Filipino-Canadian R&B artist blending smooth vocals, warm production, and emotionally honest songwriting. His music explores growth, relationships, and identity through a modern R&B lens. Following Dearly Loved, El Cariño, and the globally inspired Motherland, his latest project Flowers marks his most personal chapter yet—a tribute to his hometown, his mother, and the people who shaped him. KOHAI Insiders Presale: Thursday July 16, 2026 @10AM Public On-Sale: Friday, July 17, 2026 @ 10AM Local VIP Includes Early Entry, Meet & Greet, Autographed Poster, and General Admission ticket For any event that is listed as 18 or 21 and over, ANY ticket holder unable to present valid identification indicating that they are of age will not be admitted to this event, and will not be eligible for a refund. Any event listed as All Ages, means 6 years of age or older. ALL tickets are standing room only unless otherwise specified. If you need special accommodations, contact info@cafedunord.com. Support acts are subject to change without refund. Professional Cameras are not allowed without prior approval. Professional Camera defined as detachable lens or of professional grade as determined by the venue staff. When in doubt, just email us ahead of the show! We might be able to get you a Photo Pass depending on Artist’s approval. Artists RUSSELL! Video Brampton's own RUSSELL! is a Filipino-Canadian R&B artist blending smooth vocals, warm production, and emotionally honest songwriting. His music explores growth, relationships, and identity through a modern R&B lens. Following Dearly Loved, El Cariño, and the globally inspired Motherland, his latest project Flowers marks his most personal chapter yet—a tribute to his hometown, his mother, and the people who shaped him. Nari + Google Calendar Related Events BAILEN - SWIM!!! At Your Ow",
              "event_types": [
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://cafedunord.com/tm-event/russell-with-nari/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cafe_du_nord_and_swedish_american_hall",
                  "source_name": "Cafe Du Nord and Swedish American Hall",
                  "fetched_at": "2026-09-04T10:21:43.132381Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_b59deb30e159",
              "venue_id": "venue_kilowatt",
              "title": "Tasha Malan & T. Page",
              "event_time": "Fri 18 Sep ― 7:00pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-18T19:00:00",
              "event_date": "2026-09-18",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Keep track of what’s coming up by saving events, sharing them with friends, or even listening to new music in the app.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/vd74884b8569?pid=ff10e59d",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-09-04T10:33:38.052132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_85abe844d37c",
              "venue_id": "venue_kilowatt",
              "title": "DJs Earth Angel & Mymy",
              "event_time": "Fri 18 Sep ― 11:00pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-18T23:00:00",
              "event_date": "2026-09-18",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Keep track of what’s coming up by saving events, sharing them with friends, or even listening to new music in the app.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/Qbb1cffcc754?pid=ff10e59d",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-09-04T10:33:38.052132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b4ea0d36b2ca",
              "venue_id": "venue_henflings",
              "title": "Rasquache Liberation Front Rocks Henflings Tavern",
              "event_time": "2026-09-18T20:00:00",
              "venue_name": "Henfling's Tavern",
              "event_start": "2026-09-18T20:00:00",
              "event_date": "2026-09-18",
              "venue_address": "9450 Highway 9, Ben Lomond, CA 95005",
              "description": "Rasquache Liberation Front plays smokin' Tex/Mex rock 'n' roll live at Henflings Tavern.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://www.facebook.com/HenflingsBarNGrill/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_henflings",
                  "source_name": "Henfling's Tavern",
                  "fetched_at": "2026-09-04T10:41:15.215331Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_henflings|2026-09-18",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            }
          ]
        },
        "2026-09-19": {
          "date": "2026-09-19",
          "updated_at": "2026-09-04T10:41:17.640313Z",
          "events": [
            {
              "event_id": "evt_68ab9f6cc9ec",
              "venue_id": "venue_frost_amphitheater",
              "title": "Brandi Carlile, Cmat",
              "event_time": "Saturday, September 19 at 6:00 PM",
              "venue_name": "Frost Amphitheater",
              "event_start": "2026-09-19T18:00:00",
              "event_date": "2026-09-19",
              "venue_address": "351 Lasuen St, Stanford, CA 94305",
              "description": "Stanford Live and Goldenvoice Present - The Human Tour with CMAT - Folk",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://live.stanford.edu/events/26-frost/brandi-carlile/",
              "tags": [],
              "sources": [
                {
                  "source_name": "Frost Amphitheater",
                  "fetched_at": "2026-03-24T06:10:30.038111Z",
                  "strategy_used": "DIRECT",
                  "source_id": "v_frost_amphitheater"
                },
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-12T11:35:36.204574Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_frost_amphitheater|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cda645b904bb",
              "venue_id": "venue_castro_theater",
              "title": "THE GROWLERS",
              "event_time": "September 19, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "The Growlers have carved out their own mythos in modern rock—a sun-drenched fever dream of surf, psych, garage, and California weirdness. At the center is founder and ringleader Brooks Nielsen, whose unmistakable voice and twisted pop sensibility have guided the band from dive bar misfits to cult legends. Now, after six years away from the road, The Growlers return for their first world tour since 2019, with dates spanning Australia, the UK, Europe, and North America. The comeback arrives alongside two brand-new singles, “Crisis” and “Feel My Funk,” signaling a bold new chapter for the band while staying true to their unmistakable sound and unshakable spirit.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/the-growlers-260919",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-04-07T10:00:27.146710Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_765feec8b333",
              "venue_id": "venue_bill_graham_civic",
              "title": "STEVE AOKI",
              "event_time": "September 19, 2026 7:00pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-09-19T19:00:00",
              "event_date": "2026-09-19",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "Show Rescheduled from 2/20/26\nDIM MAK 30 TOUR - TIMMY TRUMPET\nRIOT TEN\nHIGHSOCIETY",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Buy Tickets",
              "url": "https://billgrahamcivic.com/events/steve-aoki-260220",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bill_graham_civic",
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-04-14T08:02:13.710391Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3a6808d9ee0f",
              "venue_id": "venue_the_freight__salvage",
              "title": "T SISTERS",
              "event_time": "2026-09-19T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-19T19:00:00",
              "event_date": "2026-09-19",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Account Login Cart Time remaining: 00:00 Enter Promo Code Promo Code (Optional) Activate Code Promo Code View Cart 0 Your cart has expired Your order contained expired items and your shopping cart has been emptied. Close Enter Promo Code T Sisters, Saturday, September 19, 2026 8:00PM Event Summary Saturday, September 19, 2026 8:00PM T Sisters 2026 T Sisters Additional Details The T Sisters are a genuine sister group based in the creative hub of Oakland, California. The group is made up of Rachel and Chloe Tietjen , twins, and their older sister Erika . Distinguished by close harmonies, catchy melodies and potent lyricism, the T Sisters’ sound represents a continuum of music: from roots to pop influences, moments of stunning a cappella to swells of groovy indie folk. The sisters' contemporary yet classic sound invites a range of likenesses, from the Pointer Sisters and the Everly Brothers to modern family bands like the Avett Brothers and First Aid Kit. With their soaring sibling harmonies, sassy stage presence, and inventive songwriting, these three sisters embody a fresh and soulful take on folk/Americana music. Music and performance have provided a consistent backdrop for the sisters, having grown up with their musician father and dancer mother. The sisters began singing together as early as they could speak, and not long after they began to experiment with harmonies, gradually developing their ability to blend their voices as only sisters can. In 2008, after having been separated for a number of years, the sisters returned to the Bay Area to produce and perform in an original musical. They then co-founded Chthonic Theater, a performing arts collective through which they create and perform in original musical theater productions, lead local parades, and curate and host variety shows featuring local and touring artists. After the initial performance experiment of the musical, the sisters began to write songs together and develop their singing and harmonizing outsid",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$39/$44\n(INCLUDES ALL FEES)",
              "url": "https://secure.thefreight.org/15932/15933",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-05-06T05:55:19.571914Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_19246116fe8e",
              "venue_id": "venue_rickshaw_stop",
              "title": "BE YOUR OWN PET",
              "event_time": "Sat Sep 19 9:00PM",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-09-19T21:00:00",
              "event_date": "2026-09-19",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "The reunited garage rock band brings its high-octane energy and punk-influenced tracks to the San Francisco stage.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$24.50-$30.00",
              "url": "https://wl.seetickets.us/event/be-your-own-pet/690464?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-05-14T10:46:20.204876Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8fd52e29315d",
              "venue_id": "venue_masonic_hall",
              "title": "Jack Harlow: Monica Tour",
              "event_time": "Sep 19 7:30pm",
              "venue_name": "Masonic Hall",
              "event_start": "2026-09-19T19:30:00",
              "event_date": "2026-09-19",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Grammy-nominated rapper Jack Harlow brings his signature charisma and chart-topping hip-hop anthems to the stage on the Monica Tour. The concert delivers an energetic set spanning his biggest hits and latest releases.",
              "event_types": [],
              "price_info": "Varies by seating",
              "url": "https://www.ticketmaster.com/jack-harlow-monica-tour-san-francisco-california-09-19-2026/event/1C0060A9E2A82937",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-05-15T18:46:32.071656Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_masonic_hall|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_88c15eb882e9",
              "venue_id": "venue_the_ritz",
              "title": "Elder & Blackwater Holylight",
              "event_time": "2026-09-19T19:00:50-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-09-19T19:00:50",
              "event_date": "2026-09-19",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "ELDER\nBLACKWATER HOLYLIGHT\n\n \n\nSARTURDAY SEPTEMBER 19, 2026",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$30 Advance – $35 Day-of-Show",
              "url": "https://www.ticketweb.com/event/elder-blackwater-holylight-the-ritz-tickets/14893923",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-05-15T23:30:40.559805Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_ritz|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ab51f0c683a0",
              "venue_id": "venue_first_lutheran_pa",
              "title": "BAROQUE CONCERT",
              "event_time": "SEPTEMBER 19, 2026 7:30pm",
              "venue_name": "First Lutheran PA",
              "event_start": "2026-09-19T19:30:00",
              "event_date": "2026-09-19",
              "venue_address": "600 Homer Ave, Palo Alto, CA 94301",
              "description": "Music with select soloists and small ensembles performing a delightful array of music from the 16th, 17th, and 18th centuries.",
              "event_types": [],
              "price_info": "$25 General/Senior; $10 Youth/Student",
              "url": "https://paphil.org/coming-up",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_palo_alto_philharmonic",
                  "source_name": "Palo Alto Philharmonic",
                  "fetched_at": "2026-05-30T14:03:33.423279Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_first_lutheran_pa",
                  "source_name": "First Lutheran PA",
                  "fetched_at": "2026-05-30T20:43:51.905985Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_first_lutheran_pa|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_065af7a1bcdf",
              "venue_id": "venue_mountain_winery",
              "title": "Jeff Dunham: Artificial Intelligence",
              "event_time": "Sep 19, 2026 8:00 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Jeff Dunham: Artificial Intelligence Saturday, September 19 Doors 6:00PM, Show 8:00PM All Ages to Enter, 21 & Over to Drink The Mountain Winery Buy Tickets Event Info No refunds or exchanges. All shows are rain or shine. Children age 3 and older require a ticket. A child under the age of 3 is considered a lap child and does not require a ticket. For directions, dining, parking, or carpool information, please visit www.mountainwinery.com. For information on how to purchase VIP season tickets including suites and box seats, please visit https://www.mountainwinery.com/vip-seating/ Doors open 2 hours prior to the show time. Seating begins 1 hour prior to the show time. Artist Info Ventriloquist Jeff Dunham is a global comedy superstar and one of the world’s most inventive entertainers. Dunham, a Guinness World Record holder for “Most Tickets Sold for a Stand-up Comedy Tour,” has built an entertainment empire over years of non-stop touring and innovation. With over a million YouTube subscribers amassing over a billion views, he has carved out his own unique space in the comedy world leading to record-breaking viewership with his comedy specials on Comedy Central, NBC and his latest, Jeff Dunham: Relative Disaster, a special he filmed in Dublin, Ireland is currently streaming on Netflix. A Texas native, after graduating from Baylor University, he moved to Los Angeles and soon became a sensation on the national comedy club circuit. He later conquered the comedy world by becoming a multi-platinum selling DVD artist and achieving record-breaking ratings on both cable and network TV. Dunham’s 2015 stand-up special Unhinged in Hollywood debuted on NBC Primetime and ranked as the time period’s top non-sports program on the Big 4 in every key measure. The special was re-broadcast on Comedy Central and was the top rated special of the year for the entire network. Dunham’s previous stand-up specials, Arguing with Myself, Spark of Insanity, A Very Special Christmas, Controlled Chao",
              "event_types": [
                "comedy"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1382158",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-06-02T10:55:16.293558Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_351dfec2b5f6",
              "venue_id": "venue_the_independent",
              "title": "EVAN GIIA",
              "event_time": "9.19 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-19T21:00:00",
              "event_date": "2026-09-19",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List EVAN GIIA Sat, Sep 19 Doors: 8:30 pm | Show: 9:00 pm 18 and up Please note - there is a delivery delay set for 2 weeks prior to show. Buy Tickets Share + Google Calendar Related Events Young Franco Jul 10 Buy Tickets bad tuner x veggi Jul 17 Buy Tickets Artists EVAN GIIA Entering the music scene as a classically trained opera singer EVAN GIIA’S voice adds a distinctive touch to her electronic pop crossover sound. Most known for her breakout single “WESTWORLD”, EVAN GIIA has established herself as one of the ones to watch. Her hit single, “Don’t Let Me Let Go” with Dillon Francis and Illenium, peaked at #1 on dance radio charts. The Berklee College of Music alumna has performed at festivals like Coachella, EDC, Lollapalooza, Bonnaroo, Electric Forest and shared stages with the likes of ODESZA, Illenium, Dillon Francis, Louis The Child, Alison Wonderland, Jai Wolf, Two Friends, and Discolines. She continues to push boundaries and rejuvenate electronic music with her relatable hooks and world class performances. Back to Event List Upcoming Events Out & Loud Thu Jun 25 The Lagoons Fri Jun 26 Bay Pride Amplified! Sat Jun 27 Kelly McFarling Thu Jul 2 Mac Gross Project – SF Rock Project Benefit + Against Medical Advice Album Release Fri Jul 3 High Fade Wed Jul 8 Young Franco Fri Jul 10 The Emo Night Tour Sat Jul 11 bad tuner x veggi Fri Jul 17 Los Tranquilos Sat Jul 18 Chinese American Bear Sun Jul 19 Riff Wood Thu Jul 23",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/evan-giia/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-06-23T10:46:17.531604Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-06-29T13:04:25.374124Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_44725df7acad",
              "venue_id": "venue_the_uc_theatre",
              "title": "Ravi Coltrane: Coltrane Centennial",
              "event_time": "Sep 19 - Show: 8:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "“Style informed by tradition but not encumbered by it” — Philadelphia City Paper “Powerful music. It resisted premade frames and made its own.” — The New York Times “A worthy heir to his father, jazz legend John Coltrane” — The Telegraph “Embracing jazz’s past only as a means to communicate his own modern-day voice.” — Okayplayer Just days before John Coltrane would have turned 100 his oldest surviving son, saxophonist Ravi Coltrane, presents a blazing young band to mark the milestone. While Ravi spent the first quarter century of his career focusing on acquiring a diverse array of experience as a sideman and then honing his own lustrous, harmonically ambiguous compositions, he’s taken up the family mantle in recent years. With a variety of ensembles, projects and initiatives on and off the bandstand, he’s championed the legacy of his parents (including with his 2025 stint as an SFJAZZ Resident Artistic Director). For this celebration he performs with trumpeter Jonathan Finlayson, a longtime collaborator who graduated from Berkeley High and spent years touring and recording with alto sax great and MBASE conceptualist Steve Coleman. A teenage prodigy, Israeli pianist/keyboardist Gadi Lehavi made his Village Vanguard debut with Ravi at 15. Now 30, he’s more than lived up to his enormous potential, playing with consummate technique and capacious imagination. Powering the quartet is Bay Area-reared drum sensation Elé Howell, 28, a supremely musical accompanist who gained national attention when Coltrane started hiring him in 2021 for various projects, including Cosmic Music: Revisiting the Music of John and Alice Coltrane. Though John Coltrane ascended in 1967 at the age of 40, his presence continues to illuminate new directors for exploration.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theuctheatre.org/shows/ravi-coltrane-coltrane-centennial-celebration-19-sep",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-06-23T10:52:26.074457Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-25T10:40:49.247198Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-07-10T02:55:59.353717Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-14T10:07:47.535282Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d3e635790976",
              "venue_id": "venue_siesta_valley_bowl",
              "title": "Jerry's Middle Finger",
              "event_time": "Saturday Sep 19, 2026 8:00 PM",
              "venue_name": "Siesta Valley Bowl",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "100 Gateway Blvd, Orinda, CA 94563",
              "description": "It's no longer a secret that California-based Jerry's Middle Finger (JMF) delivers the best Jerry Garcia Band tribute experience in the world — performing and celebrating the music of JGB with unparalleled sound and energy.Humbly formed in 2015 by a group of professional musicians passionate about Jerry Garcia and the Grateful Dead, JMF started honing its one-of-a-kind sound at LA speakeasies and beachside dive bars. Audiences of all ages instantly fell in love and soon JMF was playing to packed rooms from legendary stages throughout the western United States — dazzling new fans on the scene and pulling even the most discerning Jerry fanatics out of their seats for the first time in decades.The magic all starts with lead vocalist and guitarist Garrett Deloian. As a seasoned veteran of the blues circuit, he channels his lifelong love for the work of Garcia into every lick with his incomparable mastery and tone. Drummer/founder Rodney Newman, a student of The Dead/JGB since his youth, leads the band's reliable and relentless rhythm section. Rodney's kick shares the bottom end with the steady and inspired bass playing of the multi-talented Son Vo. Rounding things out are two powerhouse vocalists, Halina Janusz and Lisa Malsberger, and veteran pianist and organ champion Jon Gold.The future looks bright for JMF as they get ready to take their heartfelt magical dance parties to further points across the country. So whether you saw Jerry 500 times or were born after his time on earth, this much is true: JMF will make you feel like he's still here.Garrett Deloian - lead guitar and vocalsHalina Janusz - vocalsLisa Malsberger - vocalsJon Gold - keys and organSon Vo - bass guitarRodney Newman - drum kit‍",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$52.60 - $79.40 (includes fees)",
              "url": "https://www.ticketmaster.com/event/1C0064B4C28A70AE",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_siesta_valley_bowl",
                  "source_name": "Siesta Valley Bowl",
                  "fetched_at": "2026-06-23T12:35:02.656256Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-30T18:59:56.104919Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_siesta_valley_bowl|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5f63fbf9fe81",
              "venue_id": "venue_california_theatre",
              "title": "Don Giovanni - Opera San José",
              "event_time": "2026-09-19T19:30:00",
              "venue_name": "California Theatre",
              "event_start": "2026-09-19T19:30:00",
              "event_date": "2026-09-19",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "Relive the epic adventure on the big screen as Symphony San Jose performs John Williams's iconic, Oscar-winning score live. This special concert event brings the beloved cinematic masterpiece to life with full orchestral accompaniment.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-06-23T13:09:42.892074Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_symphony_san_jose",
                  "source_name": "Symphony San Jose",
                  "fetched_at": "2026-06-28T03:08:41.619469Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_california_theatre|2026-09-19",
              "run_id": "run_285788e23a8b",
              "run_label": "Don Giovanni - Opera San José, Sep 13 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_759fb6d3d476",
              "venue_id": "venue_thee_stork_club",
              "title": "Redacted Festival",
              "event_time": "sep 19 4pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-09-19T16:00:00",
              "event_date": "2026-09-19",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "This show is 21+ ﻿ [REDACTED] Fest presented by No Time Gigs and Digital Regress. https://redactedfest.com/ instagram.com/digitalregress instagram.com/notimegigs Uranium Club (Minneapolis) https://staticshockrecords.bandcamp.com/album/all-of-them-naturals Good Flying Birds (Indianapolis) https://goodflyingbirds.bandcamp.com/ https://www.instagram.com/goodflyingbirds/ Container (UK) https://gentledefect.bandcamp.com/ https://www.instagram.com/socialcontainer/ Cube (NYC) https://mycube.bandcamp.com/album/lucky-numbers-true-weight https://www.instagram.com/the_male_envelope/ Eraser (Philly) https://siltbreeze.bandcamp.com/album/eraser-hideout-lp https://www.instagram.com/wereeraser/ Mesh (Philly) https://meshphilly.bandcamp.com/album/mesh Marbled Eye (Oakland) https://marbledeye.bandcamp.com/music https://www.instagram.com/marbledeye/ Taste (Oakland) https://taste-usa.bandcamp.com/album/1-2-fantasy https://www.instagram.com/taste__usa/",
              "event_types": [
                "live_music",
                "rock",
                "festival"
              ],
              "price_info": "$30/$40",
              "url": "https://dothebay.com/events/2026/9/19/redacted-fest-presented-by-no-time-gigs-digital-regress-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-30T18:59:56.104919Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-07-03T14:05:47.843455Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7ad7388574f2",
              "venue_id": "venue_the_fillmore",
              "title": "The Matches",
              "event_time": "sep 19 8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "The Oakland-born punk rock band celebrates the 20th anniversary of their beloved sophomore album, Decomposer. Fans can expect a nostalgic, high-energy performance of the album played in its entirety.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$48+",
              "url": "https://www.ticketmaster.com/the-matches-decomposer-20-years-later-san-francisco-california-09-19-2026/event/1C0064CAB7CD7298",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-30T18:59:56.104919Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-07-05T10:25:53.259797Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_25e135e6b930",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Spiritual Cramp, The She's, Judy",
              "event_time": "Saturday September 19\n          2026 7:30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-19T19:30:00",
              "event_date": "2026-09-19",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "post-punk, new wave, dream pop, power pop punk",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25",
              "url": "http://www.bottomofthehill.com/20260919.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-07-20T11:17:58.345550Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2acd7bd4edf9",
              "venue_id": "venue_924_gilman",
              "title": "Sisters Of Perpetual Indulgence",
              "event_time": "sep 19 8pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "Celebrate community and support local grassroots efforts at this special benefit show at 924 Gilman. The event brings together live musical performances to raise funds and awareness for Oakland Pride and the historic venue.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$15",
              "url": "http://maps.google.com/?q=$15",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-24T10:42:11.416886Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-07-25T10:30:36.185969Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_34239b8b258c",
              "venue_id": "venue_924_gilman",
              "title": "Membership Meeting",
              "event_time": "Saturday, September 19, 2026 4:00pm-5:00pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-09-19T16:00:00",
              "event_date": "2026-09-19",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "https://zoom.us/j/99973704675",
              "event_types": [
                "community",
                "livestream"
              ],
              "price_info": "",
              "url": "https://zoom.us/j/99973704675",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-07-25T10:30:36.185969Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_924_gilman|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7008f9289f37",
              "venue_id": "venue_montgomery_theater",
              "title": "Roy Orbison Returns",
              "event_time": "Sep 19, 2026 @ 7:30pm",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-09-19T19:30:00",
              "event_date": "2026-09-19",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "Wiley Ray & The Big O Band bring Roy Orbison’s legacy to life with Roy Orbison Returns, a 90-minute live tribute that celebrates the life, music and legacy of Roy Orbison. Led by Wiley Ray & The B…",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://events.timely.fun/jc0x91t0/78371865",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-07-31T14:33:32.949334Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-08-12T10:48:24.659205Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d702637bcf93",
              "venue_id": "venue_mabuhay_gardens",
              "title": "CARTILAGE · GOETIA · FROLIC",
              "event_time": "2026-09-19 7 PM",
              "venue_name": "The Mab",
              "event_start": "2026-09-19T19:00:00",
              "event_date": "2026-09-19",
              "venue_address": "443 Broadway, San Francisco, CA 94133",
              "description": "Bay Area death metal heavyweights Cartilage headline with Washington, D.C. force Goetia, Bay Area crushers Frolic, and one additional local act to be announced.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.tixr.com/groups/mab/events/mabuhaygardens-cartilage-goetia-frolic-201679",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mabuhay_gardens",
                  "source_name": "The Mab",
                  "fetched_at": "2026-08-08T10:53:47.418428Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_mabuhay_gardens|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8bfd969e29c4",
              "venue_id": "venue_the_chapel",
              "title": "Geneva Jacuzzi",
              "event_time": "sep 19 9pm",
              "venue_name": "The Chapel",
              "event_start": "2026-09-19T21:00:00",
              "event_date": "2026-09-19",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "Synth-pop performance artist Geneva Jacuzzi performs live with Ex-Heir, Diesel Dudes, and a DJ set by Nick Moss.",
              "event_types": [
                "dj_party",
                "live_music",
                "electronic"
              ],
              "price_info": "$25/$30",
              "url": "https://wl.seetickets.us/event/geneva-jacuzzi/701181?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-08-15T10:17:40.416260Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_1f7d775bd282",
              "venue_id": "venue_guild_theatre",
              "title": "Shawn Mullins",
              "event_time": "sep 19 8pm",
              "venue_name": "Guild Theatre",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "Shawn Mullins GENRE: Folk, Rock Spotify | Apple Music | Youtube | Website After a series of indie releases and growing buzz in the Atlanta music scene, Shawn Mullins ’ rocketed to international critical and commercial success with the release of 1998 Soul’s Core featuring his Grammy-nominated No. 1 hit, “Lullaby” followed by AAA/Americana No. 1 hit “Beautiful Wreck” from 2006’s 9th Ward Pickin’ Parlor . His song, “Shimmer” was used in promotion of the 2000 Summer Olympics in Sydney and was included on the Dawson’s Creek soundtrack. His co-write “All in My Head” from 2008’s Honeydew was featured in episode one of the hit TV sitcom “Scrubs.” Mullins also co-wrote the Zac Brown Band’s No. 1 country tune “Toes.” In early 2002, he formed supergroup The Thorns with Matthew Sweet and Pete Droge. “No Blue Sky” from the resulting album, is a modern day classic. For the 20th anniversary of his breakthrough album, Shawn revisited the music of Soul’s Core by recording two new versions of the album. He calls this Soul’s Core Revival . This is not a remix or a remaster of the original, but rather brand new recordings with new arrangements of the songs – one album is stripped down solo performances, some on guitar, some on piano and maybe one a cappella, and the second is a new studio recording with his full band, Soul Carnival.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$46+",
              "url": "https://www.guildtheatre.com/shows/shawn-mullins-19-sep",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-08-11T10:09:00.707025Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_guild_theatre|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_b01134c81d9a",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "HALWA By Amit Tandon Live 2026",
              "event_time": "Sep 19, 2026 @ 7:00pm",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-19T19:00:00",
              "event_date": "2026-09-19",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Amit Tandon is one of India's highest-selling stand-up comedians, with over 200 million views on YouTube alone. His Netflix special, \"Family Tandoncies\" made history as the first Hindi stand-up so…",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "https://events.timely.fun/jc0x91t0/event/78430891",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-08-12T10:48:24.659205Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "San Jose CPA",
                  "fetched_at": "2026-08-13T10:46:49.768745Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_d14ede6933c9",
              "venue_id": "venue_ivy_room",
              "title": "Surplus 1980 (Last Show)",
              "event_time": "Saturday Sep 19 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-19T19:00:00",
              "event_date": "2026-09-19",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "ivy room presents - genre - avant garde, experimental, post punk, art rock",
              "event_types": [
                "live_music",
                "experimental",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/193491",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-08-15T10:22:49.486130Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f9efcdad0849",
              "venue_id": "venue_danny_murrys",
              "title": "Skunk Funk, D Funk All Stars, The Hellas",
              "event_time": "sep 19 9pm",
              "venue_name": "Danny Murry's",
              "event_start": "2026-09-19T21:00:00",
              "event_date": "2026-09-19",
              "venue_address": "1680 Washington Ave, San Leandro, CA 94577",
              "description": "21+",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_danny_murrys|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_4309687a9fba",
              "venue_id": "venue_the_warfield",
              "title": "Arlo Parks",
              "event_time": "sep 19 8pm",
              "venue_name": "The Warfield",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "London-born Arlo Parks won the Mercury Music Prize for her debut 2021 album Collapsed in Sunbeams, won Breakthrough Artist at the 2021 Brit Awards, and received two Grammy and Ivor Novello nominations. She was coined \"the voice of her generation\". Her follow up My Soft Machine featured the likes of Phoebe Bridges and saw her continue to tour globally. 2025 saw her become the youngest ever appointed UNICEF Ambassador as she continues her humanitarian work. 2026 sees the release of her much anticipated third album Ambiguous Desire. Referencing everything from the queer hedonism of NYC’s Paradise Garage to the moody nocturnal British beats of The Streets and Burial,the glittering synth catharsis of LCD Soundsystem, and rooted house grooves of Theo Parrish, Ambiguous Desire is Parks at her most confident and experimental. A soundtrack to unguarded self-expression, it is a life-affirming new piece of work from one of music’s most irrepressible voices.",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.thewarfieldtheatre.com/events/detail/1360442",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-08-15T11:06:05.689286Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_0c7bb1e0ac82",
              "venue_id": "venue_discovery_meadow_sj",
              "title": "Keyshia Cole, Ashanti, Bow Wow, Mario, 112",
              "event_time": "sep 19 1pm",
              "venue_name": "Discovery Meadow",
              "event_start": "2026-09-19T13:00:00",
              "event_date": "2026-09-19",
              "venue_address": "180 Woz Way, San Jose, CA 95110",
              "description": "all ages; $185+ vip",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$91",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_discovery_meadow_sj|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_ee974b9dc74f",
              "venue_id": "venue_public_works",
              "title": "MGMT DJ Set",
              "event_time": "2026-09-19T21:00:00",
              "venue_name": "Public Works",
              "event_start": "2026-09-19T21:00:00",
              "event_date": "2026-09-19",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "MGMT DJ Set with support from Jeremy Castillo and Mishka, presented by Goldenvoice.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Starting at $95",
              "url": "https://dothebay.com/events/2026/9/19/mgmt-dj-set-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-08-17T10:45:28.908286Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_public_works|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9cd0483c12f7",
              "venue_id": "venue_the_mighty",
              "title": "Primal Disco",
              "event_time": "Sat 19th September 8:00 PM",
              "venue_name": "The Great Northern",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "119 Utah St, San Francisco, CA 94103",
              "description": "An antidote to the nightlife status quo for both the early & late crowd. Female-saturated lineup of house, disco, tech & soul.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Buy Ticket",
              "url": "https://www.eventbrite.com/e/primal-disco-a-sweaty-consent-based-let-the-animal-out-dance-party-tickets-1996481901110",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_mighty",
                  "source_name": "The Great Northern",
                  "fetched_at": "2026-08-21T10:48:17.868763Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_eventbrite_sf",
                  "source_name": "Eventbrite SF",
                  "fetched_at": "2026-08-22T16:56:50.453316Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_mighty|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a90047289479",
              "venue_id": "venue_the_riptide",
              "title": "O69 BINGO! By the fireplace",
              "event_time": "Saturday, September 19 6:00 PM - 8:00 PM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-19T18:00:00",
              "event_date": "2026-09-19",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "Every Saturday Jean the Bingo Queen or Dr. Bird make dreams come true with Bingo. It's Free to play, so don't miss the fun! Next level fun with O69 Jell-O shots...",
              "event_types": [
                "sports"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ffd37af58b2d",
              "venue_id": "venue_the_riptide",
              "title": "Fossil Farm (Alt, Classic, Folk Rock)",
              "event_time": "Saturday, September 19 9:30 PM - 11:59 PM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-19T21:30:00",
              "event_date": "2026-09-19",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "Fossil Farm returns (finally) to the Riptide - lets get it",
              "event_types": [
                "live_music",
                "folk",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7743cebeb6ea",
              "venue_id": "venue_rio_theatre_sc",
              "title": "Santa Cruz Guitar Company 50th Anniversary Concert",
              "event_time": "2026-09-19",
              "venue_name": "Rio Theatre",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "1205 Soquel Ave, Santa Cruz, CA 95062",
              "description": "View fullsize\n              \n          \n            \n                \n                \n                \n                \n                \n                \n                \n                \n\n            \n          \n        \n            \n          \n        \n\n        \n      \n        \n      \n\n    \n  \n\n\n  \n\n\n\n  \n\n\n\n  \n  \n    \n  \n\n\n    \n\n\n\n  \n\n\n\n\n  The Brothers Comatose, James Nash, Hustle Souls, Ron Artis II, Catfish Keith, Hosted by Nick ForsterSanta Cruz Guitar Company proudly celebrates 50 years of handcrafted acoustic guitars with a special anniversary concert at the historic Rio Theatre in Santa Cruz.For five decades, SCGC has built instruments for artists, songwriters, collectors, and working musicians around the world, all from its small shop on the Central Coast. This milestone evening brings together a community of players, friends, and supporters to honor the music, craft, and relationships that have shaped the company since 1976.The concert will feature an unforgettable night of live music from artists connected to the spirit of Santa Cruz Guitar Company, celebrating the songs, stories, and instruments that have carried SCGC through its first 50 years.Show time: 5:30 PM, doors 4:30 PMTickets: VIP ($100), Preferred ($75), and General ($50).Advance tickets: www.snazzyproductions.com",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.riotheatre.com/events-2/2026/9/19/scguitarcompany",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rio_theatre_sc",
                  "source_name": "Rio Theatre",
                  "fetched_at": "2026-08-22T11:37:08.858495Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rio_theatre_sc|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_564681327bcf",
              "venue_id": "venue_crepe_place",
              "title": "Rose's Pawn Shop",
              "event_time": "2026-09-19",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "TICKETS",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "https://thecrepeplace.com/shows-list/roses-pawn-shop-saturday-september-19-8pm-15",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e5fe6c669486",
              "venue_id": "venue_abbott_square",
              "title": "ALTERNATIVE ZEN BLUES TRIAL",
              "event_time": "Saturday, September 19, 2026 7:00 PM - 10:00 PM",
              "venue_name": "Abbott Square Market",
              "event_start": "2026-09-19T19:00:00",
              "event_date": "2026-09-19",
              "venue_address": "725 Front St, Santa Cruz, CA 95060",
              "description": "The distinguished purveyors of fine blackstrap funk are bringing the full experience of in-the-moment, rock/blues/funk-based improvisation to Abbott Square in Santa Cruz.The distinguished purveyors of fine blackstrap funk are bringing the full experience of in-the-moment, rock/blues/funk-based improvisation to Abbott Square in Santa Cruz",
              "event_types": [
                "live_music",
                "rock",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.abbottsquaremarket.com/events/alternative-zen-blues-trial-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_abbott_square",
                  "source_name": "Abbott Square Market",
                  "fetched_at": "2026-08-22T12:39:51.694804Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_abbott_square|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1f9adbe19c1e",
              "venue_id": "venue_indexical",
              "title": "Canyon Cinema’s Print Generations",
              "event_time": "2026-09-19",
              "venue_name": "Indexical",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "1050 River St #119, Santa Cruz, CA 95060",
              "description": "Print Generations\nTijana Petrović, Amy Reid, and TT Takemoto in person!\nCo-presented by Canyon Cinema",
              "event_types": [
                "film"
              ],
              "price_info": "$12 General / $14 Door / FREE or discounted for Members",
              "url": "https://www.indexical.org/events/2026-09-19-canyon-cinema-s-print-generations",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_indexical",
                  "source_name": "Indexical",
                  "fetched_at": "2026-08-22T12:50:51.248673Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_indexical|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6e1ed217e36a",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Paella Party with Alex Orfaly",
              "event_time": "SATURDAY SEP 19\n5:00 PM",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-19T17:00:00",
              "event_date": "2026-09-19",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Saturday Sep 19\n    5:00 PM                                            \n\n                                                \n                                                    Paella Party with Alex Orfaly\n                                                   \n                                                                                                     \n                                                Special Event \n                                                Principal Timpanist Alex Orfaly has a secret talent: cooking massive amounts of delicious paella. Like, for up to 50 people!Wine and excellent company included. Tickets for this event were sold at California Symphony’s 40th Anniversary Gala. Please contact the symphony office at (925)280-2490 with any questions.\n                                                Details",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.californiasymphony.org/calendar_events/paella-party-with-alex-orfaly-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_california_symphony",
                  "source_name": "California Symphony",
                  "fetched_at": "2026-08-22T13:32:57.699464Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_8bbbfe484c2e",
              "venue_id": "venue_verdi_club",
              "title": "ANGEL & HIS MAMBOKAT COMBO",
              "event_time": "2026-09-19T20:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "live_music",
                "latin_world",
                "dance"
              ],
              "price_info": "",
              "url": "https://www.verdiclub.net/events-calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-08-22T14:55:24.428239Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_verdi_club|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d2cd0cb75673",
              "venue_id": "venue_dance_mission",
              "title": "Entre Mucho Machismo Hay Pocos Machos",
              "event_time": "2026-09-19 2026-09-19",
              "venue_name": "Dance Mission Theater",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "3316 24th St, San Francisco, CA 94110",
              "description": "Presented by Rogelio López & Dancers, this dance theater production follows a queer Mexican folklórico dancer's journey of romance and self-love.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dance_mission",
                  "source_name": "Dance Mission Theater",
                  "fetched_at": "2026-08-22T15:02:23.569813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dance_mission|2026-09-19",
              "run_id": "run_217875807028",
              "run_label": "Entre Mucho Machismo Hay Pocos Machos, Sep 18 – Sep 20",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b0a86d8fd838",
              "venue_id": "venue_bayfront_theater",
              "title": "La Vida Loca",
              "event_time": "2026-09-19",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "An improvised telenovela packed with over-the-top drama, passionate romance, and hilarious twists generated live from audience suggestions.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Not specified",
              "url": "https://www.improv.org/shows",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-08-22T15:11:24.975133Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-09-19",
              "run_id": "run_1fe8979180b7",
              "run_label": "La Vida Loca, Sep 19 – Sep 26",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4d91a8685967",
              "venue_id": "venue_crows_nest_sc",
              "title": "TSUNAMI",
              "event_time": "Saturday September 19th 08:00 PM",
              "venue_name": "The Crow's Nest",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "2218 East Cliff Dr, Santa Cruz, CA 95062",
              "description": "Saturday September 19th Favorite Rock Songs Starts at 08:00 PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$8 cover",
              "url": "https://tsunami.band/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crows_nest_sc",
                  "source_name": "The Crow's Nest",
                  "fetched_at": "2026-08-22T15:19:13.909618Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crows_nest_sc|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2f001a04b6fa",
              "venue_id": "venue_sc_beach_boardwalk",
              "title": "Boardwalk PRIDE",
              "event_time": "2026-09-19",
              "venue_name": "Santa Cruz Beach Boardwalk",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "400 Beach St, Santa Cruz, CA 95060",
              "description": "Show your PRIDE and celebrate the LGBTQ+ community with free live entertainment, giveaways and info booths. Enjoy rides and games plus fun photo ops and exclusive merchandise available throughout the park.",
              "event_types": [
                "live_music",
                "community",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sc_beach_boardwalk",
                  "source_name": "Santa Cruz Beach Boardwalk",
                  "fetched_at": "2026-08-22T16:30:12.819028Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sc_beach_boardwalk|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9a0b0fa5552a",
              "venue_id": "venue_the_marsh_berk",
              "title": "Alicia Dattner",
              "event_time": "2026-09-19",
              "venue_name": "The Marsh Berk",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "2120 Allston Way, Berkeley, CA 94704",
              "description": "Alicia Dattner’s Small Batch, Artisanal Comedy The Marsh Berkeley Theater Sept 19 – Oct 17, 2026 Saturdays at 8:00 pm Written & Performed by Alicia Dattner Directed by Tom Bentley-Fisher Ticket Information Tickets: $25 – $35 General Seating | $50 & $100 Reserved Seating 85 minutes | No Intermission | Ages 18+ (Please do not bring infants to the show) Online ticket sales close 2 hours before each performance. Additional tickets may be available for purchase at the door. Show Description Balinese scooters. Portuguese military installations. Brazilian waxes. Indian ashrams. Serbian kitesurfers. A secret tantra party. A deadbeat baby daddy. A planetary death doula. A Rube Goldberg joke factory. The last plane to Lisbon before the world shuts down. Safety-ism. Presbyopia. Cyborgs. Incels in service to the Goddess. Shade grown coffee. Ego dissolution Cervical orgasms. And the slow realization that enlightenment doesn’t get you very far. Alicia Dattner’s new show is farm-to-funnybone, post-apocalyptic, biodynamic artisanal comedy — for the spiritually adventurous and existentially exhausted. Artist Biography Raised in an extremely liberal branch of Judaism known as an ashram (that’s a joke), Alicia’s spiritual roots – and propensity for poking fun at them – go deep. Alicia did her first standup set at 18 and graduated from Hampshire College with a degree in standup comedy and filmmaking. Mentored by several talented comedians over the years, including W. Kamau Bell (CNN, FX), Eugene Mirman (Flight of the Conchords), and Bill Santiago (Comedy Central), she’s been rocking clubs like The Improv and Gotham Comedy Club, playing in San Francisco, New York, London, Hollywood, Honolulu, Bali, and Bombay. She’s performed with Ali Wong, Maria Bamford, Moshe Kasher, Arj Barker, Marc Maron, and many more luminaries. Please read our Health, Safety and COVID-19 Information Our commitment to our patrons",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "",
              "url": "https://themarsh.org/shows_and_events/alicia-dattner-small-batch-artisanal-comedy/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-08-22T17:28:42.838285Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_marsh_berk|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_7d7d3a56f342",
              "venue_id": "venue_the_marsh_sf",
              "title": "Soul Story Theater",
              "event_time": "2026-09-19",
              "venue_name": "The Marsh SF",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "Suraya Keating’s Soul Story Theater Solo Performance Program for Women Class Description Facilitated by Suraya Keating, LMFT, Registered Drama Therapist & Soul Story Coach The Soul Story Theater Solo Performance Program is a 13-week creative journey for women who long to transform meaningful life experiences into an original solo performance. Through expressive arts, storytelling, writing, movement, and theater, you’ll discover the deeper meaning within your life’s journey while finding the courage to share your authentic voice. This transformational experience culminates in a live performance where each participant presents her original soul story before a supportive audience. During this immersive journey, you will: Unearth the story your soul has been longing to tell and shape it into a compelling, authentic performance piece. Transform limiting narratives into empowering ones, discovering the resilience, wisdom, and personal mythology woven throughout your life’s journey. Awaken your creative voice through an inspiring blend of writing, storytelling, movement, and theater while deepening your connection to your inner muse. Receive personalized coaching as you write, devise, rehearse, and confidently perform your original solo piece. Experience the power of a courageous circle of women who will witness, encourage, and celebrate your creative unfolding every step of the way. What’s Included 13-week hybrid program combining online coaching with in-person rehearsals 10 live Zoom group sessions (most Thursdays, 7:15–9:15 PM PT) 2 in-person rehearsal intensives (Saturdays, 10am-3pm) Two 55-minute individual coaching sessions via Zoom Public culminating performance with a live audience Fall 2026 Schedule Program Dates: September 10 – December 12, 2026 Zoom Sessions Thursdays | 7:15–9:15 PM (PT) September 10 & 24 October 1, 8 & 22 November 5, 12 & 19 December 3 plus Zoom Dress Rehearsal on Dec 10 In-Person Rehearsals at The Marsh SF Studio Saturdays | 10am-3pm October 3",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://themarsh.org/suraya-keating-soul-story-theater-solo-performance-program-for-women/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-08-22T17:28:42.838285Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-09-19",
              "run_id": "run_f0998957edb6",
              "run_label": "Soul Story Theater, Sep 10 – Dec 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_a0bbbb286387",
              "venue_id": "venue_woodhouse_brewing",
              "title": "Woodhouse Brews: Hispanic/Latine Festival",
              "event_time": "2026-09-19 September 19 @ 12:00 pm - 6:00 pm",
              "venue_name": "Woodhouse Blending & Brewing",
              "event_start": "2026-09-19T12:00:00",
              "event_date": "2026-09-19",
              "venue_address": "119 Madrone St, Santa Cruz, CA 95060",
              "description": "Head to Woodhouse Brews for a day full of cultura, sabor, and joy! There will be local arts vendors, live music and dance, and flavors from across Latin America for […]",
              "event_types": [
                "latin_world",
                "live_music",
                "festival",
                "dance",
                "art"
              ],
              "price_info": "$5 – $10",
              "url": "https://www.santacruz.org/upcoming-event/woodhouse-brews-hispanic-latine-festival/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_visit_santa_cruz_county",
                  "source_name": "Visit Santa Cruz County",
                  "fetched_at": "2026-08-22T18:34:05.859446Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_woodhouse_brewing|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_71386c2a45ba",
              "venue_id": "venue_sc_museum_nat_history",
              "title": "Rockin’ Pop Up!",
              "event_time": "September 19 @ 12:00 pm",
              "venue_name": "Santa Cruz Museum of Natural History",
              "event_start": "2026-09-19T12:00:00",
              "event_date": "2026-09-19",
              "venue_address": "1305 E Cliff Dr, Santa Cruz, CA 95062",
              "description": "Join geologists from University of California, Santa Cruz to share your mineralogical marvels and get them identified inside the Museum’s galleries! Price: This special event is Free with Admission. $5 Adults | $3 Students and Seniors | Free for Youth Under 18 | Free for Museum Members. What can you bring: Rocks, fossils, gems, and...",
              "event_types": [
                "workshop",
                "community",
                "art"
              ],
              "price_info": "Free",
              "url": "https://santacruzmuseum.org/event/rockin-pop-up-2-copy/2026-09-19/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sc_museum_nat_history",
                  "source_name": "Santa Cruz Museum of Natural History",
                  "fetched_at": "2026-08-22T19:25:35.374632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sc_museum_nat_history|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0521925b44fe",
              "venue_id": "venue_seymour_center",
              "title": "Art in the Aquarium",
              "event_time": "September 19 @ 10:30 am – 11:30 am",
              "venue_name": "Seymour Marine Discovery Center",
              "event_start": "2026-09-19T10:30:00",
              "event_date": "2026-09-19",
              "venue_address": "100 McAllister Way, Santa Cruz, CA 95060",
              "description": "",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://events.ucsc.edu/event/seymour-centers-art-in-the-aquarium/2026-09-19/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_seymour_center",
                  "source_name": "Seymour Marine Discovery Center",
                  "fetched_at": "2026-08-22T19:35:23.609406Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_seymour_center|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3b6ebb24e949",
              "venue_id": "venue_park_hall_ben_lomond",
              "title": "The Addams Family",
              "event_time": "2026-09-19",
              "venue_name": "Park Hall",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "9400 Mill St, Ben Lomond, CA 95005",
              "description": "The Addams Family theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://mctshows.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_park_hall_ben_lomond",
                  "source_name": "Park Hall",
                  "fetched_at": "2026-08-22T19:38:45.882590Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_park_hall_ben_lomond|2026-09-19",
              "run_id": "run_8d42d89c5c45",
              "run_label": "The Addams Family, Sep 18 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c32855f7e84c",
              "venue_id": "venue_park_hall_ben_lomond",
              "title": "Rumors",
              "event_time": "2026-09-19T14:00:00",
              "venue_name": "Park Hall",
              "event_start": "2026-09-19T14:00:00",
              "event_date": "2026-09-19",
              "venue_address": "9400 Mill St, Ben Lomond, CA 95005",
              "description": "A comedy by Neil Simon, directed by Marnae Taylor. Charley, the deputy mayor of New York, and his wife Myra Brock, on the evening of their tenth wedding anniversary, had an elegant dinner party which goes histrically wrong. Four couples arrive expecting a night of sophistication—only to discover the host has had a terrible mishap and his wife is missing. Desperate to cover up the scandal, they spin wilder and wilder stories, turning confusion into chaos as rumors fly faster than champagne corks. With a niche fit, a whiplash, mitigated jealousy, a recurring back spasm, comedy ensues. Brimming with razor-sharp wit, slapstick mishaps, and Simon's trademark charm, Rumors is a laugh-out-loud comedy that proves the truth may be the funniest thing of all.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "",
              "url": "https://mctshows.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_park_hall_ben_lomond",
                  "source_name": "Park Hall",
                  "fetched_at": "2026-08-22T19:38:45.882590Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_park_hall_ben_lomond|2026-09-19",
              "run_id": "run_b17f8875ebd5",
              "run_label": "Rumors, Sep 18 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8a36d96df1f6",
              "venue_id": "venue_scpl_downtown",
              "title": "Community Crafters @ Boulder Creek",
              "event_time": "September 19 2026 10:00am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-19T10:00:00",
              "event_date": "2026-09-19",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Join the circle and write a poem in a creative, supportive environment. No experience necessary.",
              "event_types": [
                "community",
                "literary"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15202671",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3b04f94375d7",
              "venue_id": "venue_scpl_downtown",
              "title": "English Language Conversation Group",
              "event_time": "September 19 2026 10:00am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-19T10:00:00",
              "event_date": "2026-09-19",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "In partnership with the Volunteer Center Literacy Program",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15223965",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2ab1d4e3e766",
              "venue_id": "venue_scpl_downtown",
              "title": "AAUW Focus on Women?s Health in Santa Cruz County",
              "event_time": "September 19 2026 10:15am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-19T10:15:00",
              "event_date": "2026-09-19",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Join AAUW for a discussion with Supervisor Kim De Serpa and Health Services Director Connie Moreno-Peraza on women's health, local services, and improving care in Santa Cruz County.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17044688",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fecbd9922e82",
              "venue_id": "venue_scpl_downtown",
              "title": "Family Storytime",
              "event_time": "September 19 2026 10:30am - 11:30am",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-19T10:30:00",
              "event_date": "2026-09-19",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Step into a world of imagination with stories, rhymes, and songs for children ages 0?8, shared with families and caregivers in a warm, welcoming space.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15727865",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_65ae3c0293c9",
              "venue_id": "venue_scpl_downtown",
              "title": "Garfield Park Library Book Sale and Open Mic",
              "event_time": "September 19 2026 11:00am - 3:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-19T11:00:00",
              "event_date": "2026-09-19",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Come join in the fun!",
              "event_types": [
                "literary"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17126520",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4dce52de22f7",
              "venue_id": "venue_scpl_downtown",
              "title": "Medicare & Long Term Care Planning",
              "event_time": "September 19 2026 11:00am - 12:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-19T11:00:00",
              "event_date": "2026-09-19",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Learn the essentials of Medicare and Long-Term Care in this free talk. Get clear guidance on coverage, costs, options, and planning from local specialists.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17253738",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_49ddb93cb493",
              "venue_id": "venue_scpl_downtown",
              "title": "Friends who Scrap",
              "event_time": "September 19 2026 12:00pm - 4:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-19T12:00:00",
              "event_date": "2026-09-19",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Scrapbooking group meets every third Saturday of the month.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15367587",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_daf850cae7f0",
              "venue_id": "venue_scpl_downtown",
              "title": "Dungeons and Dragons for Adults @ Capitola",
              "event_time": "September 19 2026 12:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-19T12:00:00",
              "event_date": "2026-09-19",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Come join the magical world of D&D storytelling, where you can be a bard, a wizard, or a barbarian for a few hours and let your creativity run free.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16205519",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a5da94f231b1",
              "venue_id": "venue_scpl_downtown",
              "title": "Are You Game?",
              "event_time": "September 19 2026 12:00pm - 5:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-19T12:00:00",
              "event_date": "2026-09-19",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Play tabletop board games and have some fun!",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16478697",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0a4ebb75460b",
              "venue_id": "venue_scpl_downtown",
              "title": "Let's Go Firewise, Let's Get Wildfire-Ready",
              "event_time": "September 19 2026 1:00pm - 2:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-19T13:00:00",
              "event_date": "2026-09-19",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "The Firewise program brings neighbors together to reduce wildfire risks through community organizing, outreach, and shared preparedness projects.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16394292",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fc7bfcf5fdbe",
              "venue_id": "venue_scpl_downtown",
              "title": "CERT Introduction",
              "event_time": "September 19 2026 1:00pm - 2:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-19T13:00:00",
              "event_date": "2026-09-19",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Join us for an introduction to the Community Emergency Response Team (CERT) program and learn how you can build essential preparedness skills for yourself, your family, and your community.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17140400",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a8485bcbf8ab",
              "venue_id": "venue_scpl_downtown",
              "title": "Chess Club with Gjon",
              "event_time": "September 19 2026 2:00pm - 3:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-19T14:00:00",
              "event_date": "2026-09-19",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Downtown Library Youth Chess Club. Open to players ages 6 to 18. Instructor is Chess Master Gjon Feinstein.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16372944",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b4c20e667128",
              "venue_id": "venue_scpl_downtown",
              "title": "Romancero! Concert of Ladino Songs",
              "event_time": "September 19 2026 3:00pm - 4:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-19T15:00:00",
              "event_date": "2026-09-19",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Cantor Mark Levy performs traditional Jewish music at the Scotts Valley Library. Enjoy refreshments during this unique performance.",
              "event_types": [
                "folk",
                "live_music"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/17130718",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9c8698577a4d",
              "venue_id": "venue_the_418_project",
              "title": "Voting Rights In America",
              "event_time": "Saturday, September 19, 2026\n7:00 PM - 12:00 AM",
              "venue_name": "The 418 Project",
              "event_start": "2026-09-19T19:00:00",
              "event_date": "2026-09-19",
              "venue_address": "155 S River St, Santa Cruz, CA 95060",
              "description": "Voting Rights, Gerrymandering & the Fight for Fair Representation",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://the418project.org/events/the-romero-institute-and-heart-tribe-present-voting-rights-in-america",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_418_project",
                  "source_name": "The 418 Project",
                  "fetched_at": "2026-08-22T20:30:04.363966Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_418_project|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d7656d1b67f4",
              "venue_id": "venue_620_jones",
              "title": "Nitefreak",
              "event_time": "2026/09/19 Sat: Sep 19 (2pm-8pm)",
              "venue_name": "620 Jones",
              "event_start": "2026-09-19T14:00:00",
              "event_date": "2026-09-19",
              "venue_address": "620 Jones St, San Francisco, CA 94102",
              "description": "afro house",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$21 b4 330 / $28+ | 21+",
              "url": "https://ra.co/events/2488964",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_620_jones|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_08cd91585adb",
              "venue_id": "venue_the_midway",
              "title": "Satin Jackets",
              "event_time": "2026/09/19 Sat: Sep 19 (2pm-8pm)",
              "venue_name": "The Midway",
              "event_start": "2026-09-19T14:00:00",
              "event_date": "2026-09-19",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "TERRACE ∙ OUTDOORS",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$31+ | 21+",
              "url": "https://www.tixr.com/groups/midwaysf/events/satin-jackets-194168",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-08-30T10:57:54.572474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_cec3cc19def0",
              "venue_id": "venue_the_midway",
              "title": "Estiva Solyra EP Tour",
              "event_time": "2026/09/19 Sat: Sep 19 (9pm-2am)",
              "venue_name": "The Midway",
              "event_start": "2026-09-19T21:00:00",
              "event_date": "2026-09-19",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "Polaris and The Midway host Estiva on tour supporting the 'Solyra' EP.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$20-37 | 21+",
              "url": "https://www.tixr.com/groups/midwaysf/events/polaris-presents-estiva-solyra-ep-tour-200647",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_resident_advisor_sf_ra",
                  "source_name": "Resident Advisor SF (RA)",
                  "fetched_at": "2026-08-28T22:15:14.237667Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-08-30T10:57:54.572474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_910569ff1a3a",
              "venue_id": "venue_the_midway",
              "title": "Juelz",
              "event_time": "2026/09/19 Sat: Sep 19 (9pm-2am)",
              "venue_name": "The Midway",
              "event_start": "2026-09-19T21:00:00",
              "event_date": "2026-09-19",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "trap, melodic dubstep, future bass",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$45-60 | 21+",
              "url": "https://www.tixr.com/groups/midwaysf/events/juelz-199287",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-08-30T10:57:54.572474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_c3a9d0e328ed",
              "venue_id": "venue_halcyon",
              "title": "James Poole",
              "event_time": "2026/09/19 Sat: Sep 19 (10pm-4am)",
              "venue_name": "Halcyon",
              "event_start": "2026-09-19T22:00:00",
              "event_date": "2026-09-19",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "TIFFY VERA one of the most exciting emerging names in the global house music scene makes her SF debut! Her Paraguay upbringing has influenced her infectious blend of house, disco, and groove-driven sounds, earning her support from heavy hitters filling dan...",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$23 | 21+",
              "url": "https://ra.co/events/2492943",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-08-30T10:29:40.318555Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_4f219d06aea2",
              "venue_id": "venue_the_sound_room",
              "title": "John Coltrane Centennial Celebration",
              "event_time": "Saturday, September 19, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-09-19T19:30:00",
              "event_date": "2026-09-19",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Marcus Shelby, Howard Wiley, and their amazing band return to the Sound Room to present a Centennial Celebration honoring John Coltrane.\n\nJohn Coltrane departed this mortal plane more than fifty years ago; today he remains among us, more alive than ever. His sound continues to grab the ears of an ever-widening circle of fans. His legend is stone solid: planted firmly in our culture as that of any 20th century musical giant. His saxophone sound—brooding, searching, dark—is still one of the most recognizable in modern jazz. His influence stretches over styles and genres, and transcends cultural boundaries. The modern ideal of music serving a deeply spiritual, connective purpose? A defining facet of John Coltrane.\n\nTo Coltrane, a musician was a message-giver; making music was an endeavor tied to a larger, greater good. “I humbly asked to be given the means and privilege to make others happy through music,” Coltrane wrote in 1964 in a letter to his listeners, telling of a prayer to God. In 1966, less than a year before his death, he stated:\n\n“I know that there are bad forces, forces that bring suffering to others and misery to the world. I want to be the opposite force. I want to be the force which is truly for good.”\n\nColtrane achieved his goal as a hard-working jazz player coming out of a proud, rooted musical tradition, paying his dues as a sideman, learning the ropes as a leader, working with primarily wordless music to convey his message. He released twenty-five albums as a leader during his lifetime, some attaining five-star, classic status: Blue Train, Giant Steps, My Favorite Things, his Grammy-nominated, “humble offering” to God, A Love Supreme. One after another, from 1957 to ’67, his music defined a comet-like path of rapid growth and dizzying rate of change. That Coltrane accomplished all he did in a mere ten years accounts at least partly for the saint-like devotion he often receives.\n\nTickets at Marcus Shelby Quartet ft Howard Wiley: John Coltrane Centennial Celebration",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/marcus-shelby-quartet-ft-howard-wiley-john-coltrane-centennial-celebration",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-08-26T10:25:42.190144Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1eecd8f7c79d",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Little Shop of Horrors",
              "event_time": "2026-09-19",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Book & Lyrics by Howard Ashman, Music by Alan Menken. Based on the film by Roger Corman, Screenplay by Charles Griffith. Directed by Ben Villegas Randle, Musical Direction by Jad Bernardo, Choreography by Leslie Waggoner",
              "event_types": [
                "theater",
                "live_music"
              ],
              "price_info": "",
              "url": "https://nctcsf.org/event/little-shop/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-08-26T11:06:39.262369Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-09-19",
              "run_id": "run_5315ef200ae4",
              "run_label": "Little Shop of Horrors, Sep 12 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_af31e38abd9b",
              "venue_id": "venue_la_pena",
              "title": "Georges Lammam Ensemble",
              "event_time": "September 19 @ 7:00 pm",
              "venue_name": "La Pena",
              "event_start": "2026-09-19T19:00:00",
              "event_date": "2026-09-19",
              "venue_address": "3105 Shattuck Ave, Berkeley, CA 94705",
              "description": "Georges Lammam Ensemble - Benefit for Palestinian Youth Movement Bay Area and Taxpayers Against Genocide Join the Palestinian Youth Movement Bay Area (PYM) and Taxpayers Against Genocide (TAG) for a […]",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Free",
              "url": "https://lapena.org/event/a-night-of-music-with-the-georges-lammam-ensemble/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_la_pena",
                  "source_name": "La Pena",
                  "fetched_at": "2026-08-26T11:21:25.407030Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_la_pena|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ecd73f197fce",
              "venue_id": "venue_rock_the_dock",
              "title": "The Cheeseballs",
              "event_time": "2026-09-19T15:30:00",
              "venue_name": "Rock the Dock",
              "event_start": "2026-09-19T15:30:00",
              "event_date": "2026-09-19",
              "venue_address": "459 Seaport Court, Redwood City, CA 94063",
              "description": "Funk, Soul, R&B, Pop, and Rock dance band performance.",
              "event_types": [
                "live_music",
                "rock",
                "rnb_soul_funk"
              ],
              "price_info": "Free admission ($5-$20 suggested donation)",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rock_the_dock",
                  "source_name": "Rock the Dock",
                  "fetched_at": "2026-08-26T11:47:48.099004Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rock_the_dock|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_e4545e88c945",
              "venue_id": "venue_center_for_new_music",
              "title": "Godwaffle Noise Pancakes",
              "event_time": "SATURDAY, SEPTEMBER 19, 2026 — 12:00 PM",
              "venue_name": "Center for New Music",
              "event_start": "2026-09-19T12:00:00",
              "event_date": "2026-09-19",
              "venue_address": "55 Taylor St, San Francisco, CA 94102",
              "description": "Dimmer (Hammer/Dimuzio) Medicine Cabinet (Tracy) Connor Tomaka Impact Design Mabbie Bug & Company (Luca) 26 yrs of no fuss 2 hr shows, gourmet pancakes free with entrance fee. [More]",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "free with entrance fee",
              "url": "https://centerfornewmusic.com/event/godwafflenoisepancakes-37/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_new_music",
                  "source_name": "Center for New Music",
                  "fetched_at": "2026-08-27T10:18:52.916672Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-31T10:04:42.136151Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_center_for_new_music|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_963d94f5dd22",
              "venue_id": "venue_the_freight__salvage",
              "title": "Beginning Harmonica with Aki Kumar",
              "event_time": "2026-09-19T12:30:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-19T12:30:00",
              "event_date": "2026-09-19",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Login View Cart Time remaining: 00:00 Activate Code Your cart has expired Your order contained expired items and your shopping cart has been emptied. Close Details September 19, 2026 11:00AM September 19, 2026 11:00AM We Belong Singalong with Tamsen Fynn Tamsen Fynn http://www.tamsenfynn.com Join Tamsen Fynn for the return of our singalongs! With, of course, the classic Pat Benatar song, but also, a song from #resistancerising out of Minneapolis titled They Belong To Us, as well as Plowshare Prayer by Spencer LaJoye, Crowded Table by The Highwomen, There’s A Place In The Sun by Jake Shimabukuro, Lean On Me by Bill Withers, Imagine by John Lennon, and California Stars by Woody Guthrie, Wilco, and Billy Bragg. Read More Hide View Full Calendar , for Purchase items Available Groups Select Other Available Sections General Admission: $13.00 Please select a group to display sections. Choose an available section to see ticket options Quantity for General Admission Regular Registration $13.00 0 1 2 3 4 5 6 7 8 9 10 Quantity Regular Registration $13.00 0 1 2 3 4 5 6 7 8 9 10 Additional items Americans with Disabilities Act Accessible Seating Please note that Americans with Disabilities Act accessible seating is only to be reserved for guests with disabilities and their companions. By purchasing these tickets, you represent that you or a member of your party has a disability that requires accessible features provided by the seating locations being purchased. You MUST provide both the number of attendees in your party AND detailed information about your request below. Requests are reviewed on a first come, first served basis and are not guaranteed. If you do not need accessible seating for your party, please leave these fields blank. Please select the number of attendees in your party. Please Select 1 2 3 4 Please provide your name, phone & seating needs. Add to Cart There was an unknown error while attempting to reserve your seats. If you find this message in error, please ch",
              "event_types": [
                "workshop"
              ],
              "price_info": "REGULAR REGISTRATION: $27.00",
              "url": "https://secure.thefreight.org/16009/16010",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_dc3446c9f9de",
              "venue_id": "venue_meyhouse",
              "title": "Bill Cunliffe: Nat King Cole Reimagined",
              "event_time": "Sep 19, 2026, 5:00 PM – 8:00 PM",
              "venue_name": "Meyhouse Palo Alto",
              "event_start": "2026-09-19T17:00:00",
              "event_date": "2026-09-19",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.meyhousejazz.com/event-details/grammy-winner-bill-cunliffe-nat-king-cole-reimagined-sat-9-19-5pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Palo Alto",
                  "fetched_at": "2026-08-28T12:28:47.745590Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_meyhouse|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f8160cfe29a8",
              "venue_id": "venue_meyhouse",
              "title": "Bill Cunliffe: Nat King Cole Reimagined",
              "event_time": "Sep 19, 2026, 8:00 PM – 10:00 PM",
              "venue_name": "Meyhouse Palo Alto",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "640 Emerson St, Palo Alto, CA 94301",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.meyhousejazz.com/event-details/grammy-winner-bill-cunliffe-nat-king-cole-reimagined-sat-9-19-8pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse",
                  "source_name": "Meyhouse Palo Alto",
                  "fetched_at": "2026-08-28T12:28:47.745590Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_meyhouse|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4e2b218ca8e8",
              "venue_id": "venue_sfjazz_lab",
              "title": "WEBOP AT SFJAZZ: STOMPERS",
              "event_time": "2026-09-19 10:00 AM",
              "venue_name": "SFJAZZ Lab",
              "event_start": "2026-09-19T10:00:00",
              "event_date": "2026-09-19",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "ABOUT WEBOP AT SFJAZZ We are thrilled to partner with our sister organization—Jazz at Lincoln Center—in launching the West Coast version of the acclaimed early childhood music education program, WeBop! The perfect preamble to our Family Matinee program and designed for youngsters between the ages 2-5 and their caregivers, WeBop at SFJAZZ is designed to introduce young children to jazz music and performance in a safe, welcoming and interactive setting. Classes are 45 minutes long and provide plenty of opportunities to learn, explore, and play.",
              "event_types": [
                "workshop",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/education/webop-at-sfjazz/stompers/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_lab|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_27c7aca6f565",
              "venue_id": "venue_sfjazz_miner",
              "title": "FAMILY MATINEE W/ DESTINY MUHAMMAD",
              "event_time": "2026-09-19 11:00 AM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-09-19T11:00:00",
              "event_date": "2026-09-19",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Members Only\n\nLivestream Only",
              "event_types": [
                "live_music",
                "jazz",
                "livestream"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/education/family-matinees/destiny-muhammad-james-mahone-in-the-spirit-of-coltrane/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_787a872b56a2",
              "venue_id": "venue_sfjazz_lab",
              "title": "MYRA MELFORD SPLASH TRIO",
              "event_time": "2026-09-19 7:00 PM",
              "venue_name": "SFJAZZ Lab",
              "event_start": "2026-09-19T19:00:00",
              "event_date": "2026-09-19",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Myra Melford Splash Trio w/ Ches Smith & Michael FormanekTwo shows: 7:00 and 8:30.Tickets: https://www.sfjazz.org/tickets/productions/26-27/myra-melford-splash-trio/",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: https://www",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/myra-melford-splash-trio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-31T10:04:42.136151Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_lab|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_54e8c35a2ec7",
              "venue_id": "venue_sfjazz_miner",
              "title": "Branford Marsalis & Dianne Reeves",
              "event_time": "2026-09-19 7:30 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-09-19T19:30:00",
              "event_date": "2026-09-19",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Saxophone great and NEA Jazz Master Branford Marsalis and his superlative quartet are joined by fellow NEA Jazz Master and jazz’s greatest vocalist, Dianne Reeves , for a week devoted to the immortal music of John Coltrane, in honor of the centennial of his birth. Saxophonist Branford Marsalis is one of the most inﬂuential and revered ﬁgures in contemporary music. The NEA Jazz master, three-time Grammy Award winner, and Tony and EMMY Award nominee is equally at home performing concertos with symphony orchestras and sitting in with members of the Grateful Dead, but the core of his musical universe remains the Branford Marsalis Quartet. After more than three decades of existence with minimal personnel changes, this celebrated ensemble is revered for its uncompromising interpretation of a kaleidoscopic range of both original compositions and jazz and popular classics. The Branford Marsalis Quartet and Dianne Reeves will release a tribute album which revisits Coltrane’s seminal 1963 collaboration with Johnny Hartman. Originally recorded at Rudy Van Gelder’s studio in March of 1963, John Coltrane and Johnny Hartman was a sublime showcase for Coltrane, McCoy Tyner, Jimmy Garrison, and Elvin Jones, who gave remarkable depth and sensitivity to a selection of standards including Irving Berlin’s “They Say It’s Wonderful,” Guy Wood’s “My One and Only Love,” and the definitive version of Billy Strayhorn’s “Lush Life.” Bringing the songs to life was the distinctive, evocative baritone of crooner Johnny Hartman, who was the only vocalist Coltrane ever collaborated with. Interpreting the songs with her own singular gifts, Reeves is a five-time GRAMMY winner who is accurately called “The most admired jazz diva since the heyday of Sarah Vaughan, Ella Fitzgerald and Billie Holiday” ( NY Times ). She is an artist who embodies the music’s enduring values of elegance, class, and improvisational poise, with an innate feel for swing.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/branford-marsalis-and-dianne-reeves-celebrate-john-coltrane/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_20aae3f0a62c",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "SF Bay Area Tatreez Circle",
              "event_time": "2026-09-19 1:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-09-19T13:00:00",
              "event_date": "2026-09-19",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "Join us for an afternoon of tatreez, Palestinian embroidery, as we come together in community to stitch. A tatreez circle is a gathering of tatreez artists who stitch together while sharing stories and learning from each other. All levels of experience are welcome but this is not meant to be a workshop. We will not be teaching tatreez but are happy to help guide you on what you need to get started before the event. **Bring your own projects and your own supplies.** \n\nWhat is Tatreez? Tatreez is the art of Palestinian embroidery that has been practiced in Palestine for centuries. A practice passed down generationally from mother to daughter. Taking inspiration from the land and everyday life, Palestinian women hand stitched motifs and patterns directly onto their thobe that represented their social status, the villages/regions from which they hailed and their individuality.\n\nCan I join if I'm not Palestinian? YES! This is a space for Palestinians and non-Palestinians who share a love of tatreez. Regardless of who practices tatreez, it is important to always remember the history of this beautiful art and the role it plays today in the Palestinian resistance movement, both in Palestine and within the diaspora. These circles are a safe space for Palestinians and our allies.\n\nIf you’re new to tatreez and have questions please reach out to sfbaytatreez@gmail.com.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/sf-bay-area-tatreez-circle-5",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-08-28T14:05:33.197491Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2899ec3563ad",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Spanish Punk",
              "event_time": "2026-09-19 7:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-09-19T19:00:00",
              "event_date": "2026-09-19",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/spanish-punk-with-author-david-villa",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-08-28T14:05:33.197491Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5c24d26ddf3a",
              "venue_id": "venue_temescal_arts_center",
              "title": "Improvisation Workshop - First Tuesdays",
              "event_time": "2026-09-19T20:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Improvisation is the key - hosted by Lewis Jordan. Open Workshop and Playground in free improvisation. Spontaneously Assembled Small Groups will collaborate. Come to listen, to be heard, to see, to move. Inviting musicians, poets, dancers, to a non-hierarchical setting to improvise together. Spontaneously composing or conducting, we'll be on a quest for fire.",
              "event_types": [
                "workshop",
                "experimental"
              ],
              "price_info": "Donations encouraged",
              "url": "https://www.temescalartcenter.org/tacmusic.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-08-28T14:09:19.773505Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-09-19",
              "run_id": "run_16a4ae4ccea6",
              "run_label": "Improvisation Workshop - First Tuesdays, Sep 1 – Dec 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7feb2cce3510",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-09-19",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-09-19",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e68354a0b45c",
              "venue_id": "venue_the_cats",
              "title": "Benito Rose",
              "event_time": "2026-09-19 7:00 PM – 10:00 PM",
              "venue_name": "The Cats",
              "event_start": "2026-09-19T19:00:00",
              "event_date": "2026-09-19",
              "venue_address": "17533 Santa Cruz Hwy, Los Gatos, CA 95033",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.thecatslosgatos.com/event/benito-rose-6/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_cats",
                  "source_name": "The Cats",
                  "fetched_at": "2026-08-28T15:00:29.173610Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_cats|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d4446066bd62",
              "venue_id": "venue_dawn_club",
              "title": "CLOSED FOR PRIVATE EVENT",
              "event_time": "Saturday, September 19, 2026 5:00 PM 11:59 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-09-19T17:00:00",
              "event_date": "2026-09-19",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "San Francisco, CA 94103 (415) 508-3296",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/closed-for-a-private-event-35f2f-wzyan-s55l9-6p9xk-cegh4-5535l-9zgy9",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-08-28T15:32:50.415811Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c59cf59d71e1",
              "venue_id": "venue_odc_theater",
              "title": "The Machaut Project: Devotion & Desire",
              "event_time": "9/19 2:00PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-09-19T14:00:00",
              "event_date": "2026-09-19",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "classical",
                "live_music",
                "theater"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM0000042vaz2AA",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-08-28T16:07:20.992529Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8803171f60b2",
              "venue_id": "venue_odc_theater",
              "title": "The Machaut Project: Devotion & Desire",
              "event_time": "9/19 5:00PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-09-19T17:00:00",
              "event_date": "2026-09-19",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "classical",
                "live_music",
                "theater"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM0000042vaz2AA",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-08-28T16:07:20.992529Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1fa73afacadc",
              "venue_id": "venue_sfmoma",
              "title": "Graciela Iturbide & Enrique Chagoya",
              "event_time": "Saturday, Sep 19, 2026 | 2 p.m.",
              "venue_name": "SFMoma",
              "event_start": "2026-09-19T14:00:00",
              "event_date": "2026-09-19",
              "venue_address": "151 Third St, San Francisco, CA 94103",
              "description": "A student of political economy who turned to art, Enrique Chagoya makes drawings, prints, and multiples using pop and extemporaneous historic symbols to critique colonialism and the constant change of contemporary cultural paradigms. He is full professor at Stanford University’s Department of Art and Art History and will become professor emeritus in fall 2026. He received an honorary doctorate from the San Francisco Art Institute in 2017 and a J. S. Guggenheim Foundation Fellowship in 2021. He was also the artist honoree at the San Jose Museum of Art Annual Gala and Benefit in 2023. His work is in the permanent collections of many national and international museums, including MoMA, the Metropolitan Museum of Art, the Whitney Museum, and the Brooklyn Museum in New York; SFMOMA and the Fine Arts Museums of San Francisco; Artium Museum of Contemporary Art for the Basque Country in Spain; and MUNAL-Museo Nacional de Arte in Mexico, among others. Graciela Iturbide (b. 1942, Mexico City) is known for her fantastical black-and-white photographs of communities in Mexico. She has also traveled the world, respectfully photographing uncanny, everyday moments in India, Madagascar, Italy and elsewhere. Her works have been featured in over 60 monographic exhibitions, including a 2007 retrospective at the J. Paul Getty Museum and survey shows at the Museum of Fine Arts Boston in 2019 and C/O Berlin in 2026. She has been the recipient of a Guggenheim Fellowship; the Hasselblad Foundation Photography Award; the Lucie Award for Achievement in Fine Art; and was the 2025 recipient of the prestigious Princess of the Asturias Award for the Arts in Spain. Her works are in the permanent collections of museums around the world, including the Metropolitan Museum of Art; the San Francisco Museum of Modern Art; MoMA, and the Tate Modern, London.",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.sfmoma.org/event/graciela-iturbide-and-enrique-chagoya-in-conversation/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sfmoma",
                  "source_name": "SFMoma",
                  "fetched_at": "2026-08-28T16:39:30.693329Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfmoma|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b24beff8746a",
              "venue_id": "venue_joe_goode_annex",
              "title": "A Goode Ol' Hootenanny",
              "event_time": "2026-09-19T16:00:00",
              "venue_name": "Joe Goode Annex",
              "event_start": "2026-09-19T16:00:00",
              "event_date": "2026-09-19",
              "venue_address": "401 Alabama Street, San Francisco, CA 94110",
              "description": "An immersive dance theater work exploring how we are managing in a world that is personally and collectively unstable. At a precarious time when our lives, health, jobs, governments and the technologies that connect us are in constant flux.",
              "event_types": [
                "community"
              ],
              "price_info": "Not specified",
              "url": "https://joegoode.org/see-us/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_joe_goode_annex",
                  "source_name": "Joe Goode Annex",
                  "fetched_at": "2026-08-28T18:15:38.596732Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_joe_goode_annex|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_b20561b9a22c",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Garrick Ohlsson Plays Brahms",
              "event_time": "Saturday, Sep 19, 2026 | 7:30 pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-09-19T19:30:00",
              "event_date": "2026-09-19",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "Overview Conductor David Afkham and the San Francisco Symphony explore the musical orbit of Robert and Clara Schumann. Robert’s Fourth Symphony begins with a catchy rising-and-falling figure, the “Clara theme,” derived from one of his beloved bride’s own piano compositions. The theme appears throughout the symphony, which he presented to her on her 22nd birthday. Johannes Brahms’s Piano Concerto No. 1 is both an elegy for Robert and a tender portrait of Clara, whom Brahms once described as “going to the concert hall like a priestess to the altar.” You won’t want to miss the visionary soloist Garrick Ohlsson, who shares her disciplined devotion. Inspired by Ludwig van Beethoven, Unsuk Chin’s subito con forza pronounces itself forcefully and without reservation, painting with the bold brush strokes of the avant-garde.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "LEARN MORE",
              "url": "https://www.sfsymphony.org/Buy-Tickets/2026-27/Garrick-Ohlsson-Plays-Brahms",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-08-28T19:38:14.129031Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c9ff729589e5",
              "venue_id": "venue_cry_baby",
              "title": "¡Desmadre!",
              "event_time": "2026-09-19T07:00:00.000Z",
              "venue_name": "Cry Baby",
              "event_start": "2026-09-19T07:00:00",
              "event_date": "2026-09-19",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "Crybaby Presents ¡DESMADRE! w/ OtebNSolrac + Mar E. Fresh B2B Wockie & PATIO TAKOVER by Bussdown Collective Sat Sep 19, 2026 10:00 PM 21+ Buy Tickets Additional Info Reggaeton / Dembow / Perreo / Corridos / Latin Dance / Y Mas ***************************************************************************** FREE ENTRY B4 11PM WITH THIS RSVP LINK: https://partiful.com/e/HCTNnzlD7HB7fTaKqcfE For those looking for a night of Reggaeton, Cumbia, Dembow, Moombahton, Corridos, Latin Dance, y más, you're in for a treat. Pull up to experience a night of ratcheton and down and dirty dancing -- only at Desmadre can you get your fix of all latin dance, all night. DJs: OTEBNSOLRAC + Mare E. Fresh B2B Wockie Patio Takeover by Bussdown Collective 360 Stage! Come through to get your perreo on! 21+ | Doors + Music @ 10:00pm | Drink Specials All Night + Google Calendar Related Events Buy Tickets Fri Sep 11 Lil Kayla - Live in Oakland! Buy Tickets Sun Sep 20 The Market Arts Festival - 5 Year Anniversary! w/ DJ Sandio + DJ Rell + JC-Caution + J-Blenz Buy Tickets Sat Sep 26 Nef the Pharaoh & D-Lo - Burn The City Tour",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://crybaby.live/tm-event/desmadre-w-otebnsolrac-mar-e-fresh-b2b-wockie-patio-takover-by-bussdown-collective/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-08-28T19:56:15.638282Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cry_baby|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d0a01f0f57ac",
              "venue_id": "venue_exploratorium",
              "title": "Daytime Members-Only Hours",
              "event_time": "2026-09-19",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Please consider joining us today ! Members are the backbone of our organization and help ensure the continuity of our mission to create inquiry-based experiences that transform learning worldwide. We can’t wait to see you at the museum.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/member-hours",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-19",
              "run_id": "run_e38dfc952011",
              "run_label": "Daytime Members-Only Hours, Aug 30 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_26d7ba656066",
              "venue_id": "venue_the_monkey_house",
              "title": "SIDS, brigit boyle",
              "event_time": "09/19/2026",
              "venue_name": "The Monkey House",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "1638 University Avenue, Berkeley, CA",
              "description": "Vocalist and guitarist Briget Boyle shares the stage with Secret Identities (SIDS) for an evening of harmony-rich folk music. Audiences can look forward to a captivating set spanning folk, roots, and traditional styles.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monkey_house",
                  "source_name": "The Monkey House",
                  "fetched_at": "2026-08-28T21:37:06.591184Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monkey_house|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_457152ee55c3",
              "venue_id": "venue_club_fox",
              "title": "The Great North Special",
              "event_time": "2026-09-19T19:00:00",
              "venue_name": "Club Fox",
              "event_start": "2026-09-19T19:00:00",
              "event_date": "2026-09-19",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Eventbrite - Club Fox presents THE GREAT NORTH SPECIAL - Wednesday, August 26, 2026 at Club Fox, Redwood City, CA. Find event and ticket information.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/the-great-north-special-tickets-1994392789521?aff=oddtdtcreator&keep_tld=true",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-08-28T22:45:26.741794Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_acb7dadadc34",
              "venue_id": "venue_levis_stadium",
              "title": "San Jose Earthquakes vs. LAFC",
              "event_time": "2026-09-19",
              "venue_name": "Levis Stadium",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
              "description": "Watch Major League Soccer action as the San Jose Earthquakes host Los Angeles FC in an exciting California showdown at Levi's Stadium.",
              "event_types": [
                "sports"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://levisstadium.com/event/san-jose-earthquakes-vs-lafc/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_levis_stadium",
                  "source_name": "Levis Stadium",
                  "fetched_at": "2026-08-28T23:07:52.237656Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_levis_stadium|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c0f64de61696",
              "venue_id": "venue_rhythmix",
              "title": "The Locals: Opening Reception",
              "event_time": "2026-09-19T18:00:00",
              "venue_name": "Rhythmix",
              "event_start": "2026-09-19T18:00:00",
              "event_date": "2026-09-19",
              "venue_address": "2513 Blanding Ave, Alameda, CA 94501",
              "description": "Opening reception for \"The Locals\" exhibit at K Gallery. Exhibit dates listed as September 11 to October 25, 2026.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://www.rhythmix.org/upcoming-exhibits/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rhythmix",
                  "source_name": "Rhythmix",
                  "fetched_at": "2026-08-28T23:14:01.025318Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rhythmix|2026-09-19",
              "run_id": "run_566a8f02098a",
              "run_label": "The Locals: Opening Reception, Sep 11 – Oct 25",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_9e9d6c591bae",
              "venue_id": "venue_rhythmix",
              "title": "Native Boogie and Beats",
              "event_time": "2026-09-19T12:00:00",
              "venue_name": "Rhythmix",
              "event_start": "2026-09-19T12:00:00",
              "event_date": "2026-09-19",
              "venue_address": "2513 Blanding Ave, Alameda, CA 94501",
              "description": "Interactive performance featuring Bay Area-based Native Boogie and Beats with traditional and modern Native American powwow dancing and drumming, presented as part of Rhythmix in the Parks.",
              "event_types": [
                "live_music",
                "latin_world",
                "dance"
              ],
              "price_info": "FREE | Please RSVP",
              "url": "https://www.rhythmix.org/events/native-boogie-and-beats/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rhythmix",
                  "source_name": "Rhythmix",
                  "fetched_at": "2026-08-28T23:14:01.025318Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rhythmix|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_faf987b5ca20",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-09-19",
              "venue_name": "De Young",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-19",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d2278653d1c6",
              "venue_id": "venue_roccapulco",
              "title": "Mon Laferte Tribute by Tormento",
              "event_time": "2026-09-19T21:00:00",
              "venue_name": "Roccapulco",
              "event_start": "2026-09-19T21:00:00",
              "event_date": "2026-09-19",
              "venue_address": "3140 Mission St, San Francisco, CA 94110",
              "description": "Antro Nights presents La Experiencia Mon Laferte tribute show featuring Tormento live at Roccapulco.",
              "event_types": [
                "live_music"
              ],
              "price_info": "From $23.11",
              "url": "http://www.roccapulco.com/events-calendar.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_roccapulco",
                  "source_name": "Roccapulco",
                  "fetched_at": "2026-08-28T23:47:28.863635Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_roccapulco|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_6a03a1454567",
              "venue_id": "venue_punch_line",
              "title": "RED RICHARDSON",
              "event_time": "Sep 19, 2026 8:00 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "British comedian and viral sensation Red Richardson brings his sharp, toxic-skewering wit and hilarious storytelling across the pond.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/red-richardson-san-francisco-california-09-19-2026/event/1C0064C9C6E97323",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5322595a1782",
              "venue_id": "venue_punch_line",
              "title": "RED RICHARDSON",
              "event_time": "Sep 19, 2026 10:00 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-19T22:00:00",
              "event_date": "2026-09-19",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "British comedian and viral sensation Red Richardson brings his sharp, toxic-skewering wit and hilarious storytelling across the pond.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/red-richardson-san-francisco-california-09-19-2026/event/1C0064C9C6EE7334",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_828543379acd",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "CHRISTOPHER TITUS: LIVE SPECIAL TAPING",
              "event_time": "Sat Sep 19, 2026 7:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-09-19T19:00:00",
              "event_date": "2026-09-19",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Comedian Christopher Titus films his newest stand-up comedy special live in front of the Cobb's Comedy Club audience.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/christopher-titus-live-special-taping-san-francisco-california-09-19-2026/event/1C0064B45A322D1F",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1fecbc113f8e",
              "venue_id": "venue_shapeshifters",
              "title": "Gravitational Lensing: Feminist Film Dialogues",
              "event_time": "2026-09-19",
              "venue_name": "Shapeshifters",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "Program 17: Family Portraits/Relational Exercises includes a spectrum of diaristic films—from uncanny documentary to autobiographical re-enactments—that manifest different ways filmmakers choose to represent their relationships to family and, more broadly, to home (both literal and conceptual) through cinematic language.",
              "event_types": [
                "film"
              ],
              "price_info": "San Francisco Cinematheque",
              "url": "https://sfcinematheque.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shapeshifters",
                  "source_name": "Shapeshifters",
                  "fetched_at": "2026-08-30T10:04:33.112973Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-09-19",
              "run_id": "run_8afbca984fe1",
              "run_label": "Gravitational Lensing: Feminist Film Dialogues, Sep 9 – Nov 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0216498240e6",
              "venue_id": "venue_noe_valley_ministry",
              "title": "Impossible Inventions",
              "event_time": "Saturday, Sep 19  7:30 PM",
              "venue_name": "Noe Valley Ministry",
              "event_start": "2026-09-19T19:30:00",
              "event_date": "2026-09-19",
              "venue_address": "1021 Sanchez St, San Francisco, CA 94114",
              "description": "Kick off the season with music that looks toward the future. Left Coast Chamber Ensemble celebrates a new generation of composers with its Pathways Program, featuring world premieres from emerging artists alongside Paul Novak’s impossible inventions, winner of Left Coast’s 2025 Composition Contest. The program also includes Thea Musgrave ’s atmospheric In the Still of the Night and Mendelssohn ’s radiant String Quartet No. 1 in E-flat major —pairing youthful experimentation and fresh musical voices with the brilliance of a beloved chamber music masterwork.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Price:\n$20 tickets ($12 for Supermusers)",
              "url": "https://www.groupmuse.com/events/16977-left-coast-chamber-ensemble-presents-impossible-inventions",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_groupmuse",
                  "source_name": "Groupmuse",
                  "fetched_at": "2026-08-30T10:42:11.507915Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_noe_valley_ministry|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_665be6913c2c",
              "venue_id": "venue_sc_vets_hall",
              "title": "Titan Rage: Headbangers Ball",
              "event_time": "2026-09-19T18:30:00",
              "venue_name": "Santa Cruz Vets Hall",
              "event_start": "2026-09-19T18:30:00",
              "event_date": "2026-09-19",
              "venue_address": "846 Front St, Santa Cruz, CA 95060",
              "description": "A live metal and heavy rock concert featuring Titan Rage and guest acts at the Veterans Memorial Building.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10",
              "url": "https://allevents.in/santa%20cruz/headbangers-ball/80002621182378",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sc_vets_hall",
                  "source_name": "Santa Cruz Vets Hall",
                  "fetched_at": "2026-08-30T11:12:52.047725Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sc_vets_hall|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_fe614b8afacd",
              "venue_id": "venue_the_back_room",
              "title": "Rova Saxophone Quartet",
              "event_time": "9/19/2026 8:00 PM",
              "venue_name": "Back Room",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "1984 Bonita Ave,Berkeley,CA 94704",
              "description": "Rova Saxophone QuartetTickets/Info",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets/Info More",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23330",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-31T10:04:42.136151Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_back_room|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_7d5e0ec3a2e0",
              "venue_id": "venue_yoshis",
              "title": "MOHINI DEY",
              "event_time": "September 19, 2026 - 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-19T19:30:00",
              "event_date": "2026-09-19",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "SUMMER SALE! 25% OFF SAT 9:30PM SHOW. CODE:SUMMER25 OFFER ENDS MON, JUN 29 AT 11:59PM PST LIMITED TIX AVAILABLE",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "$40 - $89",
              "url": "https://yoshis.com/events/buy-tickets/mohini-dey-2/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_42fca0ba29b5",
              "venue_id": "venue_sf_conservatory",
              "title": "Harp Masterclass with Noël Wan",
              "event_time": "2026-09-19",
              "venue_name": "SF Conservatory of Music",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "50 Oak St, San Francisco, CA 94102",
              "description": "The San Francisco Conservatory of Music’s Harp Department is comprised of fewer than five students. At SFCM, students have opportunities to perform with resident ensembles, including the Conservatory Orchestra, the Historical Performance program, small and large chamber ensembles, and Technology and Applied Composition recording sessions, as well as enter into the biannual Harp Concerto Competition.",
              "event_types": [
                "classical",
                "workshop"
              ],
              "price_info": "",
              "url": "https://sfcm.edu/experience/performances/harp-masterclass-noel-wan-open-public/20260919",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_conservatory",
                  "source_name": "SF Conservatory of Music",
                  "fetched_at": "2026-08-31T11:29:33.983801Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_conservatory|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_854101f08ffc",
              "venue_id": "venue_brava_theater",
              "title": "HUMP! Film Festival – Fall Season",
              "event_time": "2026-09-19",
              "venue_name": "Brava Theater",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "2781 24th St, San Francisco, CA 94110",
              "description": "HUMP! is a live, curated short film festival celebrating sex, love, kink, humor, vulnerability, and human creativity told by real people and experienced together, in theaters, as it was meant to be.\n\nFounded by Dan Savage, HUMP! has spent over two decades proving that intimacy is culture and that audiences are hungry for work that is bold, funny, handmade, and deeply human.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.brava.org/all-events/humpfallfestival2026-6zp3n-hp5pk-w2pcm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brava_theater",
                  "source_name": "Brava Theater",
                  "fetched_at": "2026-08-31T12:29:43.593913Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brava_theater|2026-09-19",
              "run_id": "run_3a948c83cb9d",
              "run_label": "HUMP! Film Festival – Fall Season, Sep 17 – Sep 19",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e1f00ce55eeb",
              "venue_id": "venue_winters",
              "title": "Pre-Alpaca Fest Matinee",
              "event_time": "2026-09-19T13:00:00",
              "venue_name": "Winters",
              "event_start": "2026-09-19T13:00:00",
              "event_date": "2026-09-19",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "Pre-Alpaca Fest matinee with live music from Daizy, Mark Kostrzewa, The Fogtones, Sunny the Banjo Witch, and HYTHIN, plus a food pop-up by ChitChat Cafe and a knitting pop-up.",
              "event_types": [
                "festival",
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-08-31T12:39:12.063314Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_winters|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_b85779312716",
              "venue_id": "venue_winters",
              "title": "Outpost 31 / Terminal Discharge",
              "event_time": "2026-09-19T20:00:00",
              "venue_name": "Winters",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "Live music featuring Outpost 31, Terminal Discharge, Storm The Gates, and Red Sun Ruins.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQHPWui4DOgpsqKL0PmJwUTXFCK6U8LtKyy5xe8v8puGVJPH3YurzoxIR0SpuMJrxhDv4JrkAlA7dGMg8BQxiYxjs0Tsgx6_y1VENo6-3kH4zSeRi7zRl4CurODeShSO_9Vc3o91uwYFBIsVWML8susvlykqoaf2vjy0DjfyPZQqMcVJpUurg5P4UEttt-k_nZi2nwXoN4HiGVQ=",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-08-31T12:39:12.063314Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_winters|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_8a055a8faa4c",
              "venue_id": "venue_presidio_theater",
              "title": "USAF The Commanders Jazz Ensemble",
              "event_time": "SEP 19, 2026",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-09-19T19:30:00",
              "event_date": "2026-09-19",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "99 Moraga Avenue San Francisco, CA 94129 415-960-3949",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "BOOK TICKETS",
              "url": "https://www.presidiotheatre.org/show-details/usaf-the-commanders-jazz-ensemble",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-08-31T13:00:36.584647Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f283fb5b499b",
              "venue_id": "venue_piedmont_center",
              "title": "For the Love of Art Exhibition",
              "event_time": "2026-09-19T11:00:00",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-09-19T11:00:00",
              "event_date": "2026-09-19",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "Exhibition featuring various artists. Weekends 8/9 - 9/20 (except 8/22 & 8/30).",
              "event_types": [
                "art"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-08-31T13:20:32.956554Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-09-19",
              "run_id": "run_17625c4204a3",
              "run_label": "For the Love of Art Exhibition, Aug 8 – Sep 20",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cc4e23a13485",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Godsmack",
              "event_time": "Sat Sep 19, 2026",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "Hard rock veterans Godsmack headline the Shoreline Amphitheatre on \"The Rise of Rock Tour,\" delivering a powerful set of their biggest rock radio hits.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/godsmack-the-rise-of-rock-world-mountain-view-california-09-19-2026/event/1C006434EBFBEE0C",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-08-31T13:50:55.047252Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_82c4ec047ba9",
              "venue_id": "venue_cornerstone",
              "title": "Vieux Farka Touré",
              "event_time": "2026-09-19T21:00:00",
              "venue_name": "Cornerstone",
              "event_start": "2026-09-19T21:00:00",
              "event_date": "2026-09-19",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Cornerstone presents world music and desert blues guitar virtuoso Vieux Farka Touré.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Open",
              "url": "https://dothebay.com/events/2026/9/19/vieux-farka-toure-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-08-31T14:04:10.183515Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cornerstone|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_48da1387ee0a",
              "venue_id": "venue_ashkenaz",
              "title": "BOTMC Square Dance Party",
              "event_time": "09/19/2026 8:00 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "Berkeley Old-Time Music Convention - Square Dance",
              "event_types": [
                "dance",
                "folk"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/188646",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-08-31T14:45:33.243069Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_67b0774afb31",
              "venue_id": "venue_yerba_buena_center",
              "title": "GaHee Park: Behind the Curtain",
              "event_time": "2026-09-19",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Park invites us to peek behind the curtain, as she lays claim to her own power as a surrealist painter working across fantasy and intimacy.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/gahee-park-behind-the-curtain/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-19",
              "run_id": "run_5353f80886f6",
              "run_label": "GaHee Park: Behind the Curtain, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1bfd2a40c6c5",
              "venue_id": "venue_yerba_buena_center",
              "title": "Trouble in Paradise",
              "event_time": "Saturday, September 19, 2026, 2 PM",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-19T14:00:00",
              "event_date": "2026-09-19",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "See Ernst Lubitsch’s “Trouble in Paradise” (1932) as part of a weekly film series exploring voyeurism and theatricality, cocktail charm and social taboos.",
              "event_types": [
                "film"
              ],
              "price_info": "Tickets: $15",
              "url": "https://ybca.org/event/trouble-in-paradise-through-an-open-window-film-series/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_97422588e9aa",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dream",
              "event_time": "2026-09-19",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public art installation commissioned by YBCA and co-sponsored by San Francisco Public Works.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dream-public-art/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-19",
              "run_id": "run_b6a5ba4e8809",
              "run_label": "Dream, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2f482895e3ef",
              "venue_id": "venue_yerba_buena_center",
              "title": "SoMa Mahal Kita",
              "event_time": "2026-09-19",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A message of love for the SoMa neighborhood and community, inspired by weaving practices in the Phillipines and the colors of the Filipino flag.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/soma-mahal-kita-soma-i-love-you-ciriaco-sayoc/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-19",
              "run_id": "run_0c5141fff335",
              "run_label": "SoMa Mahal Kita, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b2f9a3b27aa2",
              "venue_id": "venue_yerba_buena_center",
              "title": "We Rooted in Flight",
              "event_time": "2026-09-19",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public artwork inviting passerbyers to join in the journey of collective flight",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/we-fly-for-a-liberated-we-we-rooted-in-flight/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-19",
              "run_id": "run_1d34139aedcf",
              "run_label": "We Rooted in Flight, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3cb7dc54e473",
              "venue_id": "venue_hammer_theater",
              "title": "México la Bella",
              "event_time": "9/19/2026 - 9/19/2026",
              "venue_name": "Hammer Theatre",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "101 Paseo De San Antonio , San Jose, CA 95113",
              "description": "México la Bella is a cultural production featuring live mariachi music, traditional Mexican folklórico dance, and theatrical elements that celebrate life, family, and culture. The show highlights regional traditions through vibrant choreography and live performance by youth and professional artists. Audiences are invited on a journey across Mexico’s heritage, honoring both cultural preservation and community connection. The event is designed to uplift, inspire, and share the richness of Mexican tradition.",
              "event_types": [
                "live_music",
                "latin_world",
                "dance",
                "theater"
              ],
              "price_info": "Order Now!",
              "url": "https://plugin.vbotickets.com/v5.0/event.asp?eid=200765&s=b2800bd9-bb7b-4abb-a5af-e56ee60e4328",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hammer_theater",
                  "source_name": "Hammer Theatre",
                  "fetched_at": "2026-08-31T15:49:23.969939Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hammer_theater|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3804751f42f4",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-09-19T14:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-19T14:00:00",
              "event_date": "2026-09-19",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-19",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_e42cdfe5e6de",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-09-19T18:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-19T18:00:00",
              "event_date": "2026-09-19",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-19",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 2,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_84bdc0c18a9f",
              "venue_id": "venue_chase_center",
              "title": "Valkyries vs. Storm",
              "event_time": "September 19, 2026 - 6:00 PM",
              "venue_name": "Chase Center",
              "event_start": "2026-09-19T18:00:00",
              "event_date": "2026-09-19",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "At Select-A-Suite on Thursday, September 17, 2026, not only will you have the opportunity to reserve your suites before they are released to the public, but attendees can also enjoy complimentary food and beverage tastings throughout the event, network with fans and business professionals, and have the opportunity to capture a photo with the Larry O'Brien Trophies.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://chasecenter.com/events/20260919-gsv-vs-sea/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-08-31T17:38:13.687686Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_77535b3d387f",
              "venue_id": "venue_august_hall",
              "title": "EARLYBIRDS CLUB",
              "event_time": "SEPTEMBER 19, 2026",
              "venue_name": "August Hall",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "This unique dance party is designed for ladies who want to enjoy a night of clubbing with friends but at a reasonable hour, running from 6:00 PM to 10:00 PM [1.1.4]. It offers a vibrant, energetic atmosphere without sacrificing a good night's sleep.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.augusthallsf.com/tm-event/earlybirds-club-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-08-31T17:47:21.031442Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9f1ad20bfda9",
              "venue_id": "venue_tupelo",
              "title": "II Funky Shus",
              "event_time": "Saturday September 19th 9:00PM - 1:30AM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-19T21:00:00",
              "event_date": "2026-09-19",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "Hosted by Andrew Coutti and Young Blake on drums and bass,, this is the definitive Jam in San Francisco. Each week there will be a different special guest vocalist, as well as myriad other exceptional local talent popping in no doubt. Talk to either host before the gig if you're interested in performing. We take this shit seriously though, so bring your chops :)",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_43849581c3f3",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Heather Shaw",
              "event_time": "2026-09-19 2026-09-18T21:45:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show featuring Heather Shaw with Chase Harter and Dan Aguinaga.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Price not found in the specific listing.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/133171",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-08-31T18:20:03.865483Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-09-19",
              "run_id": "run_ae301c6daee4",
              "run_label": "Heather Shaw, Sep 18 – Sep 19",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_e26cff82a6a8",
              "venue_id": "venue_great_american_music_hall",
              "title": "PRIVATE EVENT",
              "event_time": "Sat Sep 19 2026 5:00PM",
              "venue_name": "Great American",
              "event_start": "2026-09-19T17:00:00",
              "event_date": "2026-09-19",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Looking for the perfect venue for your next special occasion? The Great American Music Hall offers a unique and elegant setting for private events of all kinds, including corporate gatherings, weddings, bar/bat mitzvahs, quinceañeras, holiday parties, and more. Discover how our iconic space can make your event unforgettable. For more details and to start follow this link.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://wl.seetickets.us/event/private-event/656645?afflky=GreatAmericanMusicHall",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-09-02T10:02:47.962874Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_abea3bcffdd1",
              "venue_id": "venue_cafe_zoe_pizza_guy",
              "title": "Live Music by Los Tomatos",
              "event_time": "2026-09-19T01:00:00",
              "venue_name": "Cafe Zoe",
              "event_start": "2026-09-19T01:00:00",
              "event_date": "2026-09-19",
              "venue_address": "1929 Menalto Ave, Menlo Park, CA 94025",
              "description": "Covers from 70's classic rock to 90's alternative and more.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://neighborhood.pizza/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cafe_zoe_pizza_guy",
                  "source_name": "Cafe Zoe",
                  "fetched_at": "2026-09-02T10:14:27.017935Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cafe_zoe_pizza_guy|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_599cfb0061b4",
              "venue_id": "venue_the_knockout",
              "title": "Free Matinee: The Disrespectors",
              "event_time": "Sat 19 Sep ― 4:00pm",
              "venue_name": "The Knockout",
              "event_start": "2026-09-19T16:00:00",
              "event_date": "2026-09-19",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "FREE MATINEE SHOW! THE DISRESPECTORS + WHO ASKED FOR THIS? + THE DOPPLEBANGERS • SATURDAY AFTERNOON ELECTRIC ROCK N’ ROLL • DOORS 4PM • SHOW 5PM TO 9PM • NO COVER • 21+",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/qfd914764e8b?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-09-02T10:33:16.877437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1c4024badd14",
              "venue_id": "venue_the_knockout",
              "title": "After Dark Industrial Dance Party",
              "event_time": "Sat 19 Sep ― 9:00pm",
              "venue_name": "The Knockout",
              "event_start": "2026-09-19T21:00:00",
              "event_date": "2026-09-19",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "FREE MATINEE SHOW! THE DISRESPECTORS + WHO ASKED FOR THIS? + THE DOPPLEBANGERS • SATURDAY AFTERNOON ELECTRIC ROCK N’ ROLL • DOORS 4PM • SHOW 5PM TO 9PM • NO COVER • 21+",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$11.33",
              "url": "https://link.dice.fm/N9311b0b8830?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-09-02T10:33:16.877437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e2e493102ee3",
              "venue_id": "venue_the_midway",
              "title": "Da Tweekaz",
              "event_time": "09/19/2026 10:00 PM",
              "venue_name": "The Midway",
              "event_start": "2026-09-19T22:00:00",
              "event_date": "2026-09-19",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "888 GARAGE ∙ INDOORS",
              "event_types": [
                "dj_party"
              ],
              "price_info": "TICKETS",
              "url": "https://www.tixr.com/groups/midwaysf/events/basscon-presents-da-tweekaz-191355",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-09-02T11:30:22.920988Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_25a42bfe5889",
              "venue_id": "venue_discretion_brewing",
              "title": "Ashley Lloyd",
              "event_time": "2026-09-19T17:30:00",
              "venue_name": "Discretion Brewing",
              "event_start": "2026-09-19T17:30:00",
              "event_date": "2026-09-19",
              "venue_address": "2703 41st Ave Ste A, Soquel, CA 95073",
              "description": "Live Music 5:30-7:30pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_discretion_brewing",
                  "source_name": "Discretion Brewing",
                  "fetched_at": "2026-09-02T11:35:03.120781Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_discretion_brewing|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_284d0153cb41",
              "venue_id": "venue_cheaper_than_therapy",
              "title": "Cheaper Than Therapy",
              "event_time": "2026-09-19T19:45:00",
              "venue_name": "Cheaper Than Therapy",
              "event_start": "2026-09-19T19:45:00",
              "event_date": "2026-09-19",
              "venue_address": "533 Sutter St, San Francisco, CA 94102",
              "description": "Stand-up comedy show at Shelton Theater. Listing says each show features five to six hand-picked, experienced comedians and an occasional guest drop-in.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$25.00",
              "url": "https://tickets.cttcomedy.com/events/2566/cheaper-than-therapy-stand-up-comedy-sat-sep-19-7-45-pm/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cheaper_than_therapy",
                  "source_name": "Cheaper Than Therapy",
                  "fetched_at": "2026-09-02T11:40:03.690341Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cheaper_than_therapy|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_6499969b25a0",
              "venue_id": "venue_madrone_art_bar",
              "title": "FRINGE: THE INDIE ROCK DANCE PARTY",
              "event_time": "September 19 @ 9:00 pm - 11:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-19T21:00:00",
              "event_date": "2026-09-19",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Fringe spins Yeah Yeah Yeahs * The Killers * LCD Soundsystem * ROBYN * Cut Copy * Passion Pit * MGMT * The Strokes * Phoenix * Empire of the Sun * Wet Leg * Phoebe Bridgers * Foster the People * Chappell Roan * The White Stripes * CHVRCHES * Chromeo * Lorde * [&hellip;]",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/fringe-the-indie-rock-dance-party-9-2021-08-21-2026-02-21-2026-04-18-2026-08-15-2026-09-19/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d0e9b176c60b",
              "venue_id": "venue_madrone_art_bar",
              "title": "Jim Washington",
              "event_time": "September 19 @ 6:30 pm - 8:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-19T18:30:00",
              "event_date": "2026-09-19",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Jazz Piano with Jim Washington 6:30-8:30pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/jim-washington-6-2025-12-20-2026-06-20-2026-07-18-2026-08-15/2026-09-19/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7453d2ec0b5f",
              "venue_id": "venue_piedmont_piano_company",
              "title": "Bokani Dyer",
              "event_time": "2026-09-19T17:30:00",
              "venue_name": "Piedmont Piano Co",
              "event_start": "2026-09-19T17:30:00",
              "event_date": "2026-09-19",
              "venue_address": "1728 San Pablo Ave, Oakland, CA 94612",
              "description": "Jazz Piano Masters Series solo performance by Bokani Dyer, featuring reimagined album works, new material, and covers shaped by African rhythmic traditions.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "General Admission: $25 in advance / $30 at the door",
              "url": "https://piedmontpiano.com/calendar/2026/9/19/bokani-dyer",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_piano_company",
                  "source_name": "Piedmont Piano Co",
                  "fetched_at": "2026-09-03T10:22:09.546608Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_piedmont_piano_company|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_4e94bdde636d",
              "venue_id": "venue_black_cat",
              "title": "Lady Stout & Nurenssnce",
              "event_time": "2026-09-19T19:00:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-19T19:00:00",
              "event_date": "2026-09-19",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50, $60\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n9:30 show: Bar @ 6:00, Doors @ 8:45\n\n*Sunday 9:15 show: Bar @ 6:00, Doors @ 8:30\n\n\n\n\nVoice-led, genre-bending soul where jazz, gospel, rock, funk, and fearless improvisation collide.\n\n\n\n\nLady Stout & Nurenssnce deliver a powerful live experience where soulful storytelling, deep grooves, and fearless improvisation meet. Blending jazz, gospel, rock, and contemporary soul, every performance is immersive, emotionally charged, and completely alive in the moment.\n\n\n\n\nLady Stout has shared the stage with Robert Glasper, Chris Dave, Derrick Hodge, Ledisi, Alicia Keys, Patti LaBelle, Anderson .Paak, Durand Bernarr, Keyon Harrold, and Noname, with appearances at Carnegie Hall, NPR Tiny Desk, the GRAMMY Awards, BET Awards, the Billboard Music Awards, The Tonight Show Starring Jimmy Fallon, and collaborations including De La Soul. Backed by an exceptional band of internationally recognized musicians, Nurenssnce honors the traditions of jazz while boldly pushing the music into new territory.\n\n\n\n\nBand Lineup:\n\nLady Stout — lead vocals\n\nDan Winshall — bass, musical director\n\nTyson Jackson — drums\n\nAxel Tosca — piano\n\nMatt Sewell — guitar",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "$20 , $30 , $40 , $50, $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/12433/2026-09-19",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ccc4748bff53",
              "venue_id": "venue_black_cat",
              "title": "Lady Stout & Nurenssnce",
              "event_time": "2026-09-19T21:30:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-19T21:30:00",
              "event_date": "2026-09-19",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50, $60\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n9:30 show: Bar @ 6:00, Doors @ 8:45\n\n*Sunday 9:15 show: Bar @ 6:00, Doors @ 8:30\n\n\n\n\nVoice-led, genre-bending soul where jazz, gospel, rock, funk, and fearless improvisation collide.\n\n\n\n\nLady Stout & Nurenssnce deliver a powerful live experience where soulful storytelling, deep grooves, and fearless improvisation meet. Blending jazz, gospel, rock, and contemporary soul, every performance is immersive, emotionally charged, and completely alive in the moment.\n\n\n\n\nLady Stout has shared the stage with Robert Glasper, Chris Dave, Derrick Hodge, Ledisi, Alicia Keys, Patti LaBelle, Anderson .Paak, Durand Bernarr, Keyon Harrold, and Noname, with appearances at Carnegie Hall, NPR Tiny Desk, the GRAMMY Awards, BET Awards, the Billboard Music Awards, The Tonight Show Starring Jimmy Fallon, and collaborations including De La Soul. Backed by an exceptional band of internationally recognized musicians, Nurenssnce honors the traditions of jazz while boldly pushing the music into new territory.\n\n\n\n\nBand Lineup:\n\nLady Stout — lead vocals\n\nDan Winshall — bass, musical director\n\nTyson Jackson — drums\n\nAxel Tosca — piano\n\nMatt Sewell — guitar",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "$20 , $30 , $40 , $50, $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/12433/2026-09-19",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5c1266da333c",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Paula West",
              "event_time": "Saturday, September 19, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-19T19:00:00",
              "event_date": "2026-09-19",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Saturday, September 19, 2026 @ 7pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $45 per show",
              "url": "https://keysjazzbistro.com/event/paula-west-15/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_28a21211c16d",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Late Set: Simon Rowe Organ Trio",
              "event_time": "Saturday, September 19, 2026 @ 10:30pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-19T22:30:00",
              "event_date": "2026-09-19",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Saturday, September 19, 2026 @ 10:30pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $20 per show",
              "url": "https://keysjazzbistro.com/event/late-set-simon-rowe-organ-trio-65/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7e30a5b1fb16",
              "venue_id": "venue_brick_and_mortar",
              "title": "CULT MEMBER, *TEETH, NURSE (BODY BAG)",
              "event_time": "9.19 Show: 9:00PM",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-09-19T21:00:00",
              "event_date": "2026-09-19",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Event Details Goldenvoice Presents Cult Member, *teeth, nurse (body bag) with *teeth , nurse (body bag) September 19, 2026 9:00 pm PDT (Doors: 8:00 pm ) Brick and Mortar Music Hall , 1710 Mission Street , San Francisco, CA ( map ) $35.72 Buy Tickets + Google Calendar Cult Member *teeth nurse (body bag) JUST ANNOUNCED Felukah — HibisKiss Tour October 28, 2026 Thoughts on Bowling November 27, 2026 BIIRD (Night 2) September 20, 2026 MoneyHillCasino October 11, 2026 Hayden Everett October 29, 2026 Follow us on Instagram Join the Brick & Mortar Newsletter",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35.72",
              "url": "https://www.brickandmortarmusic.com/tm-event/cult-member/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-09-03T11:13:51.689688Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f96da7875fe6",
              "venue_id": "venue_pacific_film_archive",
              "title": "Curators’ Conversation",
              "event_time": "Sep 19, 2026 1 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-19T13:00:00",
              "event_date": "2026-09-19",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Cocurators Natalia Brizuela and Julia Bryan-Wilson discuss Lotty Rosenfeld: Disobedient Spaces, examining Rosenfeld’s approach to art under authoritarianism, feminist strategies for disobedience, materiality and ephemerality, and performance and video, and celebrate the publication of the accompanying exhibition catalogue.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/curators-conversation-natalia-brizuela-and-julia-bryan-wilson-lotty",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7e1f9fbb1faa",
              "venue_id": "venue_pacific_film_archive",
              "title": "Artist’s Conversation: Marcel Pardo Ariza",
              "event_time": "Sep 19, 2026 2 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-19T14:00:00",
              "event_date": "2026-09-19",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Marcel Pardo Ariza joins BAMPFA Chief Curator Margot Norton for a conversation about their new Art Wall project and Art Handlxrs, the award-winning organization Ariza cofounded to support marginalized communities within the art handling profession.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/artists-conversation-marcel-pardo-ariza",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7e50d309f2be",
              "venue_id": "venue_pacific_film_archive",
              "title": "Contempt",
              "event_time": "Sep 19, 2026 4:30 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-19T16:30:00",
              "event_date": "2026-09-19",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Jean-Luc Godard’s Homeric homage to Fritz Lang, “one of the defining moments of modernist filmmaking” (Film Comment). With Brigitte Bardot, Michel Piccoli, and Jack Palance.",
              "event_types": [
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/contempt",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8531b8bee702",
              "venue_id": "venue_pacific_film_archive",
              "title": "The Hole",
              "event_time": "Sep 19, 2026 7 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-19T19:00:00",
              "event_date": "2026-09-19",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "In Taipei it’s the end of the world as we know it, thanks to a mysterious plague, but even the most alienated urbanite is dreaming of 1950s movie musicals in Tsai Ming-liang’s delirious exploration of modern isolation, quarantines, and dance numbers.",
              "event_types": [
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/hole",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_050216b248ce",
              "venue_id": "venue_4_star_theater",
              "title": "4 Star Pokemon Cartoon Block",
              "event_time": "19 September 2026 10:00 AM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-19T10:00:00",
              "event_date": "2026-09-19",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "This weekend, the 4-Star offers up a specially curated block of Pokemon episodes! And as with every Popcorn Palace show, seating is totally free.   Cinema SF Bay is proud to announce that our Saturday &amp; Sunday morning POPCORN PALACE movie screenings at the 4 STAR will continue to be presente",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/pokemon-sat",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0887812c58f1",
              "venue_id": "venue_4_star_theater",
              "title": "SF Critterfest: Flamingos",
              "event_time": "19 September 2026 12:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-19T12:00:00",
              "event_date": "2026-09-19",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "This is a story about life — stubborn, fragile and fleeting — that began 66 million years ago, when a giant meteorite crashed in what is now the Yucatán Peninsula, wiping out the dinosaurs from existence. Millennia later, tens of thousands of Caribbean flamingos flock to the region for a grand display of courtship, turning the muddy banks into a vast maternity ward for the next generation. This incredible undertaking by phoenicopterus ruber to breed — building mud nests in a prominent flood zone, finding a mate among a horde of competitors, evading scores of hungry predators — was captured over a two-year period in partnership with the esteemed Cornell Lab of Ornithology. Humorous, offbeat narration by Mexican singer Julieta Venegas, an engrossing score by Bryce Dessner and breathtaking natural photography combine to create a singular wildlife documentary that will make you appreciate the hardy flamingo and the preciousness of life itself. — Javier Chavez, AFI",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/critterfest-flamingos",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ae7029762286",
              "venue_id": "venue_4_star_theater",
              "title": "Los Video Nasties Tour",
              "event_time": "19 September 2026 4:30 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-19T16:30:00",
              "event_date": "2026-09-19",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Synopsis : The H Also Sounds is a letter to neurotypical society, showing that there are other ways to see and feel life. Ahbel shares his perspective and the challenges of entering adulthood as someone with Asperger’s. Falling in love, finding a job, dealing with death are events everyone faces, but not everyone experiences them the same way. Ahbel raises several questions throughout the short film, but the most important one is: Do we live in an inclusive society?",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/los-video-nasties-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2a8ffad2a21e",
              "venue_id": "venue_4_star_theater",
              "title": "I Lost It Over: Body Heat",
              "event_time": "19 September 2026 8:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "With his debut feature, acclaimed writer-director Lawrence Kasdan brilliantly updated the conventions of 1940s film noir for the 1980s, resulting in one of the steamiest and most influential erotic thrillers ever made. On the sultry South Florida coast, lawyer Ned Racine (William Hurt) is drawn into a torrid affair with unhappily married housewife Matty Walker (Kathleen Turner, in a star-making performance)—and it’s not long before they’ve hatched a scheme to murder her wealthy husband. Featuring ingenious plot twists, memorable hard-boiled dialogue, and an atmosphere so evocative you can practically feel the humidity, Body Heat is a languorously seductive tale of greed and desire, one that paved a new path for American crime cinema.",
              "event_types": [
                "film",
                "theater"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/i-lost-it-over-body-heat",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f04be2fc718a",
              "venue_id": "venue_local_edition",
              "title": "Pop Ignition",
              "event_time": "September 19, 2026 8:30 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-09-19T20:30:00",
              "event_date": "2026-09-19",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "8:30—12:30 POP IGNITION: FUNK EDITION  brings the groove to Local Edition — the speakeasy beneath the historic Hearst Building at 691 Market St, San Francisco — on Saturday, Aug 29th. Three sets, 8:30 PM to 12:30 AM.Funkified retro classics and modern hits, served under low lights with a cocktail in hand. Think Chaka Khan, TLC, James Brown, Stevie Wonder, and the kind of basslines that make sitting down feel like a bad decision.FUNK EDITION is led by award-winning singer-songwriter Joyce Lee (lead vocals/keys) and 2× Latin Grammy winner Mike Lazarus (bass), with multi-instrumentalist and jazz professor Simon Keyser Petty and Joe Londeree (drums).Come early, stay late. No Cover",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/gr2lb8h2pe8m9am-4kwyf",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-09-03T12:59:31.047351Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bdad4a0bd380",
              "venue_id": "venue_the_monarch",
              "title": "Anish Kumar",
              "event_time": "19 September 2026 9:30 PM",
              "venue_name": "The Monarch",
              "event_start": "2026-09-19T21:30:00",
              "event_date": "2026-09-19",
              "venue_address": "101 6th St, San Francisco, CA 94103",
              "description": "London-based DJ and producer Anish Kumar has built a cult following with his infectious blend of house, disco, and South Asian sounds,",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Buy Ticket",
              "url": "https://www.eventbrite.com/e/anish-kumar-tickets-1993717173736",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monarch",
                  "source_name": "The Monarch",
                  "fetched_at": "2026-09-03T13:00:26.245791Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monarch|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2068684ae402",
              "venue_id": "venue_cat_club",
              "title": "NEW WAVE CITY",
              "event_time": "September 19, 2026 9:00 PM",
              "venue_name": "Cat Club",
              "event_start": "2026-09-19T21:00:00",
              "event_date": "2026-09-19",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "The First and Foremost 80s Dance Party\n——\n9pm-Afterhours",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.sfcatclub.com/calendar/092124-fj9ap-nxmap-g6yx7-f2z4x-hsb6h-crxth-zsfhk-8c7dx-llgbx-l8ac2-eewge-878h7-97c42-5jyst-5cbt4-2msbm-bzb45-7kmgw-967h8-z3z6y-cn58r-zxted-en3fw",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cat_club",
                  "source_name": "Cat Club",
                  "fetched_at": "2026-09-03T13:24:58.141502Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_549e6ecf824c",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Radio Sofia",
              "event_time": "19 September 2026",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Radio Sofia delivers an instrumental set blending jazz, pop, R&B, and tropicalia world music. Unwind with a glass of wine while taking in their soulful and dynamic performance.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-09-03T13:50:21.930604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0bfaab3515dc",
              "venue_id": "venue_the_riptide",
              "title": "TideFest",
              "event_time": "Sat, Sep 19 • 1:00 PM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-19T13:00:00",
              "event_date": "2026-09-19",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "Eventbrite - The Riptide presents TideFest - Saturday, September 19, 2026 at The Riptide, San Francisco, CA. Find event and ticket information.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "From $0.00",
              "url": "https://www.eventbrite.com/e/tidefest-tickets-1996879903546?aff=ebdssbcategorybrowse",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_eventbrite_oak",
                  "source_name": "Eventbrite OAK",
                  "fetched_at": "2026-09-03T14:11:10.588415Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_6bd2a6b22773",
              "venue_id": "venue_caravan_lounge",
              "title": "Facekicker, American Standard",
              "event_time": "09/19/2026",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-09-19",
              "event_date": "2026-09-19",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "Welcome to The Caravan Lounge THE CARAVAN LOUNGE is a friendly, owner-operated bar located in the heart of downtown San Jose. As well as being one of San Jose’s oldest live music venues, the Caravan provides other fun activities such as karaoke, comedy, burlesque, pool table, and DJ nights. The Caravan is also extremely affordable for those trying to stretch a budget. And let’s not forget the music! All the shows at the Caravan are FREE! Open 7 days a week 2pm – Close “Aside from the obvious draw of affordable libations poured by heavy-handed barkeeps, The Caravan sets itself apart from other no-frills bars as the place to go to see up-and-coming bands. The bar has hosted plenty of local bands’ first shows, and regularly features smaller touring acts. If you’re a music fan always on the lookout for your new favorite group, make sure to pay attention to who is coming to Caravan.” -Metro FEATURED VIDEOS – Go to our YouTube Channel by clicking here to see more… SEPTEMBER 2026 TUES. SEPT 1st- Karaoke with Ronnie Roach WED. SEPT 2nd – The Caravan Lounge Comedy Show hosted by Chelsea Costanza THURS. SEPT 3rd – SWEAT with DJ SNAQ FRI. SEPT 4th – Rebelskamp, Magick Blues Band, TBA SAT. SEPT 5th – Skool Of Sharks TUES. SEPT 8th- Karaoke with Ronnie Roach WED. SEPT 9th – The Caravan Lounge Comedy Show Hosted by Nyoki THURS. SEPT 10th – Shrine Goth DJ Night with Hex Embrace, C_Death, and Owen FRI. SEPT 11th – Circus Of Sin 10 Year Sinnaversary! Hosted By Some Guy SAT. SEPT. 12th – CaveFest II We Love You Curtis Castro! Abysmal Piss, Ominous Ruin, Lost To The Void TUES. SEPT 15th – Karaoke with Ronnie Roach WED. SEPT 16th -The Caravan Lounge Comedy Show Hosted by Ato Walker THURS. SEPT 17th – TBA FRI. SEPT 18th – TBA SAT. SEPT 19th – Facekicker, American Standard, 12 Steps To Nothing TUES. SEPT 22nd – Karaoke with Ronnie Roach WED. SEPT 23rd- The Caravan Lounge Comedy Show hosted by Matt Kennedy THURS. SEPT 24th – Sweethearts DJ Night FRI. SEPT 25th – Ding Mao, Diamantide, Clou",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "FREE",
              "url": "http://s172518151.onlinehome.us/caravan/site/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-09-03T14:20:40.572990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d1a5348ae13c",
              "venue_id": "venue_comstock_saloon",
              "title": "Cliff Myers & Friends",
              "event_time": "2026-09-19T20:00:00",
              "venue_name": "Comstock Saloon",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "155 Columbus Ave, San Francisco, CA 94133",
              "description": "Live music performance",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_comstock_saloon",
                  "source_name": "Comstock Saloon",
                  "fetched_at": "2026-09-03T14:26:10.425617Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_comstock_saloon|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_347636b33f87",
              "venue_id": "venue_ggp_music_concourse",
              "title": "John Coltrane Tribute",
              "event_time": "September 19, 2026  12:00 pm – 4:00 pm",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-09-19T12:00:00",
              "event_date": "2026-09-19",
              "venue_address": "San Francisco, CA 94118",
              "description": "Sep 19 4th Annual Tribute to John Coltrane | A Love Supreme Saxophone Summit September 19, 2026 12:00 pm – 4:00 pm Golden Gate Bandshell 75 Hagiwara Tea Garden Dr San Francisco, CA 94118 + open in Google Maps We’re inviting all John Coltrane lovers to come and celebrate with us. Some of the best Saxophone players in the area will take to the Bandshell stage for a historic performance in tribute to John Coltrane music written by Andrew White. Conductor – Dr. German Gonzalez Charles McNeal Lyle Link Bob Kenmotsu Doug Rowan Dan Gonda Jayne Pettingill Dave Salvator Hal Richards Jean Fineberg Steven Nelson Mike Quigg Joshua Thurston-Milgrom Robert Jackson Deszon Claiborne Laura Klein John Wiitala + JaZzLine Institute Inc. sponsored performances by : Dawan Muhammad Graham Bruce Steve Heckman Add to calendar Google Calendar iCalendar Export .ics file Click to share on facebook (opens in new window) Click to share on x (opens in new window) Copy this page's address to your clipboard Link copied to clipboard Free Concert GoldenGateBandshell Illuminate Live",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://illuminate.org/event/4th-annual-tribute-to-john-coltrane-a-love-supreme-saxophone-summit/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_illuminate",
                  "source_name": "Illuminate",
                  "fetched_at": "2026-09-03T14:32:31.098793Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_3757432ced3d",
              "venue_id": "venue_poor_house_bistro",
              "title": "Terry Hiatt Band",
              "event_time": "2026-09-19T18:00:00",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-09-19T18:00:00",
              "event_date": "2026-09-19",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-09-04T10:11:13.938872Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3bfca1ccdcf7",
              "venue_id": "venue_sailing_goat",
              "title": "Maggie Forti & Three Rivers",
              "event_time": "2026-09-19T16:00:00",
              "venue_name": "Sailing Goat",
              "event_start": "2026-09-19T16:00:00",
              "event_date": "2026-09-19",
              "venue_address": "1900 Stenmark Dr, Richmond, CA 94801",
              "description": "Soulful roots, Americana, and folk-rock performance by Maggie Forti and Three Rivers.",
              "event_types": [
                "live_music",
                "folk",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://www.sailinggoatrestaurant.com/event-details/maggie-forti-three-rivers",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sailing_goat",
                  "source_name": "Sailing Goat",
                  "fetched_at": "2026-09-04T10:13:07.105977Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sailing_goat|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_29288e164c0e",
              "venue_id": "venue_artists_television_access",
              "title": "Psychedelic Cinema",
              "event_time": "2026-09-19T20:00:00",
              "venue_name": "ATA",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "992 Valencia St, San Francisco, CA 94110",
              "description": "Guest curator Kornelia Boczkowska presents an evening exploring the psychedelic state of mind, featuring works by Jordan Belson, Melissa Faivre, Linda Scobie, Dominic Angerame, Richard Tuohy and Dianna Barrie, the premiere of Toney Merritt's Vision Quest Remix, and a live liquid lightshow by Daisy Ascencio.",
              "event_types": [
                "film"
              ],
              "price_info": "$13",
              "url": "https://dothebay.com/events/2026/9/19/other-cinema-psychedelic-cinema",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_artists_television_access",
                  "source_name": "ATA",
                  "fetched_at": "2026-09-04T10:17:33.463128Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_artists_television_access|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_05abeb6bb34e",
              "venue_id": "venue_sevys_aptos",
              "title": "Live Music: Rasquache Liberation Front",
              "event_time": "September 19, Saturday 7:00 PM",
              "venue_name": "Sevy's Bar & Kitchen",
              "event_start": "2026-09-19T19:00:00",
              "event_date": "2026-09-19",
              "venue_address": "7500 Old Dominion Ct, Aptos, CA 95003",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sevys_aptos",
                  "source_name": "Sevy's Bar & Kitchen",
                  "fetched_at": "2026-09-04T10:39:41.919005Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sevys_aptos|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_87aa1dbc377e",
              "venue_id": "venue_henflings",
              "title": "BluZio Smokin' Blues at Henflings Tavern",
              "event_time": "2026-09-19T20:00:00",
              "venue_name": "Henfling's Tavern",
              "event_start": "2026-09-19T20:00:00",
              "event_date": "2026-09-19",
              "venue_address": "9450 Highway 9, Ben Lomond, CA 95005",
              "description": "BluZio brings smokin' blues to the stage at Henflings Tavern.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://www.facebook.com/HenflingsBarNGrill/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_henflings",
                  "source_name": "Henfling's Tavern",
                  "fetched_at": "2026-09-04T10:41:15.215331Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_henflings|2026-09-19",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            }
          ]
        },
        "2026-09-20": {
          "date": "2026-09-20",
          "updated_at": "2026-09-04T10:37:52.929789Z",
          "events": [
            {
              "event_id": "evt_a72560afc3f1",
              "venue_id": "venue_the_independent",
              "title": "DECA JOINS",
              "event_time": "9.20 Show: 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-20T20:00:00",
              "event_date": "2026-09-20",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Taiwanese indie rock band Deca Joins performs their atmospheric and melancholic tracks for a mesmerizing live experience.",
              "event_types": [
                "live_music"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://www.theindependentsf.com/tm-event/deca-joins/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-07T07:54:01.969533Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_independent|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0718b76381c6",
              "venue_id": "venue_mountain_winery",
              "title": "America",
              "event_time": "Sep 20, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-20T19:30:00",
              "event_date": "2026-09-20",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "America The Happy Trails Tour 2026 Sunday, September 20 Doors 5:30PM, Show 7:30PM All Ages to Enter, 21 & Over to Drink The Mountain Winery Buy Tickets Event Info No refunds or exchanges. All shows are rain or shine. Children age 3 and older require a ticket. A child under the age of 3 is considered a lap child and does not require a ticket. For directions, dining, parking, or carpool information, please visit www.mountainwinery.com. For information on how to purchase VIP season tickets including suites and box seats, please visit https://www.mountainwinery.com/vip-seating/ Doors open 2 hours prior to the show time. Seating begins 1 hour prior to the show time. Artist Info The iconic multi-platinum-selling group AMERICA will celebrate their 54th anniversary with a series of tour dates on the “Ride On Tour 2024.” Known for their timeless magic and powerful performances, the Grammy Award-winning perennial classic-rock favorite will draw on their deep catalog of hits including signature song “A Horse With No Name,” a Number One hit on Billboard’s Hot 100 in 1972. On their way to becoming a global household name, AMERICA’s journey found them exploring a wide variety of musical terrain. Their best-known tunes, which also include “I Need You,” “Ventura Highway,” “Don't Cross The River,” “Tin Man,” “Lonely People,” and “Sister Golden Hair” were cornerstones of 1970’s Top 40 and FM rock radio. Yet beyond their impressive catalog of hits, listeners would discover there was always much more to AMERICA than surface perceptions. The combination of melodic pop-rock and folk-jazz elements, slinky Latin-leaning rhythms and impressionistic lyric imagery contrasted well with other more traditional country-rock leanings and highly personal lyrics. AMERICA’s albums--six certified gold and/or platinum, with their first greatest hits collection, History, hitting four plus million in sales--displayed a fuller range of the trio's talents than did their singles. Their material encompassed",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1344815",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-06-02T10:55:16.293558Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5041fdfc230a",
              "venue_id": "venue_california_theatre",
              "title": "Don Giovanni - Opera San José",
              "event_time": "2026-09-20T19:30:00",
              "venue_name": "California Theatre",
              "event_start": "2026-09-20T19:30:00",
              "event_date": "2026-09-20",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "Relive the epic adventure on the big screen as Symphony San Jose performs John Williams's iconic, Oscar-winning score live. This special concert event brings the beloved cinematic masterpiece to life with full orchestral accompaniment.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-06-23T13:09:42.892074Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_symphony_san_jose",
                  "source_name": "Symphony San Jose",
                  "fetched_at": "2026-06-28T03:08:41.619469Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_california_theatre|2026-09-20",
              "run_id": "run_285788e23a8b",
              "run_label": "Don Giovanni - Opera San José, Sep 13 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0247628f418d",
              "venue_id": "venue_the_chapel",
              "title": "Summer Day Party Series",
              "event_time": "sep 20 2pm",
              "venue_name": "The Chapel",
              "event_start": "2026-09-20T14:00:00",
              "event_date": "2026-09-20",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "LOVE SUPREME Summer Day Party Series featuring LS Sound System (Travie Bobbito, King Most, Bella D.) & Friends on The Chapel Outdoor Stage.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$14.84+",
              "url": "https://www.eventim.us/event/LOVE-SUPREME-Summer-Day-Party-Series/697838",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-12T11:45:29.263581Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-07-14T11:02:56.436455Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-08-20T10:25:32.447539Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_chapel|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_eaf9f8318f14",
              "venue_id": "venue_ivy_room",
              "title": "Radiator Hospital",
              "event_time": "Sunday Sep 20 7:00 PM",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-20T19:00:00",
              "event_date": "2026-09-20",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "ivy room presents Radiator Hospital Sun Sep 20 Minimum age: 21 and over Show time: 8:00 PM Doors open: 7:00 PM Purchase tickets Description IVY ROOM PRESENTS SUNDAY SEPT 30Th — RADIATOR HOSPITAL DUSK TBD — Doors 7:00 pm / Show 8:00 pm Advance Tickets Available — IVY ROOM 860 San Pablo Ave, Albany • 21+ — Lineup Radiator Hospital Important Information for Ticket Holders Entry Policy: This is a 21+ event . A valid ID is required for entry. No exceptions. Refund Policy: All sales are final. No refunds or exchanges will be issued. How to Enter (Will Call): Your ID is your ticket! Check in at Will Call upon arrival. VIP & Accessibility: For ADA seating, VIP booth reservations, or bottle service inquiries, please contact us at info@ivyroom.com . Save on Fees: For future events, advance tickets can be purchased at our box office during any live show. Cash only; no service fees.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/188639",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-07-31T12:32:32.572739Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6f2f26f682ce",
              "venue_id": "venue_thee_stork_club",
              "title": "Portrayal of Guilt",
              "event_time": "September 20 2026 7:00PM",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-09-20T19:00:00",
              "event_date": "2026-09-20",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "This show is 21+ Over the last decade, Portrayal of Guilt have solidified themselves as a pillar in the extreme underground music scene. With relentlessly consistent releases like 2023’s orchestral nightmare Devil Music , and year-round world touring with the likes of Deafheaven, Uniform and Pg. 99, POG have unquestionably carved their own path. Defying accurate categorization since formation, the three piece blends elements of black, death and nu metal with crust, screamo, powerviolence and hardcore, with the bands forthcoming LP …The Beginning of The End” continuing to further obscure genre lines. The band takes the unhinged discordance to the next level on album standouts “Ecstasy” and “Human Terror”, with KoRn-like guitar dissonance, punishing death metal lows, and haunting spoken passages confidently riding the line between Life is Peachy and Scum. https://portrayalofguilt.bandcamp.com/music https://www.instagram.com/portrayalofguilt World Peace https://worldfuckingpeace.bandcamp.com/ https://www.instagram.com/worldfuckingpeace NO MAN https://nomanband.bandcamp.com/music https://www.instagram.com/nomanband Loma Prieta https://lomaprietaband.bandcamp.com/album/last https://www.instagram.com/loma_prieta",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20/$22",
              "url": "https://wl.seetickets.us/event/portrayal-of-guilt/701284?afflky=TheeStorkClub",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-08-06T11:16:26.119873Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_331849cedc4d",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Built Like Alaska",
              "event_time": "Sunday September 20\n          2026 3:00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-20T15:00:00",
              "event_date": "2026-09-20",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "americana folk indie rock, Beach Goth/Erie Indie, emo/americana",
              "event_types": [
                "live_music",
                "folk",
                "rock"
              ],
              "price_info": "$20",
              "url": "http://www.bottomofthehill.com/20260920.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-08-09T10:54:41.013216Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_29aaf0a694f2",
              "venue_id": "venue_great_american_music_hall",
              "title": "Meltt",
              "event_time": "sep 20 8pm",
              "venue_name": "Great American",
              "event_start": "2026-09-20T20:00:00",
              "event_date": "2026-09-20",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Goldenvoice Presents... | Low Hum | with Low Hum",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$22/$25",
              "url": "https://wl.seetickets.us/event/meltt/687496?afflky=GreatAmericanMusicHall",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-08-24T10:16:41.496787Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_5a727bf3797e",
              "venue_id": "venue_rickshaw_stop",
              "title": "Solya, Tele Novella",
              "event_time": "sep 20 8pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-09-20T20:00:00",
              "event_date": "2026-09-20",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "all ages; $65 vip; sold out",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$22/$26",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_cb65edb6c8c9",
              "venue_id": "venue_musicians_union_hall",
              "title": "SIMM Series",
              "event_time": "September 20, 2026 7:30 – 9:30pm",
              "venue_name": "Musicians Union Hall",
              "event_start": "2026-09-20T19:30:00",
              "event_date": "2026-09-20",
              "venue_address": "116 9th St, San Francisco, CA 94103",
              "description": "Edgetone Records celebrates 35 years on planet Earth with a series of showcase performances in the San Francisco Bay Area.7:30pm Scott Looney - hyperpiano8:30pm Noertker's Moxie - CD release for the Antwerp Diaries - Annelise Zamula - woodwinds; Eli Knowles - drums; Bill Noertker - contrabass, compositions",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://calendar.google.com/calendar/event?eid=MmkwajAydnU4YmEwZThja251Nm85dmlnMjZfMjAyNjA5MjFUMDIzMDAwWiA2NDJ1dTMwZGFycnExNXV1bDFjOTIyb2kyMEBn",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_outsound",
                  "source_name": "Outsound",
                  "fetched_at": "2026-08-21T11:15:31.057227Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-31T10:04:42.136151Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_musicians_union_hall|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_1019fbdb974b",
              "venue_id": "venue_the_riptide",
              "title": "Meteo Peligroso Band (funk, soul, jazz and blues)",
              "event_time": "Sunday, September 20 7:30 PM - 10:30 PM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-20T19:30:00",
              "event_date": "2026-09-20",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "This is going to be dangerously good",
              "event_types": [
                "live_music",
                "rnb_soul_funk",
                "jazz"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d435bbebf2b7",
              "venue_id": "venue_crepe_place",
              "title": "Grateful Sunday with Matt Hartle",
              "event_time": "2026-09-20",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-20T20:00:00",
              "event_date": "2026-09-20",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "https://thecrepeplace.com/shows-list/e9jf25je6nywl5hkyax2befwarhrzl",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5975cceead23",
              "venue_id": "venue_abbott_square",
              "title": "SALSA BY THE SEA AFTERPARTY",
              "event_time": "Sunday, September 20, 2026 6:00 PM - 10:00 PM",
              "venue_name": "Abbott Square Market",
              "event_start": "2026-09-20T18:00:00",
              "event_date": "2026-09-20",
              "venue_address": "725 Front St, Santa Cruz, CA 95060",
              "description": "Every Sunday evening join us for the Salsa by The Sea Afterparty. Featuring various local DJ’s.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.abbottsquaremarket.com/events/salsa-by-the-sea-afterparty-1-jb89k-k8j3p-5ace6-sm7rs-83agk-h7bn9",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_abbott_square",
                  "source_name": "Abbott Square Market",
                  "fetched_at": "2026-08-22T12:39:51.694804Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_abbott_square|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fb28d17e5dc3",
              "venue_id": "venue_verdi_club",
              "title": "Mucha Salsa+",
              "event_time": "2026-09-20T18:30:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-09-20T18:30:00",
              "event_date": "2026-09-20",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "latin_world",
                "dance"
              ],
              "price_info": "",
              "url": "https://www.verdiclub.net/events-calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-08-22T14:55:24.428239Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_verdi_club|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_32ace37ea6d1",
              "venue_id": "venue_dance_mission",
              "title": "Entre Mucho Machismo Hay Pocos Machos",
              "event_time": "2026-09-20 2026-09-19",
              "venue_name": "Dance Mission Theater",
              "event_start": "2026-09-20",
              "event_date": "2026-09-20",
              "venue_address": "3316 24th St, San Francisco, CA 94110",
              "description": "Presented by Rogelio López & Dancers, this dance theater production follows a queer Mexican folklórico dancer's journey of romance and self-love.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dance_mission",
                  "source_name": "Dance Mission Theater",
                  "fetched_at": "2026-08-22T15:02:23.569813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dance_mission|2026-09-20",
              "run_id": "run_217875807028",
              "run_label": "Entre Mucho Machismo Hay Pocos Machos, Sep 18 – Sep 20",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c7b6d4a1044b",
              "venue_id": "venue_bayfront_theater",
              "title": "La Vida Loca",
              "event_time": "2026-09-20",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-09-20",
              "event_date": "2026-09-20",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "BATS Improv presents: La Vida Loca",
              "event_types": [
                "comedy"
              ],
              "price_info": "Not specified",
              "url": "https://www.improv.org/shows",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-08-22T15:11:24.975133Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-09-20",
              "run_id": "run_1fe8979180b7",
              "run_label": "La Vida Loca, Sep 19 – Sep 26",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6a263e6d407b",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Alice for Wonderland",
              "event_time": "2026-09-20",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-20",
              "event_date": "2026-09-20",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-20",
              "run_id": "run_304a2c902844",
              "run_label": "Alice for Wonderland, Aug 22 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_16a21da87ac1",
              "venue_id": "venue_roaring_camp",
              "title": "Roaring Camp: Roarin’ The Redwoods Car Show",
              "event_time": "2026-09-20 September 20 @ 9:00 am - 3:00 pm",
              "venue_name": "Roaring Camp Railroads",
              "event_start": "2026-09-20T09:00:00",
              "event_date": "2026-09-20",
              "venue_address": "5401 Graham Hill Rd, Felton, CA 95018",
              "description": "Head to Roaring Camp Railroads to see a non-judged show of classic, muscle cars, hot rods truck and more from 1975 and older.  Enjoy Roaring Camp’s western themed town, have […]",
              "event_types": [
                "community"
              ],
              "price_info": "FREE",
              "url": "https://www.santacruz.org/upcoming-event/roaring-camp-roarin-the-redwoods-car-show/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_visit_santa_cruz_county",
                  "source_name": "Visit Santa Cruz County",
                  "fetched_at": "2026-08-22T18:34:05.859446Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_roaring_camp|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_15403f60b377",
              "venue_id": "venue_park_hall_ben_lomond",
              "title": "The Addams Family",
              "event_time": "2026-09-20",
              "venue_name": "Park Hall",
              "event_start": "2026-09-20T20:00:00",
              "event_date": "2026-09-20",
              "venue_address": "9400 Mill St, Ben Lomond, CA 95005",
              "description": "The Addams Family theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://mctshows.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_park_hall_ben_lomond",
                  "source_name": "Park Hall",
                  "fetched_at": "2026-08-22T19:38:45.882590Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_park_hall_ben_lomond|2026-09-20",
              "run_id": "run_8d42d89c5c45",
              "run_label": "The Addams Family, Sep 18 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2c2e55699bb8",
              "venue_id": "venue_park_hall_ben_lomond",
              "title": "Rumors",
              "event_time": "2026-09-20T14:00:00",
              "venue_name": "Park Hall",
              "event_start": "2026-09-20T14:00:00",
              "event_date": "2026-09-20",
              "venue_address": "9400 Mill St, Ben Lomond, CA 95005",
              "description": "A comedy by Neil Simon, directed by Marnae Taylor. Charley, the deputy mayor of New York, and his wife Myra Brock, on the evening of their tenth wedding anniversary, had an elegant dinner party which goes histrically wrong. Four couples arrive expecting a night of sophistication—only to discover the host has had a terrible mishap and his wife is missing. Desperate to cover up the scandal, they spin wilder and wilder stories, turning confusion into chaos as rumors fly faster than champagne corks. With a niche fit, a whiplash, mitigated jealousy, a recurring back spasm, comedy ensues. Brimming with razor-sharp wit, slapstick mishaps, and Simon's trademark charm, Rumors is a laugh-out-loud comedy that proves the truth may be the funniest thing of all.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "",
              "url": "https://mctshows.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_park_hall_ben_lomond",
                  "source_name": "Park Hall",
                  "fetched_at": "2026-08-22T19:38:45.882590Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_park_hall_ben_lomond|2026-09-20",
              "run_id": "run_b17f8875ebd5",
              "run_label": "Rumors, Sep 18 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e5eaf0b7a718",
              "venue_id": "venue_tommy_ts",
              "title": "CINDY KAZA",
              "event_time": "Sept 20th",
              "venue_name": "Tommy T's",
              "event_start": "2026-09-20",
              "event_date": "2026-09-20",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "CINDY KAZA\nSept 20th\nTickets – Video",
              "event_types": [
                "comedy"
              ],
              "price_info": "Tickets",
              "url": "https://tommyts-com.seatengine.com/events/137830",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-08-22T21:57:38.329553Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_407db44c885b",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Little Shop of Horrors",
              "event_time": "2026-09-20",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-09-20",
              "event_date": "2026-09-20",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Book & Lyrics by Howard Ashman, Music by Alan Menken. Based on the film by Roger Corman, Screenplay by Charles Griffith. Directed by Ben Villegas Randle, Musical Direction by Jad Bernardo, Choreography by Leslie Waggoner",
              "event_types": [
                "theater",
                "live_music"
              ],
              "price_info": "",
              "url": "https://nctcsf.org/event/little-shop/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-08-26T11:06:39.262369Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-09-20",
              "run_id": "run_5315ef200ae4",
              "run_label": "Little Shop of Horrors, Sep 12 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_83a18c9f8ed8",
              "venue_id": "venue_toyota_pavilion",
              "title": "Rob Zombie & Marilyn Manson with The Hu & Orgy",
              "event_time": "2026-09-20T18:15:00",
              "venue_name": "Toyota Pavilion at Concord",
              "event_start": "2026-09-20T18:15:00",
              "event_date": "2026-09-20",
              "venue_address": "2000 Kirker Pass Rd, Concord, CA 94521",
              "description": "Shock rock powerhouses Rob Zombie and Marilyn Manson bring a heavy metal co-headlining show to Toyota Pavilion at Concord with special guests The Hu and Orgy. The concert delivers a dark, high-energy night of theatrical hard rock.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.livenation.com/event/G5vYZ9krJg-zK/rob-zombie-marilyn-manson-with-the-hu-orgy",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_toyota_pavilion",
                  "source_name": "Toyota Pavilion at Concord",
                  "fetched_at": "2026-08-26T11:41:34.951729Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_toyota_pavilion|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_4b9f8479c627",
              "venue_id": "venue_sc_mountain_brewing",
              "title": "Monthly Girls Rock Ride - September 20",
              "event_time": "2026-09-20T09:00:00",
              "venue_name": "Santa Cruz Mountain Brewing",
              "event_start": "2026-09-20T09:00:00",
              "event_date": "2026-09-20",
              "venue_address": "402 Ingalls St #27, Santa Cruz, CA 95060",
              "description": "Monthly mountain bike ride starting and ending at Santa Cruz Mountain Brewing, featuring group rides for all skill levels followed by food, drinks, and socializing.",
              "event_types": [
                "sports",
                "community"
              ],
              "price_info": "Free",
              "url": "https://www.girlsrock-mtb.com/rides-events/monthly-girls-rock-ride-september-20",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sc_mountain_brewing",
                  "source_name": "Santa Cruz Mountain Brewing",
                  "fetched_at": "2026-08-27T10:33:09.334606Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sc_mountain_brewing|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_d9c4e913150b",
              "venue_id": "venue_guild_theatre",
              "title": "The Texas Headhunters",
              "event_time": "SEP\n20\n8:00 PM",
              "venue_name": "Guild Theatre",
              "event_start": "2026-09-20T20:00:00",
              "event_date": "2026-09-20",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "DOORS OPEN: 7:00 PM • SHOW: 8:00 PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.guildtheatre.com/shows/the-texas-headhunters-20-sep",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-08-28T10:40:15.787828Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_guild_theatre|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d38659bfe056",
              "venue_id": "venue_the_freight__salvage",
              "title": "Rumi's Caravan",
              "event_time": "2026-09-20T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-20T19:00:00",
              "event_date": "2026-09-20",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Login View Cart Time remaining: 00:00 Activate Code Your cart has expired Your order contained expired items and your shopping cart has been emptied. Close Details Sunday, September 20, 2026 7:30PM Rumi’s Caravan Returns to Berkeley 2026 Rumi's Caravan Rumi says, “Ours is not a caravan of despair.” We are here to share the Oral Tradition and revive the Soul of the World! For over twenty years, Rumi’s Caravan has offered an improvised poetic conversation with music, quoting from Rumi, Hafiz, Mary Oliver, Kabir, Wendell Berry, Neruda, Rilke, Robert Bly, Yeats, Naomi Shehab Nye, William Stafford, Maya Angelou, Leonard Cohen, Seamus Heaney, Denise Levertov, Antonio Machado, May Sarton and others. The conversation can range from the heights of inspiration and ecstasy to the depths of grief, and back again, but always with images of beauty. Dress lavishly! We offer this treasury of words to meet and inspire the souls of the audience. All proceeds from tonight’s performance will support the work of the Middle East Children’s Alliance . Read More Hide View Full Calendar Please Note: This event is a rental, not a Freight presentation. Tickets for this rental event are not eligible for any Freight discounts or donor benefits. Advance Tickets: $30.00 (includes all fees); Day of Show Tickets: $35.00 (includes all fees) Doors: 7:00PM; Show: 7:30PM , for Purchase items Available Groups Select Other General Admission Please select a group to display sections. Choose an available section to see ticket options Quantity for General Admission General Admission $30.00 $25.00 ticket + $5.00 fees 0 1 2 3 4 5 6 7 8 9 10 Quantity General Admission $30.00 0 1 2 3 4 5 6 7 8 9 10 Additional items Americans with Disabilities Act Accessible Seating Please note that Americans with Disabilities Act accessible seating is only to be reserved for guests with disabilities and their companions. By purchasing these tickets, you represent that you or a member of your party has a disability that requires",
              "event_types": [
                "literary"
              ],
              "price_info": "$30/$35\n(INCLUDES ALL FEES)",
              "url": "https://secure.thefreight.org/16039/16041",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a8a5c5b87eed",
              "venue_id": "venue_sfjazz_miner",
              "title": "Branford Marsalis & Dianne Reeves",
              "event_time": "2026-09-20 3:00 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-09-20T15:00:00",
              "event_date": "2026-09-20",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Saxophone great and NEA Jazz Master Branford Marsalis and his superlative quartet are joined by fellow NEA Jazz Master and jazz’s greatest vocalist, Dianne Reeves , for a week devoted to the immortal music of John Coltrane, in honor of the centennial of his birth. Saxophonist Branford Marsalis is one of the most inﬂuential and revered ﬁgures in contemporary music. The NEA Jazz master, three-time Grammy Award winner, and Tony and EMMY Award nominee is equally at home performing concertos with symphony orchestras and sitting in with members of the Grateful Dead, but the core of his musical universe remains the Branford Marsalis Quartet. After more than three decades of existence with minimal personnel changes, this celebrated ensemble is revered for its uncompromising interpretation of a kaleidoscopic range of both original compositions and jazz and popular classics. The Branford Marsalis Quartet and Dianne Reeves will release a tribute album which revisits Coltrane’s seminal 1963 collaboration with Johnny Hartman. Originally recorded at Rudy Van Gelder’s studio in March of 1963, John Coltrane and Johnny Hartman was a sublime showcase for Coltrane, McCoy Tyner, Jimmy Garrison, and Elvin Jones, who gave remarkable depth and sensitivity to a selection of standards including Irving Berlin’s “They Say It’s Wonderful,” Guy Wood’s “My One and Only Love,” and the definitive version of Billy Strayhorn’s “Lush Life.” Bringing the songs to life was the distinctive, evocative baritone of crooner Johnny Hartman, who was the only vocalist Coltrane ever collaborated with. Interpreting the songs with her own singular gifts, Reeves is a five-time GRAMMY winner who is accurately called “The most admired jazz diva since the heyday of Sarah Vaughan, Ella Fitzgerald and Billie Holiday” ( NY Times ). She is an artist who embodies the music’s enduring values of elegance, class, and improvisational poise, with an innate feel for swing.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/branford-marsalis-and-dianne-reeves-celebrate-john-coltrane/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_8db60e26146b",
              "venue_id": "venue_sfjazz_lab",
              "title": "MYRA MELFORD SPLASH TRIO",
              "event_time": "2026-09-20 6:00 PM",
              "venue_name": "SFJAZZ Lab",
              "event_start": "2026-09-20T18:00:00",
              "event_date": "2026-09-20",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "w/ Ches Smith & Michael Formanek",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/myra-melford-splash-trio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_lab|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_286e4d31fb74",
              "venue_id": "venue_temescal_arts_center",
              "title": "Improvisation Workshop - First Tuesdays",
              "event_time": "2026-09-20T20:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-09-20T20:00:00",
              "event_date": "2026-09-20",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Improvisation is the key - hosted by Lewis Jordan. Open Workshop and Playground in free improvisation. Spontaneously Assembled Small Groups will collaborate. Come to listen, to be heard, to see, to move. Inviting musicians, poets, dancers, to a non-hierarchical setting to improvise together. Spontaneously composing or conducting, we'll be on a quest for fire.",
              "event_types": [
                "workshop",
                "experimental"
              ],
              "price_info": "Donations encouraged",
              "url": "https://www.temescalartcenter.org/tacmusic.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-08-28T14:09:19.773505Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-09-20",
              "run_id": "run_16a4ae4ccea6",
              "run_label": "Improvisation Workshop - First Tuesdays, Sep 1 – Dec 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_46d99e406439",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-09-20",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-09-20",
              "event_date": "2026-09-20",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-09-20",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_46227ca8adb4",
              "venue_id": "venue_the_cats",
              "title": "Josh Skelly",
              "event_time": "2026-09-20 6:00 PM – 8:00 PM",
              "venue_name": "The Cats",
              "event_start": "2026-09-20T18:00:00",
              "event_date": "2026-09-20",
              "venue_address": "17533 Santa Cruz Hwy, Los Gatos, CA 95033",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.thecatslosgatos.com/event/josh-skelly-3/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_cats",
                  "source_name": "The Cats",
                  "fetched_at": "2026-08-28T15:00:29.173610Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_cats|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3a70eae82f4c",
              "venue_id": "venue_old_first_concerts",
              "title": "Noël Wan: Les fleurs du mal",
              "event_time": "2026-09-20T16:00:00",
              "venue_name": "Old First Concerts",
              "event_start": "2026-09-20T16:00:00",
              "event_date": "2026-09-20",
              "venue_address": "1751 Sacramento St, San Francisco, CA 94109",
              "description": "Award-winning harpist Noël Wan presents her solo program, 'Les fleurs du mal,' which pairs late Romantic compositions with exquisite 21st-century works. Through her unique artistic voice, she conjures a tangled, efflorescent world of decadence and beauty on the harp.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://www.oldfirstconcerts.org/performance/noel-wan-les-fleurs-du-mal-sunday-september-20-at-4-pm/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_old_first_concerts",
                  "source_name": "Old First Concerts",
                  "fetched_at": "2026-08-28T15:46:04.694996Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_old_first_concerts|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7ae537a01a1f",
              "venue_id": "venue_odc_theater",
              "title": "The Machaut Project: Devotion & Desire",
              "event_time": "9/20 2:00PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-09-20T14:00:00",
              "event_date": "2026-09-20",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "classical",
                "live_music",
                "theater"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM0000042vaz2AA",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-08-28T16:07:20.992529Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_89e52aa2660f",
              "venue_id": "venue_sfmoma",
              "title": "Feeling First: A Matisse Study",
              "event_time": "Sunday, Sep 20, 2026 | 2 p.m.",
              "venue_name": "SFMoma",
              "event_start": "2026-09-20T14:00:00",
              "event_date": "2026-09-20",
              "venue_address": "151 Third St, San Francisco, CA 94103",
              "description": "WORKSHOP",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.sfmoma.org/event/watercolor-workshop-feeling-first-a-matisse-study-9-20/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sfmoma",
                  "source_name": "SFMoma",
                  "fetched_at": "2026-08-28T16:39:30.693329Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfmoma|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_61905ac4b069",
              "venue_id": "venue_omca",
              "title": "Alice Street Screening",
              "event_time": "2026-09-20T13:00:00",
              "venue_name": "OMCA",
              "event_start": "2026-09-20T13:00:00",
              "event_date": "2026-09-20",
              "venue_address": "1000 Oak St, Oakland, CA 94607",
              "description": "This month’s Spotlight Sundays highlights the story and spirit of Oakland as a nexus of community belonging and resilience in the face of rapid gentrification, themes central to Mildred Howard’s artwork and practice. We will screen the documentary Alice Street, directed by Spencer Wilkinson, which narrates how a neighborhood mural on 14th and Alice Street catalyzed a multiracial coalition to rally in protection of cultural arts and livability in Oakland.",
              "event_types": [
                "film"
              ],
              "price_info": "Free",
              "url": "https://museumca.org/event/spotlight-sundays-alice-street-screening-with-malonga-arts-dance-and-drums/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_omca",
                  "source_name": "OMCA",
                  "fetched_at": "2026-08-28T16:49:24.654558Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_omca|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b08c577c6a8c",
              "venue_id": "venue_meyhouse_san_ramon",
              "title": "Ava Pakiam & Cole Anderson",
              "event_time": "Sun, Sep 20 5pm",
              "venue_name": "Meyhouse San Ramon",
              "event_start": "2026-09-20T17:00:00",
              "event_date": "2026-09-20",
              "venue_address": "6000 Bollinger Canyon Rd, San Ramon, CA 94583",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.meyhousejazz.com/event-details/meyhouse-classical-ava-pakiam-cole-anderson-sonic-highways-sun-9-20-5pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_meyhouse_san_ramon",
                  "source_name": "Meyhouse San Ramon",
                  "fetched_at": "2026-08-28T17:52:26.464636Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_meyhouse_san_ramon|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8c58f8fda958",
              "venue_id": "venue_historic_bal_theatre",
              "title": "MISSIONED SOULS NORTH AMERICA TOUR 2026",
              "event_time": "Sunday, Sep 20 Show: 5:00 PM",
              "venue_name": "Historic BAL Theatre",
              "event_start": "2026-09-20T17:00:00",
              "event_date": "2026-09-20",
              "venue_address": "14808 E 14th St, San Leandro, CA 94578",
              "description": "MISSIONED SOULS NORTH AMERICA TOUR 2026 Sun | Sep 20 Show: 5:00 pm Buy Tickets About This Event Experience the viral rock sensation Missioned Souls family live on stage for an unforgettable night of music, passion, and family energy. Hailing from Cebu City, Philippines, this extraordinarily talented family band has captured the hearts of millions online with exciting covers of classic rock anthems and contemporary pop rock hits. Featuring parents Secan and Sheena alongside their four talented children, Missioned Souls delivers powerful vocals, intricate guitar solos, legendary drum grooves, and the energy of a stadium rock concert in an intimate theater setting. Do not miss this special evening of incredible musicianship, family chemistry, and timeless rock music. no outside food or drinks no large bags or purses see full policies at out website + Google Calendar",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.baltheatre.com/tm-event/missioned-souls-north-america-tour-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_historic_bal_theatre",
                  "source_name": "Historic BAL Theatre",
                  "fetched_at": "2026-08-28T18:55:07.595027Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_historic_bal_theatre|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_567567db1186",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Chamber Music at Davies Symphony Hall",
              "event_time": "Sunday, Sep 20, 2026 | 2:00 pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-09-20T14:00:00",
              "event_date": "2026-09-20",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "A cookie is a small piece of data (text file) that a website – when visited by a user – asks your browser to store on your device in order to remember information about you, such as your language preference or login information. Those cookies are set by us and called first-party cookies. We also use third-party cookies – which are cookies from a domain different than the domain of the website you are visiting – for our advertising and marketing efforts. More specifically, we use cookies and other tracking technologies for the following purposes:",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "LEARN MORE",
              "url": "https://www.sfsymphony.org/Buy-Tickets/2026-27/Chamber-DSH-Sep",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-08-28T19:38:14.129031Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_da033bcaee53",
              "venue_id": "venue_cry_baby",
              "title": "The Market Arts Festival",
              "event_time": "2026-09-20T07:00:00.000Z",
              "venue_name": "Cry Baby",
              "event_start": "2026-09-20T07:00:00",
              "event_date": "2026-09-20",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "No Steps Backwards Presents The Market Arts Festival - 5 Year Anniversary! w/ DJ Sandio + DJ Rell + JC-Caution + J-Blenz Sun Sep 20, 2026 1:00 PM All Ages Buy Tickets Additional Info The Market is a Community Festival born in East Oakland where we bring together Local DJ's, Artists, & Vendors. You can expect great music, raffles, giveaways, hand-crafted goods and delicious food! Celebrate our 5-Year Anniversary with us Sunday, September 20th from 1pm-6pm Sounds by DJ Sandio + DJ Rell + JC-Caution + J-Blenz + Google Calendar Related Events Buy Tickets Sat Aug 8 ¡DESMADRE! w/ DJ Sandio + Ethan Dreams + Earth & PATIO TAKEOVER by Bussdown Collective Buy Tickets Fri Sep 4 LIFE OF THE PARTY - Oakland's Top First Friday Party! Buy Tickets Fri Oct 2 LIFE OF THE PARTY - Oakland's Top First Friday Party!",
              "event_types": [
                "dj_party",
                "art",
                "festival"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://crybaby.live/tm-event/the-market-arts-festival-5-year-anniversary-w-dj-sandio-dj-rell-jc-caution-j-blenz/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-08-28T19:56:15.638282Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cry_baby|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_532d58c0e65e",
              "venue_id": "venue_castro_theater",
              "title": "LANE 8",
              "event_time": "September 20, 2026 6:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-20T18:00:00",
              "event_date": "2026-09-20",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "With five albums under his belt, his dreamy melodic sound has drawn influence from tough 90s hip hop, the sugar rush of the EDM heyday, the sleek European techno of labels like Kompakt, oddball electronica, the occasional dash of neo-trance noodles and his boyhood love of Pink Floyd – to mark just a few of his influences.",
              "event_types": [
                "electronic",
                "live_music"
              ],
              "price_info": "Sold Out!",
              "url": "https://thecastro.com/events/lane-8-260920",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-08-28T20:48:00.221268Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8e94c3ec98b7",
              "venue_id": "venue_exploratorium",
              "title": "Daytime Members-Only Hours",
              "event_time": "2026-09-20",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-20",
              "event_date": "2026-09-20",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Please consider joining us today ! Members are the backbone of our organization and help ensure the continuity of our mission to create inquiry-based experiences that transform learning worldwide. We can’t wait to see you at the museum.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/member-hours",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-20",
              "run_id": "run_e38dfc952011",
              "run_label": "Daytime Members-Only Hours, Aug 30 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_97bd6e7ff62b",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Crucial Reggae Sundays | September 20",
              "event_time": "2026-09-20T16:30:00",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-09-20T16:30:00",
              "event_date": "2026-09-20",
              "venue_address": "San Francisco, CA 94118",
              "description": "Crucial Reggae Sundays outdoor dance party featuring DJ Guid8nce, DJ Sep, and Irie Dole.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://illuminate.org/event/crucial-reggae-sundays-september-20/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_illuminate_bandshell",
                  "source_name": "Illuminate Bandshell",
                  "fetched_at": "2026-08-28T22:20:33.560084Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-08-30T10:14:46.192640Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_13916f379136",
              "venue_id": "venue_levis_stadium",
              "title": "MIAMI DOLPHINS VS. SAN FRANCISCO 49ERS",
              "event_time": "2026-09-20T13:25:00",
              "venue_name": "Levis Stadium",
              "event_start": "2026-09-20T13:25:00",
              "event_date": "2026-09-20",
              "venue_address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
              "description": "The San Francisco 49ers go head-to-head against the Miami Dolphins in a thrilling NFL regular-season game at Levi's Stadium.",
              "event_types": [
                "sports"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://levisstadium.com/event/dolphins-vs-49ers-week-2-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_levis_stadium",
                  "source_name": "Levis Stadium",
                  "fetched_at": "2026-08-28T23:07:52.237656Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_levis_stadium|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_043f1caeb169",
              "venue_id": "venue_rhythmix",
              "title": "The Locals: Opening Reception",
              "event_time": "2026-09-20T18:00:00",
              "venue_name": "Rhythmix",
              "event_start": "2026-09-20T18:00:00",
              "event_date": "2026-09-20",
              "venue_address": "2513 Blanding Ave, Alameda, CA 94501",
              "description": "Opening reception for \"The Locals\" exhibit at K Gallery. Exhibit dates listed as September 11 to October 25, 2026.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://www.rhythmix.org/upcoming-exhibits/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rhythmix",
                  "source_name": "Rhythmix",
                  "fetched_at": "2026-08-28T23:14:01.025318Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rhythmix|2026-09-20",
              "run_id": "run_566a8f02098a",
              "run_label": "The Locals: Opening Reception, Sep 11 – Oct 25",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_fb9a2b94e0be",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-09-20",
              "venue_name": "De Young",
              "event_start": "2026-09-20",
              "event_date": "2026-09-20",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-20",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4792964cb068",
              "venue_id": "venue_punch_line",
              "title": "CAPTIVATE THROUGH COMEDY 201 GRADUATION SHOW",
              "event_time": "Sep 20, 2026 4:00 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-20T16:00:00",
              "event_date": "2026-09-20",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Celebrate the newest stand-up talent as graduating students from the intermediate Captivate Through Comedy 201 course take the Punch Line stage. These rising comedians demonstrate their refined jokes and stage presence in a showcase performance.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/captivate-through-comedy-201-graduation-show-san-francisco-california-09-20-2026/event/1C006503E0679704",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_777de795e798",
              "venue_id": "venue_punch_line",
              "title": "S. F. COMEDY SHOWCASE",
              "event_time": "Sep 20, 2026 7:00 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-20T19:00:00",
              "event_date": "2026-09-20",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "This long-running weekly showcase at the Punch Line features a dynamic lineup of the San Francisco Bay Area's best up-and-coming and established stand-up comedians.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/s-f-comedy-showcase-san-francisco-california-09-20-2026/event/1C0064B33B685239",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_90d82bef7016",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "SAMMY OBEID",
              "event_time": "Sun Sep 20, 2026 4:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-09-20T16:00:00",
              "event_date": "2026-09-20",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Clever and analytical comedian Sammy Obeid delivers his signature blend of math-infused wit and smart stand-up.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/sammy-obeid-13-with-parental-supervision-san-francisco-california-09-20-2026/event/1C0064C2BA04A2BB",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c6acc30dea97",
              "venue_id": "venue_dresher_ensemble_studio",
              "title": "Glissando Flute Project",
              "event_time": "September 20 @ 7:30 pm - 9:30 pm",
              "venue_name": "Dresher Ensemble Studio",
              "event_start": "2026-09-20T19:30:00",
              "event_date": "2026-09-20",
              "venue_address": "2201 Poplar St, Oakland, CA 94607",
              "description": "DIANE GRUBBE premieres works by Steve Adams, Kyle Bruckmann, Matt Ingalls, BRENT MILLER, Wendy Reid and MONICA SCOTT written for Robert Dick’s invention, the “Glissando Headjoint®.”Composer/performer MARGUERITE BROWN, presents tuning to, a solo performance exploring the electric guitar as a celestial body using a curated set of planetary tuning forks, hardware, and unconventional performance techniques.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://dresherensemble.org/event/marguerite-browndiane-grubbe-glissano-flute-project/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_paul_dresher_ensemble",
                  "source_name": "Paul Dresher Ensemble",
                  "fetched_at": "2026-08-30T10:03:08.160871Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-31T10:04:42.136151Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dresher_ensemble_studio|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_2c6d374a1e6f",
              "venue_id": "venue_shapeshifters",
              "title": "Gravitational Lensing: Feminist Film Dialogues",
              "event_time": "2026-09-20",
              "venue_name": "Shapeshifters",
              "event_start": "2026-09-20",
              "event_date": "2026-09-20",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "Program 17: Family Portraits/Relational Exercises includes a spectrum of diaristic films—from uncanny documentary to autobiographical re-enactments—that manifest different ways filmmakers choose to represent their relationships to family and, more broadly, to home (both literal and conceptual) through cinematic language.",
              "event_types": [
                "film"
              ],
              "price_info": "San Francisco Cinematheque",
              "url": "https://sfcinematheque.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shapeshifters",
                  "source_name": "Shapeshifters",
                  "fetched_at": "2026-08-30T10:04:33.112973Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-09-20",
              "run_id": "run_8afbca984fe1",
              "run_label": "Gravitational Lensing: Feminist Film Dialogues, Sep 9 – Nov 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e61571ceb534",
              "venue_id": "venue_berkeley_piano_club",
              "title": "Impossible Inventions",
              "event_time": "Sunday, Sep 20  4:00 PM",
              "venue_name": "Berkeley Piano",
              "event_start": "2026-09-20T16:00:00",
              "event_date": "2026-09-20",
              "venue_address": "2724 Haste St, Berkeley, CA 94704",
              "description": "Kick off the season with music that looks toward the future. Left Coast Chamber Ensemble celebrates a new generation of composers with its Pathways Program, featuring world premieres from emerging artists alongside Paul Novak’s impossible inventions, winner of Left Coast’s 2025 Composition Contest. The program also includes Thea Musgrave ’s atmospheric In the Still of the Night and Mendelssohn ’s radiant String Quartet No. 1 in E-flat major —pairing youthful experimentation and fresh musical voices with the brilliance of a beloved chamber music masterwork.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Price:\n$20 tickets ($12 for Supermusers)",
              "url": "https://www.groupmuse.com/events/16978-left-coast-chamber-ensemble-presents-impossible-inventions",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_groupmuse",
                  "source_name": "Groupmuse",
                  "fetched_at": "2026-08-30T10:42:11.507915Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_berkeley_piano_club|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_e9890a4214ab",
              "venue_id": "venue_temescal_arts_center",
              "title": "Geist and the Sacred Ensemble",
              "event_time": "9/20/2026 6:00 PM",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-09-20T18:00:00",
              "event_date": "2026-09-20",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Geist and the Sacred Ensemble (WA)Leila Abdul-RaufASOMC Domi/Jordan Blankenship/K Francis Messer and Kaitlin McSweeneydoors 6pm, show 6:30pm",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23363",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-31T10:04:42.136151Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_9eaf51253203",
              "venue_id": "venue_sfjazz_miner",
              "title": "Myra Melford Splash Trio",
              "event_time": "9/20/2026 6:00 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-09-20T18:00:00",
              "event_date": "2026-09-20",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Myra Melford Splash Trio w/ Ches Smith & Michael FormanekTwo shows: 6:00 and 7:30.Tickets: https://www.sfjazz.org/tickets/productions/26-27/myra-melford-splash-trio/",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: https://www",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23380",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-31T10:04:42.136151Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_c20f692aa689",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "THE LIVING DAYLIGHTS, PINFALL, MIFFED",
              "event_time": "Sun Sep 20 3:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-20T15:00:00",
              "event_date": "2026-09-20",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "21+, $12.00",
              "url": "https://wl.seetickets.us/event/the-living-daylights-pinfall-miffed/703641?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-08-31T12:12:52.447528Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fade60b458fa",
              "venue_id": "venue_peacock_lounge",
              "title": "Evening Mixer",
              "event_time": "2026-09-20T19:00:00",
              "venue_name": "Peacock Lounge",
              "event_start": "2026-09-20T19:00:00",
              "event_date": "2026-09-20",
              "venue_address": "552 Haight St, San Francisco, CA 94117",
              "description": "Social mixer event with live music",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "Not specified",
              "url": "https://sfpeacock.org/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_peacock_lounge",
                  "source_name": "Peacock Lounge",
                  "fetched_at": "2026-08-31T12:21:32.216643Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_peacock_lounge|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cd6f9b69208d",
              "venue_id": "venue_winters",
              "title": "Taylor Kingman/Stoneteeth",
              "event_time": "2026-09-20T20:00:00",
              "venue_name": "Winters",
              "event_start": "2026-09-20T20:00:00",
              "event_date": "2026-09-20",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "Live music performance featuring Taylor Kingman and Stoneteeth.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-08-31T12:39:12.063314Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_winters|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_4cb61bc35465",
              "venue_id": "venue_presidio_theater",
              "title": "Chitresh Das Dance Company:  Invoking the River",
              "event_time": "SEP 20, 2026",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-09-20T19:30:00",
              "event_date": "2026-09-20",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "See the Ticketing Policies for all shows ticketed through the Presidio Theatre Box Office. Please note, if a show is ticketed by a third-party vendor these policies do not apply.",
              "event_types": [
                "dance",
                "indian_classical"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.presidiotheatre.org/show-details/chitresh-das-dance-company-invoking-the-river",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-08-31T13:00:36.584647Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bb473f267919",
              "venue_id": "venue_piedmont_center",
              "title": "For the Love of Art Exhibition",
              "event_time": "2026-09-20T11:00:00",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-09-20T11:00:00",
              "event_date": "2026-09-20",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "Exhibition featuring various artists. Weekends 8/9 - 9/20 (except 8/22 & 8/30).",
              "event_types": [
                "art"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-08-31T13:20:32.956554Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-09-20",
              "run_id": "run_17625c4204a3",
              "run_label": "For the Love of Art Exhibition, Aug 8 – Sep 20",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_86b55f212fa2",
              "venue_id": "venue_piedmont_center",
              "title": "Bach: Sonatas and Partitas",
              "event_time": "2026-09-20T16:00:00",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-09-20T16:00:00",
              "event_date": "2026-09-20",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "Award-winning Brazilian violinist Marcio Candido performs timeless solo violin works by Johann Sebastian Bach.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "$25 advance tickets",
              "url": "https://ticketsignup.io/Candido",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-08-31T13:20:32.956554Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f7a7713fcbbd",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Celebrating Robert Emmet",
              "event_time": "2026-09-20T13:00:00",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-09-20T13:00:00",
              "event_date": "2026-09-20",
              "venue_address": "San Francisco, CA 94118",
              "description": "A celebration of Irish heritage and music featuring lyrical airs and toe-tapping jigs performed by the Golden Gate Park Band.",
              "event_types": [
                "classical",
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://sfrecpark.org/calendar.aspx?EID=17155",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-08-31T13:28:15.005369Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_f8647ee44a00",
              "venue_id": "venue_california_theatre",
              "title": "Don Giovanni – Opera San José",
              "event_time": "Sep 20, 2026 @ 2:00pm",
              "venue_name": "California Theatre",
              "event_start": "2026-09-20T14:00:00",
              "event_date": "2026-09-20",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "| Today's Show: 2pm |  | Performances: Sept. 13-18 |\n \nBack after twelve years, Opera San José presents a new production of Don Giovanni, Mozart’s dark psychological thriller. Seduction, rebellion and…",
              "event_types": [
                "theater",
                "classical",
                "live_music"
              ],
              "price_info": "",
              "url": "https://events.timely.fun/jc0x91t0/event/78443816",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-08-31T13:56:21.266463Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_california_theatre|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6146ff5fbb93",
              "venue_id": "venue_ashkenaz",
              "title": "BOTMC Family Dance",
              "event_time": "09/20/2026 11:00 AM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-09-20T11:00:00",
              "event_date": "2026-09-20",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "Berkeley Old Time Music Convention - FREE Square Dance for Kids & Families",
              "event_types": [
                "dance",
                "folk",
                "community"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/188644",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-08-31T14:45:33.243069Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fa6d3a5a78f6",
              "venue_id": "venue_yerba_buena_center",
              "title": "GaHee Park: Behind the Curtain",
              "event_time": "2026-09-20",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-20",
              "event_date": "2026-09-20",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Park invites us to peek behind the curtain, as she lays claim to her own power as a surrealist painter working across fantasy and intimacy.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/gahee-park-behind-the-curtain/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-20",
              "run_id": "run_5353f80886f6",
              "run_label": "GaHee Park: Behind the Curtain, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f9db22b9653c",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dream",
              "event_time": "2026-09-20",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-20",
              "event_date": "2026-09-20",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public art installation commissioned by YBCA and co-sponsored by San Francisco Public Works.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dream-public-art/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-20",
              "run_id": "run_b6a5ba4e8809",
              "run_label": "Dream, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8085be9af5f2",
              "venue_id": "venue_yerba_buena_center",
              "title": "SoMa Mahal Kita",
              "event_time": "2026-09-20",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-20",
              "event_date": "2026-09-20",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A message of love for the SoMa neighborhood and community, inspired by weaving practices in the Phillipines and the colors of the Filipino flag.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/soma-mahal-kita-soma-i-love-you-ciriaco-sayoc/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-20",
              "run_id": "run_0c5141fff335",
              "run_label": "SoMa Mahal Kita, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_617421711866",
              "venue_id": "venue_yerba_buena_center",
              "title": "We Rooted in Flight",
              "event_time": "2026-09-20",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-20",
              "event_date": "2026-09-20",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public artwork inviting passerbyers to join in the journey of collective flight",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/we-fly-for-a-liberated-we-we-rooted-in-flight/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-20",
              "run_id": "run_1d34139aedcf",
              "run_label": "We Rooted in Flight, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_33497af01496",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-09-20T14:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-20T14:00:00",
              "event_date": "2026-09-20",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-20",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_e8cabc8b1c6a",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-09-20T18:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-20T18:00:00",
              "event_date": "2026-09-20",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-20",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 2,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_b7013882556c",
              "venue_id": "venue_elis_mile_high",
              "title": "Whiskerman, Suzanimal & Noah Lark",
              "event_time": "Sun, Sep 20, 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-09-20",
              "event_date": "2026-09-20",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "Whiskerman, Suzanimal, Noah Lark Sun, Sep 20 | Eli's Mile High Club Buy Tickets Time & Location Sep 20, 2026, 7:00 PM – 11:00 PM Eli's Mile High Club, 3629 Martin Luther King Jr Way, Oakland, CA 94609, USA About the event 7pm Doors - 7:30 Show 21+ Whiskerman- \"Whiskerman, the band that never dies, is a genre blending rock band from Oakland, CA that defies convention through operatic catharsis and blood rushing rock and roll. Enduring years of a shifting music industry, a pandemic and multiple trashy transformational festivals, this West Coast staple is returning with a new double album dubbed American Hell. With the help of magnetic energy, virtuosic musicianship and a flair for theatrics, the experience of Whiskerman demands to be seen on the live stage.\" Suzanimal - is a Bay Area indie psych-pop band led by scientist-turned-bassist Suzanne Galal - inspired by Talking Heads and Tame Impala. Members of the band include musicians from Bay Area band, Con Brio. Known for their genre-defying live shows, designed to make you lose yourself to the rhythm — with just enough of the unexpected to keep you on your toes ‘til the afterparty. Noaa Lark delivers a… Show More Tickets Ticket type General Admission Sale ends Sep 20, 10:20 PM Price $30.00 +$0.75 ticket service fee Quantity 0 Total $0.00 Checkout Share this event",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.elismilehighclub.com/events/whiskerman-suzanimal-noah-lark",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-08-31T16:36:06.503526Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_34cfab57bb5f",
              "venue_id": "venue_chase_center",
              "title": "Premium Suites",
              "event_time": "2026-09-20",
              "venue_name": "Chase Center",
              "event_start": "2026-09-20",
              "event_date": "2026-09-20",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "At Select-A-Suite on Thursday, September 17, 2026, not only will you have the opportunity to reserve your suites before they are released to the public, but attendees can also enjoy complimentary food and beverage tastings throughout the event, network with fans and business professionals, and have the opportunity to capture a photo with the Larry O'Brien Trophies.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://chasecenter.com/premium-experiences/premium-suites/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-08-31T17:38:13.687686Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-09-20",
              "run_id": "run_bed5be826f7c",
              "run_label": "Premium Suites, Sep 10 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a03bf3f47263",
              "venue_id": "venue_white_horse",
              "title": "CHuCH",
              "event_time": "2026-09-20T16:00:00",
              "venue_name": "White Horse Inn",
              "event_start": "2026-09-20T16:00:00",
              "event_date": "2026-09-20",
              "venue_address": "6551 Telegraph Ave, Oakland, CA 94609",
              "description": "A monthly Sunday tea dance featuring gospel house, disco, and rare grooves with David Harness, with all door proceeds benefiting the Oakland LGBTQ Center.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$15",
              "url": "https://www.eventbrite.com/e/chuch-tickets-1181143942",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_white_horse",
                  "source_name": "White Horse Inn",
                  "fetched_at": "2026-08-31T17:48:56.702708Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_white_horse|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_05c7b76ce30a",
              "venue_id": "venue_tupelo",
              "title": "Joe Newsman",
              "event_time": "Sunday September 20th 4:00PM - 7:00PM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-20T16:00:00",
              "event_date": "2026-09-20",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "Hosted by Andrew Coutti and Young Blake on drums and bass,, this is the definitive Jam in San Francisco. Each week there will be a different special guest vocalist, as well as myriad other exceptional local talent popping in no doubt. Talk to either host before the gig if you're interested in performing. We take this shit seriously though, so bring your chops :)",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1e43d539285a",
              "venue_id": "venue_tupelo",
              "title": "Sunday Artist Series",
              "event_time": "Sunday September 20th 8:00PM - 12:00AM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-20T20:00:00",
              "event_date": "2026-09-20",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "A weekly live music dance party throw down hosted by Shawn Stein with an all-pro house band and different guest vocalists each week. This is the perfect way to cap off your weekend!",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_72e3edadfffe",
              "venue_id": "venue_the_knockout",
              "title": "Reggae Sunday: Riddim Up",
              "event_time": "Sun 20 Sep ― 9:00pm",
              "venue_name": "The Knockout",
              "event_start": "2026-09-20T21:00:00",
              "event_date": "2026-09-20",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/L898310dbaf3?pid=YUCBDJYJ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_knockout",
                  "source_name": "The Knockout",
                  "fetched_at": "2026-09-02T10:33:16.877437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_knockout|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a39162ac8c11",
              "venue_id": "venue_the_midway",
              "title": "Perreo Eléctrico ft. A.Chal",
              "event_time": "09/20/2026 3:00 PM",
              "venue_name": "The Midway",
              "event_start": "2026-09-20T15:00:00",
              "event_date": "2026-09-20",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "TERRACE ∙ OUTDOORS",
              "event_types": [
                "live_music",
                "latin_world",
                "dj_party"
              ],
              "price_info": "TICKETS",
              "url": "https://www.tixr.com/groups/midwaysf/events/perreo-el-ctrico-ft-a-chal-204201",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-09-02T11:30:22.920988Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_abd0c70c786a",
              "venue_id": "venue_discretion_brewing",
              "title": "Lefty Rosa",
              "event_time": "2026-09-20",
              "venue_name": "Discretion Brewing",
              "event_start": "2026-09-20T17:30:00",
              "event_date": "2026-09-20",
              "venue_address": "2703 41st Ave Ste A, Soquel, CA 95073",
              "description": "Live Music 3-5pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_discretion_brewing",
                  "source_name": "Discretion Brewing",
                  "fetched_at": "2026-09-02T11:35:03.120781Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_discretion_brewing|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_68b80217f03e",
              "venue_id": "venue_madrone_art_bar",
              "title": "Thirst Draft: Write Drunk, Edit Never",
              "event_time": "September 20 @ 6:00 pm - 9:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-20T18:00:00",
              "event_date": "2026-09-20",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "An event for writers — and for writing. Everyone gets the same prompt when they walk in the door. What ends up on the page is up to you! Here’s how it works: Write whatever you want — poem, song, short story, joke… anything works! Interpret the prompt however you like, but try to incorporate [&hellip;]",
              "event_types": [
                "literary",
                "workshop"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/thirst-draft-write-drunk-edit-never-4-2026-09-20/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_143af6bae03c",
              "venue_id": "venue_madrone_art_bar",
              "title": "Madrone Summer Art Show – Closing Party",
              "event_time": "September 20 @ 4:00 pm - 6:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-20T16:00:00",
              "event_date": "2026-09-20",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Closing party: Sunday, September 20th 4pm—6pm On the Main Wall: Ron Campbell & Nick Yusi & a window installation by bianca levan and silvi alcivar",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/madrone-summer-art-show-closing-party/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a8ac0044bd10",
              "venue_id": "venue_madrone_art_bar",
              "title": "SUNDAY B3 SESSIONS",
              "event_time": "September 20 @ 9:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-20T21:00:00",
              "event_date": "2026-09-20",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Sunday B3 Sessions Hosted by Adam Shulman and Mike Olmos Swinging soul jazz with a jam session to follow 9pm-Close No Cover",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No Cover",
              "url": "https://madroneartbar.com/event/spikes-open-mic-sunday-b3-sessions-2025-11-23/2026-09-20/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a6595cfbfbcd",
              "venue_id": "venue_black_cat",
              "title": "Lady Stout & Nurenssnce",
              "event_time": "2026-09-20T19:00:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-20T19:00:00",
              "event_date": "2026-09-20",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50, $60\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n9:30 show: Bar @ 6:00, Doors @ 8:45\n\n*Sunday 9:15 show: Bar @ 6:00, Doors @ 8:30\n\n\n\n\nVoice-led, genre-bending soul where jazz, gospel, rock, funk, and fearless improvisation collide.\n\n\n\n\nLady Stout & Nurenssnce deliver a powerful live experience where soulful storytelling, deep grooves, and fearless improvisation meet. Blending jazz, gospel, rock, and contemporary soul, every performance is immersive, emotionally charged, and completely alive in the moment.\n\n\n\n\nLady Stout has shared the stage with Robert Glasper, Chris Dave, Derrick Hodge, Ledisi, Alicia Keys, Patti LaBelle, Anderson .Paak, Durand Bernarr, Keyon Harrold, and Noname, with appearances at Carnegie Hall, NPR Tiny Desk, the GRAMMY Awards, BET Awards, the Billboard Music Awards, The Tonight Show Starring Jimmy Fallon, and collaborations including De La Soul. Backed by an exceptional band of internationally recognized musicians, Nurenssnce honors the traditions of jazz while boldly pushing the music into new territory.\n\n\n\n\nBand Lineup:\n\nLady Stout — lead vocals\n\nDan Winshall — bass, musical director\n\nTyson Jackson — drums\n\nAxel Tosca — piano\n\nMatt Sewell — guitar",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $30 , $40 , $50, $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/12433/2026-09-20",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_aad853bf73d1",
              "venue_id": "venue_black_cat",
              "title": "Lady Stout & Nurenssnce",
              "event_time": "2026-09-20T21:15:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-20T21:15:00",
              "event_date": "2026-09-20",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50, $60\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n9:30 show: Bar @ 6:00, Doors @ 8:45\n\n*Sunday 9:15 show: Bar @ 6:00, Doors @ 8:30\n\n\n\n\nVoice-led, genre-bending soul where jazz, gospel, rock, funk, and fearless improvisation collide.\n\n\n\n\nLady Stout & Nurenssnce deliver a powerful live experience where soulful storytelling, deep grooves, and fearless improvisation meet. Blending jazz, gospel, rock, and contemporary soul, every performance is immersive, emotionally charged, and completely alive in the moment.\n\n\n\n\nLady Stout has shared the stage with Robert Glasper, Chris Dave, Derrick Hodge, Ledisi, Alicia Keys, Patti LaBelle, Anderson .Paak, Durand Bernarr, Keyon Harrold, and Noname, with appearances at Carnegie Hall, NPR Tiny Desk, the GRAMMY Awards, BET Awards, the Billboard Music Awards, The Tonight Show Starring Jimmy Fallon, and collaborations including De La Soul. Backed by an exceptional band of internationally recognized musicians, Nurenssnce honors the traditions of jazz while boldly pushing the music into new territory.\n\n\n\n\nBand Lineup:\n\nLady Stout — lead vocals\n\nDan Winshall — bass, musical director\n\nTyson Jackson — drums\n\nAxel Tosca — piano\n\nMatt Sewell — guitar",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $30 , $40 , $50, $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/12433/2026-09-20",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2753267af89c",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Marco de Carvalho Brazilian Trio",
              "event_time": "Sunday, September 20, 2026 @ 5pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-20T17:00:00",
              "event_date": "2026-09-20",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Marco Antonio de Carvalho is an award-winning musician: Guitarist, Performer, Vocalist and Composer. Originally from Rio de Janeiro, Brasil, he has lived in Seattle Washington for over 25 years.  Formally, he was trained at the Conservatório Brasileiro de Música and Instituto Villa-Lobos in Rio and then toured Brazil and abroad with Brazilian musicians. He toured the US extensively, originally on tour with Paulo Sá (mandolin), fell in love with Seattle, Washington and has made his home there.  Marco has over seven albums to his credit and is an artist on Origin Records. Award winning artist and Maui, HI native Neal Chin, has been both an ‘ukulele educator and performer over the course of his musical career of 19 years. His clear and direct enthusiasm for music has come to life in countless workshops, concerts, and private instruction. While his heart is in jazz, Neal has played with many musicians of different genres including Hawaiian, folk, rock, and hip-hop. His contribution to the collective The Akira Project, won his first Nā Hōkū Hanohano Award in 2014 before moving up to the Pacific Northwest.",
              "event_types": [
                "live_music",
                "jazz",
                "latin_world"
              ],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/marco-de-carvalho-brazilian-trio-ft-neal-chin-ami-molinelli/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d129009bcb0e",
              "venue_id": "venue_brick_and_mortar",
              "title": "BIIRD (NIGHT 2)",
              "event_time": "9.20 Show: 8:00PM",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-09-20T20:00:00",
              "event_date": "2026-09-20",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Event Details Brick & Mortar Music Hall Presents BIIRD (Night 2) September 20, 2026 8:00 pm PDT (Doors: 7:00 pm ) Brick and Mortar Music Hall , 1710 Mission Street , San Francisco, CA ( map ) $35.82 Buy Tickets + Google Calendar 2nd show added! BIIRD Made up of Lisa Canny, Niamh Hinchy, Laura Doherty, Ciara Murphy, Zoran Donohoe, Miadhachlughain O’Donnell, Sal Heneghan and Hannah Hiemstra this sisterhood’s energy is unmatched. After appearing on the Late Late show in February 2025 the group went on to sell out every show on their debut Historical Tour, including Vicar Street in Dublin. They then went on to play the MainStage at Altogether Now to 15000 fans. 2025 also saw them become Ambassadors of the Twentieth edition of Culture Night, an evening organised by the Irish Arts Council celebrating culture, music and the Arts. Furthermore, they won Goss.ie’s “Artists of the Year”, featured in Vogue Magazine and released 2 music videos on YouTube “ The Rollover Set” and “The Love Buzz Set”. They have amassed nearly 150k followers and 25million views online in less than 2 years together. Image.ie describes their performances as “Magic”, renowned DJ Annie Mac says they are “destined for success” and The Irish Times states they are “breaking the mould”. 2026 will see them record their debut album at Decoy Studios, hit the mainstages of many festivals including Beyond the Pale, Altogether Now and Latitude. Their debut album is set for release at the end of 2026. JUST ANNOUNCED Felukah — HibisKiss Tour October 28, 2026 Thoughts on Bowling November 27, 2026 BIIRD (Night 2) September 20, 2026 MoneyHillCasino October 11, 2026 Hayden Everett October 29, 2026 Follow us on Instagram Join the Brick & Mortar Newsletter",
              "event_types": [
                "live_music"
              ],
              "price_info": "$35.82",
              "url": "https://www.brickandmortarmusic.com/tm-event/biird-night-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-09-03T11:13:51.689688Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_37e718575cf9",
              "venue_id": "venue_bach_dds",
              "title": "Sylvia Cuenca’s Bridging Generations",
              "event_time": "Sun, 9/20/2026 @ 4:30 PM",
              "venue_name": "Bach Dancing",
              "event_start": "2026-09-20T16:30:00",
              "event_date": "2026-09-20",
              "venue_address": "311 Mirada Road, Half Moon Bay, CA 94019",
              "description": "bw + bsl && x + aw - ah / 2 - cw >= bsl) {\n                c.style.left = x + aw - ah / 2 - cw;\n            } else {\n                c.style.left = x + ah / 2;\n            }\n            if (y + ch + ah / 2 > bh + bst && y + ah / 2 - ch >= bst) {\n                c.style.top = y + ah / 2 - ch;\n            } else {\n                c.style.top = y + ah / 2;\n            }\n            c.style.visibility = \"visible\";\n            }\n            }\n            }\n\n            function msoCommentHide(com_id) {\n                if (msoBrowserCheck()) {\n                    c = document.all(com_id);\n                    if (null != c && null == c.length) {\n                        c.style.visibility = \"hidden\";\n                        c.style.left = -1000;\n                        c.style.top = -1000;\n                    }\n                }\n            }\n\n            function msoBrowserCheck() {\n                ms = navigator.appVersion.indexOf(\"MSIE\");\n                vers = navigator.appVersion.substring(ms + 5, ms + 6);\n                ie4 = (ms > 0) && (parseInt(vers) >= 4);\n                return ie4;\n            }\n            if (msoBrowserCheck()) {\n                document.styleSheets.dynCom.addRule(\".msocomanchor\", \"background: infobackground\");\n                document.styleSheets.dynCom.addRule(\".msocomoff\", \"display: none\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"visibility: hidden\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"position: absolute\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"top: -1000\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"left: -1000\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"width: 33%\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"background: infobackground\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"color: infotext\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"border-top: 1pt solid threedlightshadow\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"border-right: 2pt solid threedshadow\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"border-bottom: 2pt solid threedshadow\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"border-left: 1pt solid threedlightshadow\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"padding: 3pt 3pt 3pt 3pt\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"z-index: 100\");\n            }\n            // -->\n        \n    \n    Sponsored by Sandra Moll\nDrummer Sylvia Cuenca\n    leads a standout NYC–Bay Area ensemble—Wallace Roney Jr., Rico Jones,\n        Matt Clark, Essiet Okon Essiet, and Will Martins—in a performance\n    that brings together an ensemble of inter-generational powerhouse musicians.\n\nCuenca’s career includes\n    formative years with Joe Henderson and Clark Terry, in addition to playing with\n    many of the greats including Billy Taylor, Etta Jones, Michael and Randy\n    Brecker, George Cables, Kenny Barron, Gregory Porter, and Jazzmeia Horn. Her\n    notable appearances include Black Girls Rock with Alicia Keys and the Whole\n    Drum Truth project at Jazz at Lincoln Center and the Kennedy Center. She was a\n    semi-finalist in the 1992 Thelonious Monk International Drum Competition and\n    received jazz performance grants from the National Endowment for the Arts in\n    1988 and 1991.\n\nSaxophonist Rico Jones\n    and trumpet player Wallace Roney Jr. are leading artists of their younger\n    generation, pushing musical boundaries while remaining grounded in traditional\n    jazz roots. Pianist Matt Clark, bassist Essiet Okon Essiet, and drummer Cuenca bring\n    decades of experience shaped by years on the road with jazz icons.\n\nSylvia Cuenca –\n    Drums; Wallace Roney Jr. – Trumpet; Rico Jones – Tenor Saxophone/Flute;\n    Matt Clark – Piano; Essiet Okon Essiet – Bass; Will Martins – Percussion.\nArtist Website here\nVideo 1\nVideo 2",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$50/$40 Adults;$23/$12 Student",
              "url": "https://plugin.vbotickets.com/v5.0/event.asp?eid=202279&s=f940c74f-f780-4fcb-ac4c-a97565f2a7ec",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bach_dds",
                  "source_name": "Bach Dancing",
                  "fetched_at": "2026-09-03T11:57:58.328412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bach_dds|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d0b692ab4b98",
              "venue_id": "venue_pacific_film_archive",
              "title": "Curator’s Tour: Margot Norton",
              "event_time": "Sep 20, 2026 1 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-20T13:00:00",
              "event_date": "2026-09-20",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Join Chief Curator Margot Norton, co-curator with Senior Curator Anthony Graham, for a walkthrough of the exhibition, featuring Hassinger's material experiments in sculpture, her long-standing engagement with movement and performance, and her work with the moving image.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://bampfa.org/event/curator-tour-margot-norton-maren-hassinger",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8522d44d541e",
              "venue_id": "venue_pacific_film_archive",
              "title": "Pink Trash",
              "event_time": "Sep 20, 2026 2 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-20T14:00:00",
              "event_date": "2026-09-20",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Maren Hassinger restages her iconic 1982 performance Pink Trash on UC Berkeley’s Crescent Lawn, joined for the first time by six UC Berkeley students in a work exploring the encounters between humans and nature in public space.",
              "event_types": [
                "art",
                "dance"
              ],
              "price_info": "",
              "url": "https://bampfa.org/event/pink-trash-crescent-lawn-uc-berkeley",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_690cccb72cc9",
              "venue_id": "venue_pacific_film_archive",
              "title": "Bellissima",
              "event_time": "Sep 20, 2026 4:30 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-20T16:30:00",
              "event_date": "2026-09-20",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Luchino Visconti is in an unusually comic mode for this satire on urban life and movieland ambition. The incomparable Anna Magnani plays a mother trying to launch her young daughter in show business.",
              "event_types": [
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/bellissima",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_af66e2a8dfb6",
              "venue_id": "venue_pacific_film_archive",
              "title": "The Last Waltz",
              "event_time": "Sep 20, 2026 7 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-20T19:00:00",
              "event_date": "2026-09-20",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Martin Scorsese’s loving portrait of The Band’s farewell concert in San Francisco is “arguably the most beautiful of rock movies, while the musical highlights . . . still astound” (Time Out). With guest appearances by Eric Clapton, Bob Dylan, Joni Mitchell, and more.",
              "event_types": [
                "film",
                "live_music",
                "rock"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/last-waltz",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f44a1dfce9ec",
              "venue_id": "venue_4_star_theater",
              "title": "4 Star Pokemon Cartoon Block",
              "event_time": "20 September 2026 10:00 AM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-20T10:00:00",
              "event_date": "2026-09-20",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "This weekend, the 4-Star offers up a specially curated block of Pokemon episodes! And as with every Popcorn Palace show, seating is totally free.   Cinema SF Bay is proud to announce that our Saturday &amp; Sunday morning POPCORN PALACE movie screenings at the 4 STAR will continue to be presente",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/pokemon-sun",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d04c07743bf5",
              "venue_id": "venue_4_star_theater",
              "title": "SF Critterfest: Wild Asia",
              "event_time": "20 September 2026 12:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-20T12:00:00",
              "event_date": "2026-09-20",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Zhenye and Anatoly Pilipenko’s dream of a quiet place in the country is shattered overnight as a Russian missile explodes over their house on the first night of war. As rockets fall and fires rage, they face an impossible choice: flee the violence at their doorstep or stay and protect the home they dreamed of building for years. When a soldier on his way to the frontline asks the couple if they could care for his goats - all 37 of them - while he fights in the trenches; Practically overnight, Anatoly an Zhenye’s home transforms into the largest animal sanctuary in Eastern Ukraine. From rescued chickens, displaced donkeys, wandering horses and even emus, Anatoly and Zhenye risk their lives and livelihoods to rescue any part of Ukraine they can - including the wounded and defenseless animals scattered across the country from the war.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/critterfest-wild-asia",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ac0511f12641",
              "venue_id": "venue_4_star_theater",
              "title": "Ace Attorney",
              "event_time": "20 September 2026 7:30 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-20T19:30:00",
              "event_date": "2026-09-20",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Following the murder of his mentor, rookie defense attorney Phoenix Wright is launched into his first major trial as he squares off against his childhood friend, prosecutor Miles Edgeworth, in a case where his mentor’s sister, spirit medium Maya Fey, is unjustly accused of the crime. And that’s just the beginning as things ramp off from there into more law & order that dips into the realm of the supernatural! So what’s the verdict? You get to watch this incredible film full of murder, ghosts, lake monsters, homoerotic courtroom drama, and some insane lace front wig game! Court is adjourned.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/media-meltdown-movie-madhouse",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5713bea223d0",
              "venue_id": "venue_pier_23",
              "title": "BLUES JAM",
              "event_time": "Sunday, September 20, 2026 4:00 PM\n              \n              7:00 PM",
              "venue_name": "Pier 23",
              "event_start": "2026-09-20T16:00:00",
              "event_date": "2026-09-20",
              "venue_address": "23 The Embarcadero,San Francisco, CA 94111",
              "description": "Join us for a raucous afternoon filled with jammin’ blues sounds brought to you by the inimitable blues drummer Sean Donoghue .  Professional musicians & budding artists are welcome to jump in to the musical fray. We are supporting local talent on all levels. Grab a drink, a bite and be ready to dance. Bring your friends, we can’t wait to see you.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.pier23cafe.com/events/2026/6/7/blues-jam-4-7pm-zlxh9-7z8lj-2fns2-maepw",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pier_23",
                  "source_name": "Pier 23",
                  "fetched_at": "2026-09-03T13:40:31.659066Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pier_23|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0acae82b4303",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Twango SF",
              "event_time": "20 September 2026",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-20",
              "event_date": "2026-09-20",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Twango SF plays vibrant gypsy jazz and hot swing in the enduring style of Django Reinhardt. Enjoy an evening of acoustic guitar swing paired with wine and small bites.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-09-03T13:50:21.930604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2737aa3c247d",
              "venue_id": "venue_caravan_lounge",
              "title": "CaveFest II",
              "event_time": "2026-09-20",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-09-20",
              "event_date": "2026-09-20",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "Welcome to The Caravan Lounge THE CARAVAN LOUNGE is a friendly, owner-operated bar located in the heart of downtown San Jose. As well as being one of San Jose’s oldest live music venues, the Caravan provides other fun activities such as karaoke, comedy, burlesque, pool table, and DJ nights. The Caravan is also extremely affordable for those trying to stretch a budget. And let’s not forget the music! All the shows at the Caravan are FREE! Open 7 days a week 2pm – Close “Aside from the obvious draw of affordable libations poured by heavy-handed barkeeps, The Caravan sets itself apart from other no-frills bars as the place to go to see up-and-coming bands. The bar has hosted plenty of local bands’ first shows, and regularly features smaller touring acts. If you’re a music fan always on the lookout for your new favorite group, make sure to pay attention to who is coming to Caravan.” -Metro FEATURED VIDEOS – Go to our YouTube Channel by clicking here to see more… SEPTEMBER 2026 TUES. SEPT 1st- Karaoke with Ronnie Roach WED. SEPT 2nd – The Caravan Lounge Comedy Show hosted by Chelsea Costanza THURS. SEPT 3rd – SWEAT with DJ SNAQ FRI. SEPT 4th – Rebelskamp, Magick Blues Band, TBA SAT. SEPT 5th – Skool Of Sharks TUES. SEPT 8th- Karaoke with Ronnie Roach WED. SEPT 9th – The Caravan Lounge Comedy Show Hosted by Nyoki THURS. SEPT 10th – Shrine Goth DJ Night with Hex Embrace, C_Death, and Owen FRI. SEPT 11th – Circus Of Sin 10 Year Sinnaversary! Hosted By Some Guy SAT. SEPT. 12th – CaveFest II We Love You Curtis Castro! Abysmal Piss, Ominous Ruin, Lost To The Void TUES. SEPT 15th – Karaoke with Ronnie Roach WED. SEPT 16th -The Caravan Lounge Comedy Show Hosted by Ato Walker THURS. SEPT 17th – TBA FRI. SEPT 18th – TBA SAT. SEPT 19th – Facekicker, American Standard, 12 Steps To Nothing TUES. SEPT 22nd – Karaoke with Ronnie Roach WED. SEPT 23rd- The Caravan Lounge Comedy Show hosted by Matt Kennedy THURS. SEPT 24th – Sweethearts DJ Night FRI. SEPT 25th – Ding Mao, Diamantide, Clou",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "FREE",
              "url": "http://s172518151.onlinehome.us/caravan/site/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-09-03T14:20:40.572990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a0ec472d9fe2",
              "venue_id": "venue_poor_house_bistro",
              "title": "Andre Thierry Zydeco Dance Party",
              "event_time": "2026-09-20T16:00:00",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-09-20T16:00:00",
              "event_date": "2026-09-20",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-09-04T10:11:13.938872Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5c4855d745da",
              "venue_id": "venue_mvcpa",
              "title": "The Liver (The New Byeoljubu Tale)",
              "event_time": "September 20 3:00 pm",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-09-20T15:00:00",
              "event_date": "2026-09-20",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "Bay Area K-Group\nESKAPE\n\nSunday, September 20 at 3:00 p.m.\n\n**Performance in Korean**\n\nThe Liver (The New Byeoljubu Tale) is an original Korean-language musical inspired by the classic Korean folktale \"Byeoljubujeon\" (The Tale of the Rabbit) reimagined through the lens of artificial intelligence, corporate power, and modern healthcare.\nSet in a near-future world where AI increasingly determines access to medical treatment, the story follows Youngwoo, a brilliant developer who dreams of building a fairer healthcare system through an emergency triage algorithm called \"The Liver.\" Driven by the desire to create a world where no one is denied care because of wealth or social status, he pours everything into his work—until ambition, opportunity, and the promise of success lead him into the orbit of the powerful Yonggung Group.\nAs efficiency becomes the ultimate metric and human lives are reduced to data points, Youngwoo is forced to confront a devastating question: when algorithms decide who deserves to live, what happens to compassion, dignity, and human warmth?\nBlending humor, emotional storytelling, and original music, The Liver explores the cost of innovation and the moral weight of progress, inviting audiences to reflect on what should never be optimized away.\n\nPresented by ESKAPE, a music community within Bay Area K-Group, this production is created by Korean-American professionals and community members passionate about music, storytelling, and cultural expression. Bay Area K-Group is a nonprofit organization dedicated to fostering connection, growth, and community among Korean-American professionals in the Bay Area.\n\nThis event is 1 hour and 40 minutes long, including one 15 minute intermission, and is appropriate for all ages.\n\nSecondStage | General Admision | Performance in Korean\n\n$30 Standard Price\n$25 Senior (62 and over) & Students (21 and under)\n$15 Youth (12 and under)\n\nTicket price includes $3 Facility Use Fee",
              "event_types": [
                "theater",
                "live_music"
              ],
              "price_info": "$30",
              "url": "https://tickets.mvcpa.com/eventperformances.asp?evt=784",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mvcpa",
                  "source_name": "MV Center for the Performing Arts",
                  "fetched_at": "2026-09-04T10:13:59.609171Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mvcpa|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4f9925fea5ac",
              "venue_id": "venue_cafe_du_nord",
              "title": "Lauren Sanderson",
              "event_time": "9/20/2026 8:00 pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-09-20T20:00:00",
              "event_date": "2026-09-20",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Live Nation Presents: LAUREN SANDERSON - COME SAY SUM TOUR Sun, Sep 20 Doors: 7:00 pm | Show: 8:00 pm Tickets: $30.36 - $129.24 Buy Tickets All Ages To Lauren Sanderson, rebellion isn’t an aesthetic - it’s a practiced discipline, delivered at full volume. Drawing from the hyperactive futurism of Missy Elliott and the abrasive bite of nü-metal, Sanderson distills those influences into something distinctly her own: a swaggering, energetic vision balancing sharp hooks with unfiltered attitude. Artist Presale: Wednesday, June 3rd at 10am Onsale: Friday, June 5th @ 10am local Lauren Sanderson Meet & Greet Package One General Admission ticket Exclusive Meet & Greet with Lauren Sanderson Personal photo with Lauren Sanderson Intimate pre-show Q&A with Lauren Sanderson Early entry into the venue Official Meet & Greet laminate and lanyard Priority merchandise shopping Very limited availability package is subject to change For any event that is listed as 18 or 21 and over, ANY ticket holder unable to present valid identification indicating that they are of age will not be admitted to this event, and will not be eligible for a refund. Any event listed as All Ages, means 6 years of age or older. ALL tickets are standing room only unless otherwise specified. If you need special accommodations, contact info@cafedunord.com. Support acts are subject to change without refund. Professional Cameras are not allowed without prior approval. Professional Camera defined as detachable lens or of professional grade as determined by the venue staff. When in doubt, just email us ahead of the show! We might be able to get you a Photo Pass depending on Artist’s approval. Artists Lauren Sanderson Video To Lauren Sanderson, rebellion isn’t an aesthetic - it’s a practiced discipline, delivered at full volume. Her newly released self-titled album, LAUREN, alongside her explosive collaboration “COME SAY SUM” with Limp Bizkit’s Fred Durst, marks a decisive shift into a louder, more maximalist era where",
              "event_types": [
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://cafedunord.com/tm-event/lauren-sanderson-come-say-sum-tour/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cafe_du_nord_and_swedish_american_hall",
                  "source_name": "Cafe Du Nord and Swedish American Hall",
                  "fetched_at": "2026-09-04T10:21:43.132381Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_327d711f0098",
              "venue_id": "venue_belle_cora",
              "title": "Hipsteria",
              "event_time": "2026-09-20T18:00:00",
              "venue_name": "Belle Cora",
              "event_start": "2026-09-20T18:00:00",
              "event_date": "2026-09-20",
              "venue_address": "565 Green St, San Francisco, CA 94133",
              "description": "Hipsteria brings its lively blend of jazz, soul, swing, and party music to Belle Cora. Featuring 'Tender Tim' on drums and vocals, drawing on a repertoire spanning jazz standards, blues, R&B, bossa nova, funk, and dance classics.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/hipsteria/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_belle_cora",
                  "source_name": "Belle Cora",
                  "fetched_at": "2026-09-04T10:27:58.918702Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_belle_cora|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_361c2f0098f2",
              "venue_id": "venue_kilowatt",
              "title": "AL, J Blingy & Ja Banga",
              "event_time": "Sun 20 Sep ― 1:00pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-20T13:00:00",
              "event_date": "2026-09-20",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "Keep track of what’s coming up by saving events, sharing them with friends, or even listening to new music in the app.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "Free",
              "url": "https://link.dice.fm/h85f06cf18cf?pid=ff10e59d",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-09-04T10:33:38.052132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8506a0136a0a",
              "venue_id": "venue_kilowatt",
              "title": "Killah Priest, Bru Lei & Moon Magic",
              "event_time": "Sun 20 Sep ― 7:00pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-20T19:00:00",
              "event_date": "2026-09-20",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "KILLAH PRIEST made his first appearances on such Wu-Tang side and solo projects as Gravediggaz’ 6 Feet Deep, Ol’ Dirty Bastard’s Return to the 36 Chambers, and Genius/GZA’s seminal Liquid Swords. His contributions to those releases — especi...",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$24.72",
              "url": "https://link.dice.fm/V18b0f7b2126?pid=ff10e59d",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-09-04T10:33:38.052132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-20",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-09-21": {
          "date": "2026-09-21",
          "updated_at": "2026-09-04T10:37:52.940119Z",
          "events": [
            {
              "event_id": "evt_7c8455582791",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Jack Harlow",
              "event_time": "Sep 21 2026 8pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-09-21T20:00:00",
              "event_date": "2026-09-21",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "new date sep 18th",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "Buy Tickets",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-08T14:57:38.344888Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_dd3d0cb449ac",
              "venue_id": "venue_the_fillmore",
              "title": "Waylon Wyatt",
              "event_time": "sep 21 8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-09-21T20:00:00",
              "event_date": "2026-09-21",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "The rising 19-year-old folk-country artist brings his raw, red-dirt take on Americana to the stage. The tour supports his highly anticipated debut album, Dustpiles.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$39+",
              "url": "https://www.ticketmaster.com/waylon-wyatt-dustpiles-world-tour-san-francisco-california-09-21-2026/event/1C0064ACC7A55CCD",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T21:39:26.952332Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-06-05T10:13:38.208208Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_616a3e77a3b5",
              "venue_id": "venue_mojo_lounge",
              "title": "Johnny's Lounge Open Mic",
              "event_time": "2026-09-21T20:00:00",
              "venue_name": "Mojo Lounge",
              "event_start": "2026-09-21T20:00:00",
              "event_date": "2026-09-21",
              "venue_address": "3714 Peralta Blvd, Fremont, CA 94536",
              "description": "Johnny's Lounge Open Mic (at the former Mojo Lounge). If you ever wanted to try comedy and check out the Bay Area's upcoming talent, come on out to this local watering hole in Fremont! Hosted by Alex Torres.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Free",
              "url": "https://www.meetup.com/south-bay-comedy-showcases/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mojo_lounge",
                  "source_name": "Mojo Lounge",
                  "fetched_at": "2026-06-16T11:13:49.827449Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mojo_lounge|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_0ff8be3aac32",
              "venue_id": "venue_regency_ballroom",
              "title": "Uncle Acid & The Deadbeats, Messa",
              "event_time": "sep 21 8pm",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-09-21T20:00:00",
              "event_date": "2026-09-21",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Goldenvoice Presents Uncle Acid & the Deadbeats North America ‘26 with Messa Monday, September 21 Doors 7:00PM, Show 8:00PM All Ages The Regency Ballroom Buy Tickets Event Info If tickets in the accessible section are unavailable, please reach out to the venue for accommodations. Please note, orders in violation of the published ticket limit are subject to cancellation without notice. Ticket prices may fluctuate, at any time, based on demand. Artist Info Uncle Acid - Wasteland. By Dom Lawson. You can probably feel it already. Amid the shimmering haze of dusk. In the marrow of your bones. The darkness is getting darker. Malevolent forces are on the prowl. The wasteland is beckoning. Uncle Acid is on his way home. The brainchild of mercurial Cambridgeshire mystic Kevin Starrs, Uncle Acid & The Deadbeats have been making extraordinary music since 2009. Always too bold and idiosyncratic to be easily pigeonholed, they emerged from an obscure corner of the labyrinthine English underground as shadowy purveyors of a new and overwhelmingly psychedelic take on the gruff and gritty rudiments of hard rock and turbo-blues, powered by the dark, lysergic heart of the late ‘60s and early ‘70s and drenched in woozily macabre imagery. Steeped in both the wayward melodies and mischievous arrangements of psychedelic pop and the dissonant thunder of proto-metal and doom, Starrs’ greatest feat has been to create an entirely fresh sonic world from these most familiar of ingredients. Uncle Acid & The Deadbeats’ reputation was swiftly built on towering, riff-driven milestones like 2011’s breakthrough opus Blood Lust and its warped and wicked follow-up, Mind Control (2013); both released through Rise Above Records and subsequently showered with critical acclaim. By the time Starrs’ band created The Night Creeper in 2015, their mutation into heavy music’s most unmistakable eccentrics was complete, as their leader cranked up the melodic weirdness, rendering his monstrous ideas in something app",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theregencyballroom.com/events/detail?event_id=1470840",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-25T10:40:49.247198Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-06-29T11:36:25.735100Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f5823b15fbf3",
              "venue_id": "venue_the_ritz",
              "title": "Seedhe Maut",
              "event_time": "2026-09-21T19:00:13-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-09-21T19:00:13",
              "event_date": "2026-09-21",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "SEEDHE MAUT\n\n \n\nMONDAY SEPTEMBER 21, 2026",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$27 Advance – $32 Day-of-Show",
              "url": "https://www.ticketweb.com/event/seedhe-maut-the-ritz-tickets/14829233",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-06-28T11:02:01.864441Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-06T11:10:01.105806Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_ritz|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bb288461034c",
              "venue_id": "venue_the_warfield",
              "title": "Peter Hook & The Light",
              "event_time": "sep 21 8pm",
              "venue_name": "The Warfield",
              "event_start": "2026-09-21T20:00:00",
              "event_date": "2026-09-21",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "North American 2026 Tour",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.thewarfieldtheatre.com/events/detail/1099682",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-08-15T11:06:05.689286Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_6db46f7bf014",
              "venue_id": "venue_the_chapel",
              "title": "Marlon Magnee",
              "event_time": "sep 21 8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-09-21T20:00:00",
              "event_date": "2026-09-21",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "all ages",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_chapel|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_e491391770e5",
              "venue_id": "venue_rickshaw_stop",
              "title": "Friko, Villagerr",
              "event_time": "sep 21 8pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-09-21T20:00:00",
              "event_date": "2026-09-21",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "all ages",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$26/$29",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_8cc02c591aac",
              "venue_id": "venue_the_riptide",
              "title": "Open Mic by Charlie Kaupp",
              "event_time": "September 21 7:00 PM - September 22 12:00 AM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-21T19:00:00",
              "event_date": "2026-09-21",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "Best of The Bay Award Winning Charlie Kaupp's Riptide Open Mic !\n\nThe Riptide Wants to Hear Ya Sing! In person! Inside the bar!\n\n\nOpen Mic Night returns to The Riptide in person, every Monday night. Sign up in the bar starting at 7pm. Music starts at 8 and goes until 11pm.\n\n\n\nRules and format:\n\n\n\n• You get two songs or 10 minutes, whichever comes first\n• This is a music-only open mic, so no spoken word, comedy, poetry, dramatic readings, etc (unless you put it to music)\n• All genres, covers, and originals are accepted and encouraged\n• Since it's in a bar, it's a 21+ event. Sorry kids!\n• Sign-ups are first-come, first-served, but you can pick your slot\n• Come early and have a drink, stick around late and support the other performers\n• You may bring your own mic and your own instrument if you choose, or RESPECTFULLY use our house mics, guitar, or piano.",
              "event_types": [
                "live_music"
              ],
              "price_info": "cover",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1e7a1c1c32db",
              "venue_id": "venue_mabuhay_gardens",
              "title": "ZINGGFLOWER MONDAYS",
              "event_time": "2026-09-21 6:30 PM",
              "venue_name": "The Mab",
              "event_start": "2026-09-21T18:30:00",
              "event_date": "2026-09-21",
              "venue_address": "443 Broadway, San Francisco, CA 94133",
              "description": "GamperDrums brings an all-star band to The Mab for blues and beyond—funk, soul, jazz, and San Francisco psychedelia—continuing the fearless musical exploration inspired by Drew Zingg.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://alerttheglobe.com/custom/Chris_Gamper",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mabuhay_gardens",
                  "source_name": "The Mab",
                  "fetched_at": "2026-08-22T11:20:57.510347Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mabuhay_gardens|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c384d05ba2b4",
              "venue_id": "venue_crepe_place",
              "title": "Open Mic!",
              "event_time": "2026-09-21",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-21T20:00:00",
              "event_date": "2026-09-21",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "",
              "event_types": [
                "community"
              ],
              "price_info": "FREE",
              "url": "https://thecrepeplace.com/shows-list/open-mic-monday-august-25-7-10pm-free",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ba2b9737c1af",
              "venue_id": "venue_abbott_square",
              "title": "COMEDY NIGHT",
              "event_time": "Monday, September 21, 2026 7:00 PM - 9:00 PM",
              "venue_name": "Abbott Square Market",
              "event_start": "2026-09-21T19:00:00",
              "event_date": "2026-09-21",
              "venue_address": "725 Front St, Santa Cruz, CA 95060",
              "description": "Come hang out in the garden and have some laughs, EVERY MONDAY NIGHT.\n\nFeaturing comedians from all over the Bay Area and beyond.",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "https://www.abbottsquaremarket.com/events/yxy2temjm5rphl6xxk5cfchb7a47mj-rskts-a2lpf-zp9fd-b4lzk",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_abbott_square",
                  "source_name": "Abbott Square Market",
                  "fetched_at": "2026-08-22T12:39:51.694804Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_abbott_square|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b1946b6f794b",
              "venue_id": "venue_thee_stork_club",
              "title": "Freakyoke 9/21",
              "event_time": "September 21, 2026 8:00PM",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-09-21T20:00:00",
              "event_date": "2026-09-21",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "This show is 21+ Freakyoke Karaoke 1st and 3rd Mondays 8:00pm, FREE Do you want somewhere you can sing your favorite songs? We're talking alternative, metal, rock, pop, disco, and everything in between! If it's on YouTube, we got it!! Freakyoke karaoke is where it's at for folks that may not feel like they can sing freely and freakly at other karaoke! QUEER TRANS CENTERED KARAOKE!!",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://wl.seetickets.us/event/freakyoke-921/692290?afflky=TheeStorkClub",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-08-22T14:35:18.029489Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6c2c12158c11",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Alice for Wonderland",
              "event_time": "2026-09-21",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-21",
              "event_date": "2026-09-21",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-21",
              "run_id": "run_304a2c902844",
              "run_label": "Alice for Wonderland, Aug 22 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_49cb6cd4378e",
              "venue_id": "venue_scpl_downtown",
              "title": "Aptos Bridge Club",
              "event_time": "September 21 2026 10:30am - 12:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-21T10:30:00",
              "event_date": "2026-09-21",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Play Mahjong with fellow enthusiasts! Beginners welcome with weekly Hong Kong Style lessons. Other styles offered too. Tiles provided or bring your own.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/14433700",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_033dd8d86f3b",
              "venue_id": "venue_scpl_downtown",
              "title": "Discovery Zone Playgroup",
              "event_time": "September 21 2026 10:30am - 11:30am",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-21T10:30:00",
              "event_date": "2026-09-21",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "A time for free play for children with a participating adult.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16790395",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6da91b6652ad",
              "venue_id": "venue_scpl_downtown",
              "title": "Storytime and Stay & Play at Downtown",
              "event_time": "September 21 2026 10:30am - 11:30am",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-21T10:30:00",
              "event_date": "2026-09-21",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Join us for Storytime for ages 0-5 featuring songs, rhymes, lap bounces, and stories. After Storytime, stay for Stay & Play!",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16935489",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d1c3e223b63c",
              "venue_id": "venue_scpl_downtown",
              "title": "Preparing for Life's Transitions",
              "event_time": "September 21 2026 12:30pm - 2:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-21T12:30:00",
              "event_date": "2026-09-21",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Brought to you by Village Santa Cruz - Topics covered are personal, legal, medical, financial, insurance, real estate, living options, daily living, crisis plan, home health, hospice and end of life.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15502760",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2400d477b1ce",
              "venue_id": "venue_scpl_downtown",
              "title": "Knitting at the Library @ Felton",
              "event_time": "September 21 2026 12:30pm - 2:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-21T12:30:00",
              "event_date": "2026-09-21",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Join us every Monday at the Felton Branch for a knitting party. All you need to do is bring some yarn and knitting needles. All ages are welcome.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15425758",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e344e3d72940",
              "venue_id": "venue_scpl_downtown",
              "title": "Encompass Outreach Worker Office Hours",
              "event_time": "September 21 2026 1:00pm - 3:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-21T13:00:00",
              "event_date": "2026-09-21",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Connecting people to social services, county mental health and more.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16558639",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d7ec0f19301a",
              "venue_id": "venue_scpl_downtown",
              "title": "In-person Tech Help @ Aptos",
              "event_time": "September 21 2026 1:00pm - 3:00pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-21T13:00:00",
              "event_date": "2026-09-21",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Are you stuck with a technology question? You can make a free appointment with a tech savvy library staff member!",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16997608",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7d0bec2d04ba",
              "venue_id": "venue_scpl_downtown",
              "title": "Tales to Tails at Garfield Park",
              "event_time": "September 21 2026 3:30pm - 4:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-21T15:30:00",
              "event_date": "2026-09-21",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "Practice reading to a certified therapy dog! Registration is required.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/16941700",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_daaf7ef9a99b",
              "venue_id": "venue_scpl_downtown",
              "title": "The Santa Cruz Poetry Project",
              "event_time": "September 21 2026 4:00pm - 5:30pm",
              "venue_name": "Santa Cruz Public Library",
              "event_start": "2026-09-21T16:00:00",
              "event_date": "2026-09-21",
              "venue_address": "224 Church St, Santa Cruz, CA 95060",
              "description": "A poetry workshop anyone who would like to establish a writing practice in a safe and encouraging environment.",
              "event_types": [
                "workshop",
                "literary"
              ],
              "price_info": "",
              "url": "https://santacruzpl.libnet.info/event/15564992",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_scpl_downtown",
                  "source_name": "Santa Cruz Public Library",
                  "fetched_at": "2026-08-22T20:23:00.247534Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_scpl_downtown|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6728cf3f0222",
              "venue_id": "venue_the_freight__salvage",
              "title": "Bobby McFerrin: Circlesongs",
              "event_time": "2026-09-21T11:30:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-21T11:30:00",
              "event_date": "2026-09-21",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Account Login Cart Time remaining: 00:00 Enter Promo Code Promo Code (Optional) Activate Code Promo Code View Cart 0 Your cart has expired Your order contained expired items and your shopping cart has been emptied. Close Enter Promo Code Bobby McFerrin and MOTION: Circlesongs, Monday, September 21, 2026 12:00PM Event Summary Bobby McFerrin and Motion Read More Hide 10-time Grammy-winner Bobby McFerrin 's mission is to get the world singing. So, he's singing with MOTION almost every Monday afternoon right here at The Freight to welcome even more voices into the circle! Join Bobby and Bay Area’s MOTION featuring Bryan Dyer, David Worm , and Destani Wolf . They will lead Circlesongs at noon and encourage everyone to bring a spirit of adventure, curiosity, trust, and joy. Let it free your voice. Find your place in the circle. “You get people together and get them singing, and you instantly knock down all the walls – the creeds, the gender, age and race differences, everything. You’re all one at that point, lifting your voices.” – Bobby McFerrin Additional Options View Full Calendar Item details Date Monday, September 21, 2026 12:00PM Name Bobby McFerrin and MOTION: Circlesongs Description Please Note: Donor discount applied at checkout. Interested in donating? Click here. Tickets: $40.00 (includes fees) Doors: 11:30AM; Show: 12:00PM Please Note: Donor discount applied at checkout. Interested in donating? Click here. Tickets: $40.00 (includes fees) Doors: 11:30AM; Show: 12:00PM Select your tickets Available Groups Select Other Sold Out! General Admission Please select a group to display sections. Choose an available section to see ticket options Quantity for General Admission General Admission $35.00 ticket + $5.00 fees Price Quantity 0 1 2 3 4 5 6 7 8 9 10 Quantity General Admission Price Quantity 0 1 2 3 4 5 6 7 8 9 10 Additional information Americans with Disabilities Act Accessible Seating Accessible seating is only to be reserved for guests with disabilities and the",
              "event_types": [
                "live_music"
              ],
              "price_info": "$40\n(INCLUDES ALL FEES)",
              "url": "https://secure.thefreight.org/15627/16135",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bfba00a8c950",
              "venue_id": "venue_the_freight__salvage",
              "title": "Ricki Lee Jones Vinyl Listening Party",
              "event_time": "2026-09-21T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-21T19:00:00",
              "event_date": "2026-09-21",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Account Login Cart Time remaining: 00:00 Enter Promo Code Promo Code (Optional) Activate Code Promo Code View Cart 0 Your cart has expired Your order contained expired items and your shopping cart has been emptied. Close Enter Promo Code Community Mondays: Rickie Lee Jones Vinyl Listening Party @ Tessier Winery, September 21, 2026 7:30PM Event Summary From September 14, 2026 7:30PM to December 7, 2026 7:30PM September 21, 2026 7:30PM Community Mondays: Rickie Lee Jones Vinyl Listening Party @ Tessier Winery 2026 CM: Fall Grab a glass of natural wine and settle in at Tessier Winery in Berkeley's Gilman Wine District for an evening spinning Ricki Lee Jones vinyl before her headlining set at the Celebrate The Freight Gala . Please note that this Community Monday event takes place at 1335 Fourth St, Berkeley, CA 94710. About Rickie Lee Jones Rickie Lee Jones is an American musician, storyteller, two-time Grammy winner and eight-time nominee who has been inspiring pop culture for decades, beginning with her star-making self-titled debut and the seminal Pirates. Named the “premiere song-stylist and songwriter of her generation” by The New Yorker and “The Duchess of Coolsville” by Time magazine, Jones released her Grammy-nominated album Pieces of Treasure in 2023, a reunion with Russ Titelman, who produced her first two records. Jones’ celebrated memoir \"Last Chance Texaco\" was named Book of the Year by MOJO and on Best of Year lists by NPR, Pitchfork, and many more. The Independent writes, “There has always been something defiant about Rickie Lee Jones . . . a voice from a dream, elusive yet familiar, transcendent, a messenger from another place.” About Tessier Winery Tessier Winery was founded in 2009 and focuses on small, hand-crafted lots of natural wines. In the cellar, we practice native fermentations and minimal intervention to allow each vineyard to speak for itself. We have selectively chosen organically farmed family owned and operated vineyards that are in local",
              "event_types": [
                "film"
              ],
              "price_info": "SLIDING SCALE: $0+",
              "url": "https://secure.thefreight.org/16027/16086",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ad021e5bee98",
              "venue_id": "venue_sfjazz_miner",
              "title": "BRANFORD MARSALIS QUARTET",
              "event_time": "2026-09-21 1:15 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-09-21T13:15:00",
              "event_date": "2026-09-21",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "2011 NEA Jazz Master Branford Marsalis represents “the highest echelon of jazz tenor saxophonists” ( Los Angeles Times ). For this exclusive matinee concert co-sponsored by The Jazz Cruise, the New Orleans-born composer and bandleader returns with his superlative quartet featuring pianist Joey Calderazzo , bassist Eric Revis , and drummer Justin Faulkner to perform a hard-driving mix of standards and his own superlative compositions. As the eldest musical sibling in jazz’s most famous contemporary clan, Marsalis parlayed his formative experiences in Art Blakey’s Jazz Messengers and his brother Wynton’s band into simultaneous careers as a performer, educator, composer, label owner, and bandleader with over 30 albums to his name. A three-time GRAMMY winner and 18-time nominee, Marsalis’ insatiable desire to expand horizons has found him performing with the New York Philharmonic, embracing hip hop influences with his Buckshot LaFonque project, leading the house band on The Tonight Show with Jay Leno , working in the pop realm with Sting and Bruce Hornsby, and composing the score to the Oscar-winning 2020 film Ma Rainey’s Black Bottom . He recorded his acclaimed 2013 live solo recital, In My Solitude , at Grace Cathedral as part of the 30th San Francisco Jazz Festival, and his latest album and Blue Note debut, 2025’s Belonging , is a reinterpretation of piano great Keith Jarrett’s landmark 1974 ECM quartet release of the same name.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/branford-marsalis-jazz-cruise/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_46b27625ed1d",
              "venue_id": "venue_the_independent",
              "title": "SONDRE LERCHE",
              "event_time": "9.21.2026 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-21T20:00:00",
              "event_date": "2026-09-21",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "ACROBATS '26 US TOUR | with The Saxophones",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/sondre-lerche/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-08-31T10:40:49.218190Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8bce69b36603",
              "venue_id": "venue_yoshis",
              "title": "MUSIC MONDAY: THE THROWBACK SERIES",
              "event_time": "September 21, 2026 - 8:00PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-21T20:00:00",
              "event_date": "2026-09-21",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "THROWBACK GOSPEL MUSIC EXPERIENCE",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$45 - $50",
              "url": "https://yoshis.com/events/buy-tickets/the-gens-throwback-gospel-music-experience/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_da4c1e10a797",
              "venue_id": "venue_ivy_room",
              "title": "Happy Hour",
              "event_time": "Sep 21 4:00 PM",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-21T16:00:00",
              "event_date": "2026-09-21",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Happy Hour - No Fuss, just good times! EVERY MONDAY! Mon Sep 21 Minimum age: 21 and over Show time: 4:00 PM Doors open: 4:00 PM Free Description 🍻 Mondays Are For Happy Hour Starting this July, we are officially throwing open the doors every Monday at 4:00 PM for a good old-fashioned happy hour. No stage production, no fuss—just good drinks, excellent company, and Chaos behind the bar holding down the vibe. From now on, when you think of Mondays, think of us. Mondays are for Hangin' Out. Hope to see you all very soon!",
              "event_types": [
                "community"
              ],
              "price_info": "FREE",
              "url": "https://www.ivyroom.com/#/events/194933",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-08-31T11:55:01.170393Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2f0448ef7696",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC NIGHT",
              "event_time": "Mon Sep 21 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-21T19:00:00",
              "event_date": "2026-09-21",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "A legendary Monday night tradition at the Hotel Utah Saloon, this open mic is a cornerstone of San Francisco's singer-songwriter community. Local and visiting artists sign up via a random drawing to perform a song on the historic stage.",
              "event_types": [
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/OPEN-MIC-NIGHT/690190?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-08-31T12:12:52.447528Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7d1443ce07bd",
              "venue_id": "venue_winters",
              "title": "Steal Your Monday",
              "event_time": "2026-09-21T18:00:00",
              "venue_name": "Winters",
              "event_start": "2026-09-21T18:00:00",
              "event_date": "2026-09-21",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "Live music evening featuring Marcus Rezak, Anna Elva, and Scott Guberman.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQH16EymZ_LmagItISZvHDJiwDXLZypvb7pZj_DvfKK0y4p8UVwuldoKbx78agbdEcXhBlmAEeVvpcpAnJSFILh2lWOABxro3blxWpogiXuj-K07jofjzkdvaCpBJuNAZOIKGQDUpgKcYUlcaHJ2CXA0g2kf8hrp6We4TFMvfjmVjPI1b9mIhY-4YeliaOl8HG7PeptR",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-08-31T12:39:12.063314Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_winters|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_9fcd2049b12e",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-09-21T14:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-21T14:00:00",
              "event_date": "2026-09-21",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-21",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_c983eac24139",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-09-21T18:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-21T18:00:00",
              "event_date": "2026-09-21",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-21",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 2,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_48dfaa59346b",
              "venue_id": "venue_chase_center",
              "title": "Premium Suites",
              "event_time": "2026-09-21",
              "venue_name": "Chase Center",
              "event_start": "2026-09-21",
              "event_date": "2026-09-21",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "At Select-A-Suite on Thursday, September 17, 2026, not only will you have the opportunity to reserve your suites before they are released to the public, but attendees can also enjoy complimentary food and beverage tastings throughout the event, network with fans and business professionals, and have the opportunity to capture a photo with the Larry O'Brien Trophies.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://chasecenter.com/premium-experiences/premium-suites/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-08-31T17:38:13.687686Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-09-21",
              "run_id": "run_bed5be826f7c",
              "run_label": "Premium Suites, Sep 10 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fb759c344003",
              "venue_id": "venue_tupelo",
              "title": "THE San Francisco Invitational Jam",
              "event_time": "Monday September 21st 9:00PM - 1:00AM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-21T21:00:00",
              "event_date": "2026-09-21",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "Hosted by Andrew Coutti and Young Blake on drums and bass,, this is the definitive Jam in San Francisco. Each week there will be a different special guest vocalist, as well as myriad other exceptional local talent popping in no doubt. Talk to either host before the gig if you're interested in performing. We take this shit seriously though, so bring your chops :)",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_86322c7a9304",
              "venue_id": "venue_madrone_art_bar",
              "title": "Motown on Mondays",
              "event_time": "September 21 @ 7:00 pm - 1:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-21T19:00:00",
              "event_date": "2026-09-21",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "It’s only Monday if you treat it like one! DJ Gordo Cabeza and weekly guests play originals, exclusive remixes and close relatives of your favorite Motown songs. The most talked about night in town! Starting at 7pm. Doors 4pm – 2am / 21 & up w/ID $5 cover after 8pm",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$5 cover",
              "url": "https://madroneartbar.com/event/motown-on-mondays-79-2025-12-01-2026-04-27/2026-09-21/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3fb22ab56586",
              "venue_id": "venue_stookeys_blue_room",
              "title": "SWITCH/BOARD! Hold the Phone!!",
              "event_time": "Mon, Sep 21 at 7-8:30pm",
              "venue_name": "Stookey's Blue Room",
              "event_start": "2026-09-21T19:00:00",
              "event_date": "2026-09-21",
              "venue_address": "1523 Sutter St, San Francisco, CA 94109",
              "description": "Showtime 7-8:30pm\nFollowed by a 9pm screening of the film that inspired the plot!",
              "event_types": [
                "theater",
                "film"
              ],
              "price_info": "",
              "url": "https://www.stookeysblueroom.com/event-details/fancypants-presents-switch-board-hold-the-phone",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stookeys_blue_room",
                  "source_name": "Stookey's Blue Room",
                  "fetched_at": "2026-09-03T12:18:49.462512Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stookeys_blue_room|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d8cc3a5992c2",
              "venue_id": "venue_local_edition",
              "title": "Barbary Coast Jazz Band",
              "event_time": "September 21, 2026 8:00 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-09-21T20:00:00",
              "event_date": "2026-09-21",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Come enjoy lively jazz with this fantastic ensemble- Barbary Coast Jazz Band performs every other Monday!Bob Schulz - Lead/CornetDon Neely - ReedsClint Baker - TromboneBill Reinhart - TubaScott Anthony - BanjoMarty Eggers - Piano",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/2ttzfhe3geh6ftj-xjknk-fef4f-bera7-t7bc5-4lma3-sbh4r-fwkyz-w5l9c-gn73d-7wmf9-cjj7e-ahsrj-2amd9-yxk8g-5mdpc-3c9yl-658hs-rnf9l",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-09-03T12:59:31.047351Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0772f13ce2b1",
              "venue_id": "venue_pier_23",
              "title": "MAHJONG MONDAYS",
              "event_time": "Monday, September 21, 2026 4:00 PM\n              \n              7:00 PM",
              "venue_name": "Pier 23",
              "event_start": "2026-09-21T16:00:00",
              "event_date": "2026-09-21",
              "venue_address": "23 The Embarcadero,San Francisco, CA 94111",
              "description": "Join us on Monday 4-7pm for Social Play! Bring a friend and your Mahjong set (or use one of ours). Whether you're a seasoned player or new to the game, everyone is welcome! Enjoy our spectacular views, yummy food and wide range of specialty cocktails. As my favorite teacher, Dinna Davis, inspires: “Let’s Mahj On!”",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://www.pier23cafe.com/events/2026/4/27/mahjong-mondays-4-7pm-a78k5-5bbbw-396sw-dm9x2-pmnfm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pier_23",
                  "source_name": "Pier 23",
                  "fetched_at": "2026-09-03T13:40:31.659066Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pier_23|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d5fb465a4813",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Flavio Souza",
              "event_time": "21 September 2026",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-21",
              "event_date": "2026-09-21",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Multi-instrumentalist Flavio Souza brings a versatile repertoire of blues, pop, and jazz to the wine bar stage. Settle in for an evening of smooth live melodies alongside your favorite pour.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-09-03T13:50:21.930604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8c027b9e584a",
              "venue_id": "venue_kilowatt",
              "title": "Dream 99, Summer of Peril & Modern Daze",
              "event_time": "Mon 21 Sep ― 6:30pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-21T18:30:00",
              "event_date": "2026-09-21",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "**DREAM 99:** https://www.instagram.com/dream99_worldwide/?hl=en\n\n**Summer of Peril:** https://www.instagram.com/summerofperilofficial/?hl=en\n\n**Modern Daze:...",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$19.06",
              "url": "https://link.dice.fm/gdb65e1ecd0d?pid=ff10e59d",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kilowatt",
                  "source_name": "Kilowatt",
                  "fetched_at": "2026-09-04T10:33:38.052132Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-21",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-09-22": {
          "date": "2026-09-22",
          "updated_at": "2026-09-04T10:23:37.278356Z",
          "events": [
            {
              "event_id": "evt_2cdcf6aeb4ab",
              "venue_id": "venue_the_chapel",
              "title": "Temples: The BLISS Tour",
              "event_time": "Tue Sep 22 2026 8:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-09-22T20:00:00",
              "event_date": "2026-09-22",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "English psychedelic rock band Temples presents The BLISS Tour with Poppy Jean Crawford and visuals by Zach Rodell.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35.00-$40.00",
              "url": "https://wl.seetickets.us/event/temples-the-bliss-tour/687358?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-04-18T07:10:52.541367Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_chapel|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3ed18f1292eb",
              "venue_id": "venue_castro_theater",
              "title": "MELANIE C",
              "event_time": "September 22, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-22T20:00:00",
              "event_date": "2026-09-22",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "A year into her ventures as a DJ, Chisholm found herself back in stadiums for the Spice Girls’ landmark 2019 reunion shows, which marked their first performance together since the 2012 Olympics. Culminating in three sold-out nights at Wembley Stadium, they proved that girl power is truly alive and well. ‘It was one of the most incredible Spice Girls experiences that I’ve ever had,’ she says. ‘I was so present. We played Wembley in 1998 and I don’t remember a thing. When you’re not in the eye of the storm, you can really appreciate it.’ Twenty-five years after the Spice Girls ushered in a new wave of pop, forever altering the musical landscape and paving the way for a new generation of stars, their legacy continues. From Billie Eilish to Charli XCX, so many artists cite the iconic girl band as an inspiration. ‘Those artists inspire me, and so it feels full circle,’ says Chisholm, who worked with repeat collaborator Nadia Rose for the rousing Flick Of The Wrist. ‘I love working with new musicians, it keeps things exciting, I’ve always been interested in youth culture.’",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/melanie-c-260922",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-06T11:49:34.527189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2b417e9d68b4",
              "venue_id": "venue_masonic_hall",
              "title": "Chance The Rapper: Coloring Book Tour",
              "event_time": "Sep 22 8pm",
              "venue_name": "Masonic Hall",
              "event_start": "2026-09-22T20:00:00",
              "event_date": "2026-09-22",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Grammy-winning artist Chance the Rapper celebrates the 10th anniversary of his groundbreaking mixtape, \"Coloring Book,\" with a special performance at the Masonic Hall. The evening features live renditions of his iconic tracks alongside a gospel choir and special guests.",
              "event_types": [],
              "price_info": "Varies by seating",
              "url": "https://www.ticketmaster.com/chance-the-rapper-coloring-book-10-year-anniversary-tour-san-francisco-california-09-22-2026/event/1C0060A9E2A82937",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-05-15T18:46:32.071656Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_masonic_hall|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_461f3a181914",
              "venue_id": "venue_mountain_winery",
              "title": "Peter Hook & The Light",
              "event_time": "Sep 22, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-22T19:30:00",
              "event_date": "2026-09-22",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "North American Tour 2026 | Performing ‘Get Ready’ live and in full plus a selection of Joy Division and New Order’s Greatest Hits",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1106343",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-06-02T10:55:16.293558Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c3a580c35844",
              "venue_id": "venue_the_independent",
              "title": "DANA AND ALDEN",
              "event_time": "9.22 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-22T20:00:00",
              "event_date": "2026-09-22",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List Papa's Boat Tour Dana and Alden Tue, Sep 22 Doors: 7:30 pm | Show: 8:00 pm All Ages Please note - there is a delivery delay set for 2 weeks prior to show. Buy Tickets Share + Google Calendar Related Events Novulent Jun 19 Buy Tickets Mamas Gun Jun 20 Buy Tickets Artists Dana and Alden Jazz duo Dana & Alden have always had a wanderlust, something they credit to their maternal grandfather. Affectionately known as Papa, he was the kind of person others naturally gravitate towards. It was a photograph from one of his trips to Asia that inspired the Eugene, OR duo’s new album Papa’s Boat . In the image, Papa is looking out across the horizon, standing next to his boat Sŵn y Môr (Welsh for “Sound of the Sea”). “I think so much of what Alden and I are doing comes from just watching him live his own unique life,” says Dana. Alden agrees. “His emboldened, passionate personality gave us permission to be our own selves, to be unconventional and draw outside of the box.” Recorded with Malcolm Catto in London in March 2025, Papa’s Boat combines all their childhood love and global experience to create an ecstatic sound built on Dana’s saxophone and Alden’s drums. Recorded with the duo’s backing band—Ebba Dankel (vocals and keys), Andrew Mitchell (bass), Eli Torgersen (vocals and guitar), and Salim Charvet (sax and synths)— Papa’s Boat is rooted in jazz while drawing influence from indie, pop, rap, bossa nova, and beyond. A hypnotic combination of sax and buzzing synths on “Lighthouse” sets the tone for an album that uses water as both a reflective surface and a body to get lost in. Elsewhere, there are collaborations with Mei Semones, Melanie Charles, and legendary Brazilian songwriter Marcos Valle, a hero figure to the band who appears on “El Gaucho” and “Friendship Is A Boat.” Throughout its runtime, Papa’s Boat sails purposefully between memories of the past and visions of a brighter future. It doesn’t just commemorate their Papa as a beloved character—it sh",
              "event_types": [
                "live_music"
              ],
              "price_info": "ON SALE 6.5",
              "url": "https://www.theindependentsf.com/tm-event/dana-and-alden/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-06-04T10:57:29.269475Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-10T10:33:42.275715Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_independent|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6c0eff6a1d2b",
              "venue_id": "venue_august_hall",
              "title": "Bilal, Yaya Bey",
              "event_time": "sep 22 8pm",
              "venue_name": "August Hall",
              "event_start": "2026-09-22T20:00:00",
              "event_date": "2026-09-22",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$50.60",
              "url": "https://www.augusthallsf.com/tm-event/bilal/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-17T10:47:20.580351Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-06-19T15:55:10.225476Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2a2e9533d204",
              "venue_id": "venue_siesta_valley_bowl",
              "title": "Cécile McLorin Salvant",
              "event_time": "Tuesday Sep 22, 2026 8:00 PM",
              "venue_name": "Siesta Valley Bowl",
              "event_start": "2026-09-22T20:00:00",
              "event_date": "2026-09-22",
              "venue_address": "100 Gateway Blvd, Orinda, CA 94563",
              "description": "Composer, singer, and visual artist, Cécile McLorin Salvant is passionate about storytelling and exploring connections between vaudeville, blues, folk traditions, theater, jazz, and baroque music. An eclectic curator, unearthing rarely recorded, forgotten songs with strong narratives, power dynamics, twists, and humor.She won the Thelonious Monk competition in 2010 and received Grammy Awards for three consecutive albums. In 2020, she received the MacArthur fellowship and Doris Duke Artist Award. Her Nonesuch Records projects \"Ghost Song\" (2022) and \"Mélusine\" (2023) each received two Grammy nominations. In 2025, Nonesuch released \"Oh Snap\" — twelve personal songs composed and produced by Salvant.‍‍",
              "event_types": [
                "live_music",
                "jazz",
                "folk",
                "rnb_soul_funk"
              ],
              "price_info": "$83.55 – $145.40 (includes fees)",
              "url": "https://www.ticketmaster.com/cecile-mclorin-salvant-orinda-california-09-22-2026/event/1C0064A40286E2D8",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_siesta_valley_bowl",
                  "source_name": "Siesta Valley Bowl",
                  "fetched_at": "2026-06-23T12:35:02.656256Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-30T18:59:56.104919Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_siesta_valley_bowl|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3dbab0ed8ddd",
              "venue_id": "venue_california_theatre",
              "title": "Don Giovanni - Opera San José",
              "event_time": "2026-09-22T19:30:00",
              "venue_name": "California Theatre",
              "event_start": "2026-09-22T19:30:00",
              "event_date": "2026-09-22",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "Relive the epic adventure on the big screen as Symphony San Jose performs John Williams's iconic, Oscar-winning score live. This special concert event brings the beloved cinematic masterpiece to life with full orchestral accompaniment.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-06-23T13:09:42.892074Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_symphony_san_jose",
                  "source_name": "Symphony San Jose",
                  "fetched_at": "2026-06-28T03:08:41.619469Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_california_theatre|2026-09-22",
              "run_id": "run_285788e23a8b",
              "run_label": "Don Giovanni - Opera San José, Sep 13 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2955994b311d",
              "venue_id": "venue_bill_graham_civic",
              "title": "JAY PARK WITH SPECIAL GUEST LNGSHOT",
              "event_time": "September 22, 2026 8:00pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-09-22T20:00:00",
              "event_date": "2026-09-22",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "Serenades & Body Rolls",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "Buy Tickets",
              "url": "https://billgrahamcivic.com/events/jay-park-260922",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bill_graham_civic",
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-07-31T18:09:07.165513Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ac92a44a3702",
              "venue_id": "venue_the_fillmore",
              "title": "Dogstar: ALL IN NOW TOUR",
              "event_time": "Tue Sep 22, 2026",
              "venue_name": "The Fillmore",
              "event_start": "2026-09-22T20:00:00",
              "event_date": "2026-09-22",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "Alternative rock band Dogstar performs live at The Fillmore as part of their ALL IN NOW TOUR.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/dogstar-all-in-now-tour-san-francisco-california-09-22-2026/event/1C0064F48B7D69D0",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-08-08T10:16:43.793530Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_fillmore|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b0400a5a1ab6",
              "venue_id": "venue_the_warfield",
              "title": "The Front Bottoms",
              "event_time": "sep 22 8pm",
              "venue_name": "The Warfield",
              "event_start": "2026-09-22T20:00:00",
              "event_date": "2026-09-22",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "11 Years of Back On Top",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.thewarfieldtheatre.com/events/detail/1455621",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-08-30T10:51:17.166201Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_41f11fd406a8",
              "venue_id": "venue_kilowatt",
              "title": "Scan Rowe",
              "event_time": "sep 22 8pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-09-22T20:00:00",
              "event_date": "2026-09-22",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "21+",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$26.76",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_kilowatt|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_5c160f9650c7",
              "venue_id": "venue_sap_center",
              "title": "Sharks vs Golden Knights",
              "event_time": "2026-09-22T19:00:00",
              "venue_name": "SAP Center",
              "event_start": "2026-09-22T19:00:00",
              "event_date": "2026-09-22",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "NHL matchup featuring the San Jose Sharks facing off against the Vegas Golden Knights.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://www.sapcenter.com/events/detail/sharks-vs-golden-knights",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-08-20T12:59:28.269789Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sap_center|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_4d7de5294f6e",
              "venue_id": "venue_the_riptide",
              "title": "Metzger's Field Band",
              "event_time": "Tuesday, September 22 6:00 PM - 8:00 PM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-22T18:00:00",
              "event_date": "2026-09-22",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "60s country and jazz for Happy Hour",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a2aa91501b49",
              "venue_id": "venue_the_riptide",
              "title": "Eileen's Punk Rock and Schlock Karaoke",
              "event_time": "September 22 9:30 PM - September 23 12:30 AM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-22T21:30:00",
              "event_date": "2026-09-22",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_834025928490",
              "venue_id": "venue_crepe_place",
              "title": "Casanostra",
              "event_time": "2026-09-22",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-22T20:00:00",
              "event_date": "2026-09-22",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "FREE",
              "url": "https://thecrepeplace.com/shows-list/casanostra-thursday-january-15-from-530-to-730pm-on-the-garden-stage-free-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e09da990875b",
              "venue_id": "venue_act_theater",
              "title": "Alfred Hitchcock's North by Northwest",
              "event_time": "2026-09-22",
              "venue_name": "ACT Theater",
              "event_start": "2026-09-22",
              "event_date": "2026-09-22",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "Adapted and directed by Emma Rice, this theatrical adaptation of Alfred Hitchcock's classic film brings the thrilling, comedic spy chase to the stage [4.1.3]. It follows a suave advertising executive who is mistaken for a government agent and pursued across the country.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-08-22T13:54:28.481304Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_act_theater|2026-09-22",
              "run_id": "run_8f5d72a961cd",
              "run_label": "Alfred Hitchcock's North by Northwest, Sep 22 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_c12c93cde198",
              "venue_id": "venue_verdi_club",
              "title": "The Woodchopper's Ball",
              "event_time": "2026-09-22T21:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-09-22T21:00:00",
              "event_date": "2026-09-22",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.verdiclub.net/events-calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-08-22T14:55:24.428239Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_verdi_club|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_446ee25a8cfd",
              "venue_id": "venue_sc_civic_auditorium",
              "title": "Santa Cruz Welcome Week Rave",
              "event_time": "Sep 22, 2026",
              "venue_name": "Santa Cruz Civic Auditorium",
              "event_start": "2026-09-22",
              "event_date": "2026-09-22",
              "venue_address": "307 Church St, Santa Cruz, CA 95060",
              "description": "EMD / Top 40 | 1900 Capacity | 18+\n\n🚨 BACK TO SCHOOL PARTY 🚨\n\n🥳 THE CITY’S BIGGEST 18+ BACK-TO-SCHOOL PARTY IS GOING DOWN FOR ONE NIGHT ONLY\n\n🏙 WE’RE TAKING OVER THE TOP NIGHTCLUB IN THE CITY\n\n🤯 BIG CROWD. BIG PRODUCTION. BIG FIRST NIGHT BACK.\n\n💥 HOUSE • REMIXES • EDM ALL NIGHT 💥",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.santacruzca.gov/Government/City-Departments/Parks-Recreation/Civic-Auditorium/Box-Office/Civic-Events/Santa-Cruz-Welcome-Week-Rave",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sc_civic_auditorium",
                  "source_name": "Santa Cruz Civic Auditorium",
                  "fetched_at": "2026-08-22T15:24:21.454854Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sc_civic_auditorium|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f5a8ad3afaad",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Alice for Wonderland",
              "event_time": "2026-09-22",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-22",
              "event_date": "2026-09-22",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-22",
              "run_id": "run_304a2c902844",
              "run_label": "Alice for Wonderland, Aug 22 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_b3f24115a9eb",
              "venue_id": "venue_the_418_project",
              "title": "Project Y2K",
              "event_time": "Tuesday, September 22, 2026\n9:00 PM - 12:00 AM",
              "venue_name": "The 418 Project",
              "event_start": "2026-09-22T21:00:00",
              "event_date": "2026-09-22",
              "venue_address": "155 S River St, Santa Cruz, CA 95060",
              "description": "Immersive music and visual experience inspired by the Y2K era.",
              "event_types": [
                "dj_party",
                "dance"
              ],
              "price_info": "",
              "url": "https://the418project.org/events/project-y2k",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_418_project",
                  "source_name": "The 418 Project",
                  "fetched_at": "2026-08-22T20:30:04.363966Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_418_project|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c979bb7af424",
              "venue_id": "venue_bookshop_santa_cruz",
              "title": "FALLING FOR BOOKS TOGETHER: A BOOK GROUP MIXER",
              "event_time": "Tue, 9/22/2026 7:00pm - 8:00pm",
              "venue_name": "Bookshop Santa Cruz",
              "event_start": "2026-09-22T19:00:00",
              "event_date": "2026-09-22",
              "venue_address": "1520 Pacific Ave, Santa Cruz, CA 95060",
              "description": "FREE IN-STORE EVENT: The kids are back in school, leaves are starting to change color, and autumn is right around the corner. It's time to get back to book groups—and we have just the thing! Join...",
              "event_types": [
                "literary"
              ],
              "price_info": "",
              "url": "https://bookshopsantacruz.com/fall-2026-book-group-mixer",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bookshop_santa_cruz",
                  "source_name": "Bookshop Santa Cruz",
                  "fetched_at": "2026-08-27T22:11:24.045604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bookshop_santa_cruz|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_43a545cc43d3",
              "venue_id": "venue_the_freight__salvage",
              "title": "The Meditations",
              "event_time": "2026-09-22T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-22T19:00:00",
              "event_date": "2026-09-22",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Legendary Jamaican roots reggae vocal group The Meditations perform their classic harmonies and conscious, uplifting anthems.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$39/$44\n(INCLUDES ALL FEES)",
              "url": "https://secure.thefreight.org/16042/16043",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_59a59867cacd",
              "venue_id": "venue_sfjazz_miner",
              "title": "JAZZ AT LINCOLN CENTER ORCHESTRA",
              "event_time": "2026-09-22 11:00 AM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-09-22T11:00:00",
              "event_date": "2026-09-22",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Formed in 1988, the Jazz at Lincoln Center Orchestra has been the standard bearer of the large group format for over 35 years. The 14-piece assemblage of virtuosos has contemporized the notion of a \"big band” by simultaneously honoring the rich heritage of Duke Ellington and Louis Armstrong while debuting a stunning variety of commissions from jazz’s greatest names including Joe Henderson, Christian McBride, Freddie Hubbard, Joe Lovano, and Wynton Marsalis. Assembled as an outgrowth of the Lincoln Center’s Classical Jazz series, the orchestra was originally directed by composer, arranger, and Duke Ellington scholar David Berger before Wynton Marsalis became Artistic Director in 1991, issuing their debut release Portraits by Ellington the following year. Since then, the orchestra has constantly toured the world as cultural ambassadors for the music and released no less than 45 albums including Wynton Marsalis’s 1997 jazz oratorio Blood on the Fields , winning the first Pulitzer Prize for Music ever awarded to a jazz ensemble. Featuring a stellar lineup including saxophonist Sherman Irby , trumpeters Ryan Kisor and Marcus Printup, and former SFJAZZ Collective drummer Obed Calvaire , the band performs a selection of timeless compositions highlighting the power of swing. Please note that Wynton Marsalis will not be performing at this concert.",
              "event_types": [
                "live_music",
                "jazz",
                "classical"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/jazz-at-lincoln-center-orchestra/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_780f499eb547",
              "venue_id": "venue_sfjazz_miner",
              "title": "Jazz at Lincoln Center Orchestra",
              "event_time": "2026-09-22 7:30 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-09-22T19:30:00",
              "event_date": "2026-09-22",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "A 2011 NEA Jazz Master and arguably the most famous jazz musician alive, trumpeter Wynton Marsalis is an iconic figure in the evolution of the art form and a tireless advocate for jazz as America’s classical music. On this bittersweet occasion, he returns for his final Bay Area appearances with the Jazz at Lincoln Center Orchestra before he steps down after the 2026-27 Season. From his New Orleans beginnings and fiery debut with legendary drummer Art Blakey’s Jazz Messengers to his string of acclaimed albums, Marsalis has amassed an unrivaled number of awards and accolades, including nine GRAMMYs and the Pulitzer Prize for Music, the first ever awarded to a jazz artist. Since 1988, he led the Jazz at Lincoln Center Orchestra, a 15-piece assemblage of virtuosos which has contemporized the notion of a \"big band,\" simultaneously honoring the rich heritage of Duke Ellington and Louis Armstrong while debuting a stunning variety of commissions from illustrious names including Joe Henderson, Christian McBride, Freddie Hubbard, Joe Lovano and of course, Wynton himself. With these farewell performances, the 2022 SFJAZZ Gala honoree turns this page in his artistic evolution in grand style, appearing one last time on the Miner stage with the greatest large jazz ensemble on earth. Don’t miss it!",
              "event_types": [
                "live_music",
                "jazz",
                "classical"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/jazz-at-lincoln-center-orchestra-wynton-marsalis/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_9207d0ae8210",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-09-22",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-09-22",
              "event_date": "2026-09-22",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-09-22",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e83f20081457",
              "venue_id": "venue_paramount_theatre",
              "title": "LILY ALLEN PERFORMS WEST END GIRL",
              "event_time": "09/22/2026 8:00 PM",
              "venue_name": "Paramount Theatre",
              "event_start": "2026-09-22T20:00:00",
              "event_date": "2026-09-22",
              "venue_address": "2025 Broadway, Oakland, CA 94612",
              "description": "Live Nation presents singer-songwriter Lily Allen performing her critically acclaimed album West End Girl in its entirety.",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.paramountoakland.org/events/detail/lily-allen-performs-west-end-girl",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_paramount_theatre",
                  "source_name": "Paramount Theatre",
                  "fetched_at": "2026-08-28T15:07:11.727744Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_paramount_theatre|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_92156da8a897",
              "venue_id": "venue_dawn_club",
              "title": "LUKE WESTBROOK BAND",
              "event_time": "Tuesday, September 22, 2026 8:00 PM 11:00 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-09-22T20:00:00",
              "event_date": "2026-09-22",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Early exposure to jazz through educational programs (b.1979 SF, CA) allowed Luke to participate in the Monterey Jazz Festival, and the Grammy in the Schools programs as part of the San Francisco Jazz Festival.In the years following those early days Luke has secured his reputation as a first call Jazz guitar player in the thriving San Francisco Bay Area music scene (performing at The SF Jazz Center, Bach Dancing and Dynamite, La Peña Cultural Center, Black Cat Supper Club, Mr. Tipples, Cafe Du Nord, Jupiter, and many other venues).Alongside performing in Bay Area bars and clubs Luke has also provided music for well known clients at prestigious event venues— here are a few notable past clients: Carnegie Mellon University, Waymo, The SF Olympic Club, Bohemian Club, SFCDMA, DeLoitte, UCSF/Marc Benioﬀ, General Electric, Netflix.Alongside pursuing his ambitions of live performance he’s also explored other professional duties in the field of music working as a professional sheet music transcriptionist and also as a commercial music composer (Wall Street Journal, AmFar Foundation, and the NFL).\n\n\n  \n#block-acbbfc1b9f510b83e8a5 {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n\n\n  }\n\n  #block-acbbfc1b9f510b83e8a5 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-acbbfc1b9f510b83e8a5 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-acbbfc1b9f510b83e8a5 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-acbbfc1b9f510b83e8a5 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-acbbfc1b9f510b83e8a5 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-acbbfc1b9f510b83e8a5 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/luke-westbrook-b5ma2-tkz9h-yw7y8-5k6y8-gswyw-kynzk-2slmn-7tem2-h9bl2-7n9pr-ad7b8-fjkc5",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-08-28T15:32:50.415811Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9a8ce7fd5f84",
              "venue_id": "venue_exploratorium",
              "title": "Daytime Members-Only Hours",
              "event_time": "2026-09-22",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-22",
              "event_date": "2026-09-22",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Please consider joining us today ! Members are the backbone of our organization and help ensure the continuity of our mission to create inquiry-based experiences that transform learning worldwide. We can’t wait to see you at the museum.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/member-hours",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-22",
              "run_id": "run_e38dfc952011",
              "run_label": "Daytime Members-Only Hours, Aug 30 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8e4f92cf7adc",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-09-22",
              "venue_name": "De Young",
              "event_start": "2026-09-22",
              "event_date": "2026-09-22",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-22",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5ebfccf4d24b",
              "venue_id": "venue_rootstock_arts",
              "title": "Melodies of Vrindavan",
              "event_time": "Tue, 22 Sep 2026\n6:00 PM (PDT)",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-09-22T18:00:00",
              "event_date": "2026-09-22",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "RootStock Arts is hosting a Weekly Raga Concert + Jam Session at 5741 Telegraph Ave in Oakland . Running 6:00 PM to 9:00 PM on Tuesdays in September , this all-ages, alcohol-free community event features a two-set lineup each week. The 1st Set ($10+ sliding scale/donation) highlights a rotating featured act. September 22nd features: Melodies of Vrindavan - Vaijayanthi Jagannathan and Samhitha Dayanand Following the opening performance, the 2nd Set transitions into an Open, Raga-friendly Classical Jam Session , inviting musicians and classical music enthusiasts of all levels to participate and collaborate.",
              "event_types": [
                "live_music",
                "indian_classical"
              ],
              "price_info": "",
              "url": "https://www.viewcy.com/event/weekly_raga_concert__4",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-08-29T00:16:02.821734Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c88fc59fe490",
              "venue_id": "venue_punch_line",
              "title": "FRANKIE MARCOS",
              "event_time": "Sep 22, 2026 7:30 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-22T19:30:00",
              "event_date": "2026-09-22",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Winner of the San Francisco International Comedy Competition, Frankie Marcos delivers his high-energy, Mexipino perspective on culture and life's chaos.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/frankie-marcos-san-francisco-california-09-22-2026/event/1C0064C9CD5B8575",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_814c752a1e78",
              "venue_id": "venue_yoshis",
              "title": "KARAOKE NIGHT AT YOSHI'S",
              "event_time": "September 22, 2026 - 6:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-22T18:30:00",
              "event_date": "2026-09-22",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "BACK BY POPULAR DEMAND",
              "event_types": [
                "community"
              ],
              "price_info": "$30",
              "url": "https://yoshis.com/events/buy-tickets/fran-boogie-karaoke-night-1/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a2236c7a8a49",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue Sep 22 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-22T19:00:00",
              "event_date": "2026-09-22",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "This weekly event at the Hotel Utah Saloon invites local musicians and bluegrass enthusiasts to gather and jam together [1.1.2]. It is a free, 21+ community session that celebrates the Bay Area's vibrant bluegrass scene.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690215?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-08-31T12:12:52.447528Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_04f23df94f1b",
              "venue_id": "venue_chase_center",
              "title": "Premium Suites",
              "event_time": "2026-09-22",
              "venue_name": "Chase Center",
              "event_start": "2026-09-22",
              "event_date": "2026-09-22",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "At Select-A-Suite on Thursday, September 17, 2026, not only will you have the opportunity to reserve your suites before they are released to the public, but attendees can also enjoy complimentary food and beverage tastings throughout the event, network with fans and business professionals, and have the opportunity to capture a photo with the Larry O'Brien Trophies.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://chasecenter.com/premium-experiences/premium-suites/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-08-31T17:38:13.687686Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-09-22",
              "run_id": "run_bed5be826f7c",
              "run_label": "Premium Suites, Sep 10 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_059914c5caa0",
              "venue_id": "venue_tupelo",
              "title": "DJ Purple Karaoke",
              "event_time": "Tuesday September 22nd 9:00PM - 1:00AM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-22T21:00:00",
              "event_date": "2026-09-22",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "DJ Purple is BACK! Since COVID imploded our world, we have gotten more calls wondering when Karaoke w/ DJ Purple was returning than anything else, and we sell a lot of ribs! Go get your vaccination shots, drink some tea with honey, and belt out your best songs with your friends. Fog machine standard.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0acae67df628",
              "venue_id": "venue_f8",
              "title": "INTERZONE: Cyber Night",
              "event_time": "2026-09-22T21:00:00",
              "venue_name": "F8",
              "event_start": "2026-09-22T21:00:00",
              "event_date": "2026-09-22",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "INTERZONE Cyber Night featuring guest DJs KAJE, Hopelesss, and resident Byter spinning darkwave, EBM, and cyber industrial tunes.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$5 (Free before 10:00 PM)",
              "url": "https://ra.co/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-09-02T10:39:00.610887Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_f8|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_9ac0b15a0970",
              "venue_id": "venue_madrone_art_bar",
              "title": "LIVE MODEL TUESDAY SKETCH",
              "event_time": "September 22 @ 6:30 pm - 8:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-22T18:30:00",
              "event_date": "2026-09-22",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "LIVE MODEL TUESDAY SKETCH hosted by Sketchboard Co. $15 fee to draw the model Every Tuesday 6:30 to 8:30 PM with live music by Twango Bring your own materials No Photos Please Respect the Models",
              "event_types": [
                "live_music",
                "folk",
                "workshop",
                "art"
              ],
              "price_info": "$15 fee",
              "url": "https://madroneartbar.com/event/livemodelsketch-2026-06-23/2026-09-22/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_965def18cf85",
              "venue_id": "venue_madrone_art_bar",
              "title": "Karaoke",
              "event_time": "September 22 @ 9:30 pm - 12:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-22T21:30:00",
              "event_date": "2026-09-22",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "KARAOKE With host Lauren Yellow Music starts at 9:30pm",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/glitter-tears-karaoke-18-2026-02-04-2026-02-04-2026-04-07-2026-04-21/2026-09-22/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a5b33239deeb",
              "venue_id": "venue_kuumbwa_jazz",
              "title": "Al Di Meola Acoustic Ensemble",
              "event_time": "2026-09-22T19:00:00",
              "venue_name": "Kuumbwa Jazz Center",
              "event_start": "2026-09-22T19:00:00",
              "event_date": "2026-09-22",
              "venue_address": "320-2 Cedar St, Santa Cruz, CA 95060",
              "description": "A Meet & Greet VIP Package is available to purchase with a ticket to the 7 PM show!",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kuumbwa_jazz",
                  "source_name": "Kuumbwa Jazz Center",
                  "fetched_at": "2026-09-03T10:24:11.929813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kuumbwa_jazz|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c1b5100ef826",
              "venue_id": "venue_kuumbwa_jazz",
              "title": "Al Di Meola Acoustic Ensemble",
              "event_time": "2026-09-22T21:00:00",
              "venue_name": "Kuumbwa Jazz Center",
              "event_start": "2026-09-22T21:00:00",
              "event_date": "2026-09-22",
              "venue_address": "320-2 Cedar St, Santa Cruz, CA 95060",
              "description": "Al Di Meola occupies a rare and enduring position in contemporary music as a living legend.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kuumbwa_jazz",
                  "source_name": "Kuumbwa Jazz Center",
                  "fetched_at": "2026-09-03T10:24:11.929813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kuumbwa_jazz|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0f4df40befe5",
              "venue_id": "venue_brick_and_mortar",
              "title": "FLORENCE ROAD",
              "event_time": "9.22 Show: 8:00PM",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-09-22T20:00:00",
              "event_date": "2026-09-22",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Event Details Popscene and Brick & Mortar Music Hall Presents Florence Road September 22, 2026 8:00 pm PDT (Doors: 7:00 pm ) Brick and Mortar Music Hall , 1710 Mission Street , San Francisco, CA ( map ) Sold Out + Google Calendar Florence Road JUST ANNOUNCED Felukah — HibisKiss Tour October 28, 2026 Thoughts on Bowling November 27, 2026 BIIRD (Night 2) September 20, 2026 MoneyHillCasino October 11, 2026 Hayden Everett October 29, 2026 Follow us on Instagram Join the Brick & Mortar Newsletter",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.brickandmortarmusic.com/tm-event/florence-road/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-09-03T11:13:51.689688Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c19377b3e4a2",
              "venue_id": "venue_local_edition",
              "title": "The Local Edition Jazz Orchestra",
              "event_time": "September 22, 2026 8:00 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-09-22T20:00:00",
              "event_date": "2026-09-22",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Live every Tuesday exclusively at Local Edition! The Local Edition Jazz Orchestra is a diverse group of long-time friends that have played alongside one another for years. The ensemble ranges from having as little as 8 to as many as 18 participants performing with occasional guest singers such as Billy Valentine, Bud E. Luv (aka Bobby Vickers), and Tom Scott.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/kwazn5t9r7ak59x-h3dwl-7hzkw-awb8n-7my9y-xbp55-lecjc-ayh5z-nn75p-82brr-yenxa-3apc9-ltjtp-t4pb2-7ww2b-ncbzf-3bayn-l7tyd",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-09-03T12:59:31.047351Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4f75261ee50b",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Happy Hour",
              "event_time": "22 September 2026",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-22",
              "event_date": "2026-09-22",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Take advantage of Etcetera Wine Bar's happy hour specials on select drinks and light fare. It offers a relaxed neighborhood setting to unwind after work or kick off an evening of live music.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-09-03T13:50:21.930604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_12b1aebf62af",
              "venue_id": "venue_caravan_lounge",
              "title": "Karaoke with Ronnie Roach",
              "event_time": "09/22/2026",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-09-22",
              "event_date": "2026-09-22",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "Welcome to The Caravan Lounge THE CARAVAN LOUNGE is a friendly, owner-operated bar located in the heart of downtown San Jose. As well as being one of San Jose’s oldest live music venues, the Caravan provides other fun activities such as karaoke, comedy, burlesque, pool table, and DJ nights. The Caravan is also extremely affordable for those trying to stretch a budget. And let’s not forget the music! All the shows at the Caravan are FREE! Open 7 days a week 2pm – Close “Aside from the obvious draw of affordable libations poured by heavy-handed barkeeps, The Caravan sets itself apart from other no-frills bars as the place to go to see up-and-coming bands. The bar has hosted plenty of local bands’ first shows, and regularly features smaller touring acts. If you’re a music fan always on the lookout for your new favorite group, make sure to pay attention to who is coming to Caravan.” -Metro FEATURED VIDEOS – Go to our YouTube Channel by clicking here to see more… SEPTEMBER 2026 TUES. SEPT 1st- Karaoke with Ronnie Roach WED. SEPT 2nd – The Caravan Lounge Comedy Show hosted by Chelsea Costanza THURS. SEPT 3rd – SWEAT with DJ SNAQ FRI. SEPT 4th – Rebelskamp, Magick Blues Band, TBA SAT. SEPT 5th – Skool Of Sharks TUES. SEPT 8th- Karaoke with Ronnie Roach WED. SEPT 9th – The Caravan Lounge Comedy Show Hosted by Nyoki THURS. SEPT 10th – Shrine Goth DJ Night with Hex Embrace, C_Death, and Owen FRI. SEPT 11th – Circus Of Sin 10 Year Sinnaversary! Hosted By Some Guy SAT. SEPT. 12th – CaveFest II We Love You Curtis Castro! Abysmal Piss, Ominous Ruin, Lost To The Void TUES. SEPT 15th – Karaoke with Ronnie Roach WED. SEPT 16th -The Caravan Lounge Comedy Show Hosted by Ato Walker THURS. SEPT 17th – TBA FRI. SEPT 18th – TBA SAT. SEPT 19th – Facekicker, American Standard, 12 Steps To Nothing TUES. SEPT 22nd – Karaoke with Ronnie Roach WED. SEPT 23rd- The Caravan Lounge Comedy Show hosted by Matt Kennedy THURS. SEPT 24th – Sweethearts DJ Night FRI. SEPT 25th – Ding Mao, Diamantide, Clou",
              "event_types": [
                "community"
              ],
              "price_info": "FREE",
              "url": "http://s172518151.onlinehome.us/caravan/site/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-09-03T14:20:40.572990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e4855d1f44df",
              "venue_id": "venue_poor_house_bistro",
              "title": "Sharks Pre-Game Party",
              "event_time": "2026-09-22T16:00:00",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-09-22T16:00:00",
              "event_date": "2026-09-22",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-09-04T10:11:13.938872Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0244361b37fa",
              "venue_id": "venue_cafe_du_nord",
              "title": "vaultboy",
              "event_time": "9/22/2026 8:00 pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-09-22T20:00:00",
              "event_date": "2026-09-22",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Live Nation Presents: vaultboy - ARE YOU EVER COMING BACK? TOUR Tue, Sep 22 Doors: 7:00 pm | Show: 8:00 pm Tickets: $28.30 - $62.29 Buy Tickets All Ages In 2018, vaultboy started livestreaming himself singing, performing and also gaming full-time under a previous alias. It wasn’t until late 2020 that he posted his debut TikTok as vaultboy, a name that pays homage to his love of video games, specifically the Fallout series. He began sharing his original music and found, with his fun and relatable lyrics, that he was able to deeply connect with the audience that has grown around him. VIP Add-On Without General Admission *THIS IS AN UPGRADE AND DOES NOT INCLUDE A GENERAL ADMISSION TICKET. YOU MUST ALSO PURCHASE A GENERAL ADMISSION TICKET TO THE SHOW TO BE GRANTED ENTRY TO THE VENUE AND PARTICIPATE IN THE VIP UPGRADE EXPERIENCE. Individual photo opportunity with vaultboy Commemorative VIP laminate Signed exclusive VIP poster Q&A with vaultboy + short acoustic performance First access to vaultboy merch Group photo in front of stage with vaultboy VIP entry is typically granted 1 hour before General Admission entry. The exact time for the vaultboy VIP Experience will be provided by email no later than 24 hours prior to the show. Time will also be posted on vaultboy’s Discord, https://discord.gg/vaultboy VIP package is subject to change - Artist Presale: Wednesday July 8th @ 10AM On sale: Friday, July 10th @ 10AM - For any event that is listed as 18 or 21 and over, ANY ticket holder unable to present valid identification indicating that they are of age will not be admitted to this event, and will not be eligible for a refund. Any event listed as All Ages, means 6 years of age or older. ALL tickets are standing room only unless otherwise specified. If you need special accommodations, contact info@cafedunord.com. Support acts are subject to change without refund. Professional Cameras are not allowed without prior approval. Professional Camera defined as detachable lens or of",
              "event_types": [
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://cafedunord.com/tm-event/vaultboy-are-you-ever-coming-back/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cafe_du_nord_and_swedish_american_hall",
                  "source_name": "Cafe Du Nord and Swedish American Hall",
                  "fetched_at": "2026-09-04T10:21:43.132381Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-09-22",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            }
          ]
        },
        "2026-09-23": {
          "date": "2026-09-23",
          "updated_at": "2026-09-04T10:39:45.217156Z",
          "events": [
            {
              "event_id": "evt_92bb31397927",
              "venue_id": "venue_the_chapel",
              "title": "Temples: The BLISS Tour",
              "event_time": "Wed Sep 23 2026 8:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-09-23T20:00:00",
              "event_date": "2026-09-23",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "Second night of Temples' The BLISS Tour at The Chapel, supported by Poppy Jean Crawford and visuals by Zach Rodell.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35.00-$40.00",
              "url": "https://wl.seetickets.us/event/Temples-The-BLISS-Tour/687377?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-04-18T07:10:52.541367Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_chapel|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0b3837d52b61",
              "venue_id": "venue_the_ritz",
              "title": "Wednesday 13",
              "event_time": "2026-09-23T18:30:01-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-09-23T18:30:01",
              "event_date": "2026-09-23",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "Horror punk icon Wednesday 13 brings a theatrical rock performance to the Ivy Room with special guests Above Snakes.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25 Advance – $30 Day-of-Show",
              "url": "https://www.ticketweb.com/event/wednesday-13-above-snakes-the-ritz-tickets/14887063",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-05-11T13:54:34.279254Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_ritz|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_723703d40303",
              "venue_id": "venue_masonic_hall",
              "title": "Boz Scaggs",
              "event_time": "Sep 23 7pm/8pm",
              "venue_name": "Masonic Hall",
              "event_start": "2026-09-23T19:00:00",
              "event_date": "2026-09-23",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Legendary singer, songwriter, and guitarist Boz Scaggs takes the stage to perform classic hits spanning rock, blues, and blue-eyed soul. The Rhythm Review 2026 tour showcases decades of timeless musicianship.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$64+",
              "url": "https://www.ticketmaster.com/boz-scaggs-rhythm-review-2026-tickets-san-francisco-california-09-23-2026/event/1C006095B5B82A9D",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-05-15T18:46:32.071656Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_masonic_hall|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ccc5a799ab0c",
              "venue_id": "venue_mountain_winery",
              "title": "José González",
              "event_time": "Sep 23, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-23T19:30:00",
              "event_date": "2026-09-23",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Against The Dying Of The Light Tour | Phosphorescent (Solo)",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1384687",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-05-30T11:00:08.698537Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2948bd27f6f3",
              "venue_id": "venue_castro_theater",
              "title": "SÉBASTIEN TELLIER",
              "event_time": "September 23, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-23T20:00:00",
              "event_date": "2026-09-23",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "We last left him with the synthetic storytelling of his 2020 album Domesticated. Since then, Sébastien Tellier has been far from idle: he has worked on three film soundtracks, released two EPs, directed projects for some of his peers, and delivered one of the most memorable performances at the opening ceremony of the 2024 Paris Paralympic Games with his timeless La Ritournelle. Twenty years earlier, the release of this track on his second album Politics had already established Tellier as one of the most charismatic artists of the 21st century. A multi-talented multi-instrumentalist, he has explored a variety of musical landscapes spanning pop, folk(s), and electronic music. The result is a wealth of tracks that have become cult favorites: Universe, L’amour et la violence, Divine, Roche, Cochon Ville, Fingers of Steel, A Ballet, and more. Throughout it all, he has maintained his signature style, long hair and beard, cap, and dark sunglasses, which has led to frequent collaborations with top fashion houses, captivated by Sébastien Tellier’s untamed dandyism.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "Buy Tickets",
              "url": "https://thecastro.com/events/sebastien-tellier-260923",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-06-02T13:14:05.988982Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3cc00efac2a9",
              "venue_id": "venue_hi_lo_club",
              "title": "Angela LaFlamme Quartet of Shennanigans",
              "event_time": "2026-09-23T19:00:00",
              "venue_name": "Hi-Lo Club",
              "event_start": "2026-09-23T19:00:00",
              "event_date": "2026-09-23",
              "venue_address": "1423 Polk St, San Francisco, CA 94109",
              "description": "A live performance by the Angela LaFlamme Quartet of Shennanigans featuring Robert Kennedy on accordion.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://angelalaflamme.com/shows",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hi_lo_club",
                  "source_name": "Hi-Lo Club",
                  "fetched_at": "2026-06-21T10:42:30.515350Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_hi_lo_club|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_f50dfed37734",
              "venue_id": "venue_california_theatre",
              "title": "Don Giovanni - Opera San José",
              "event_time": "2026-09-23T19:30:00",
              "venue_name": "California Theatre",
              "event_start": "2026-09-23T19:30:00",
              "event_date": "2026-09-23",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "Relive the epic adventure on the big screen as Symphony San Jose performs John Williams's iconic, Oscar-winning score live. This special concert event brings the beloved cinematic masterpiece to life with full orchestral accompaniment.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-06-23T13:09:42.892074Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_symphony_san_jose",
                  "source_name": "Symphony San Jose",
                  "fetched_at": "2026-06-28T03:08:41.619469Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_california_theatre|2026-09-23",
              "run_id": "run_285788e23a8b",
              "run_label": "Don Giovanni - Opera San José, Sep 13 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e597c5a0158a",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Cola / Artificial Go",
              "event_time": "Wednesday September 23 2026 7:30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-23T19:30:00",
              "event_date": "2026-09-23",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Wednesday September 23 2026\n  7:30PM doors -- music at 8:00PM\n  •••  ALL AGES\n$22 in advance / $25 at the door\n$27.51 in advance [22 face value + 5.51 service fee]\nCola\n post-punk\nArtificial Go\n post-punk chamber pop\nBeafsteek\n alt-country",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$ 22 in advance / $25 at the door",
              "url": "http://www.bottomofthehill.com/20260923.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-07-05T11:13:43.716331Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-12T11:45:29.263581Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_39e39d81243d",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "My Hero Academia In Concert",
              "event_time": "Sep 23, 2026 @ 7:00pm",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-23T19:00:00",
              "event_date": "2026-09-23",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Celebrating a decade of the beloved anime, this immersive concert experience features Yuki Hayashi's iconic score performed live by a 15-piece band. The performance is synchronized with striking high-definition visuals of the series' most memorable heroic moments.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://sanjosetheaters.org/event/78350554-20260923190000",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "San Jose CPA",
                  "fetched_at": "2026-07-13T10:23:51.933005Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_898263e6b60a",
              "venue_id": "venue_bimbos_365",
              "title": "Nai Palm",
              "event_time": "2026-09-23T20:00:00",
              "venue_name": "Bimbos 365",
              "event_start": "2026-09-23T20:00:00",
              "event_date": "2026-09-23",
              "venue_address": "1025 Columbus Ave, San Francisco, CA 94133",
              "description": "Another Planet presents Nai Palm (of Hiatus Kaiyote) North America 2026 tour with Cazeaux O.S.L.O. 21 and up.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "ON SALE WED. 7/29",
              "url": "https://bimbos365club.com/tm-event/nai-palm-of-hiatus-kaiyote/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bimbos_365",
                  "source_name": "Bimbos 365",
                  "fetched_at": "2026-07-31T15:11:49.329056Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bimbos_365|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5440af12043f",
              "venue_id": "venue_thee_stork_club",
              "title": "Girl Chow, Wiseacre, Holybasil909",
              "event_time": "sep 23 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-09-23T20:00:00",
              "event_date": "2026-09-23",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10/$12",
              "url": "https://wl.seetickets.us/event/girl-chow-wiseacre-holybasil909/702169?afflky=TheeStorkClub",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-08-20T11:39:45.151719Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_4a06f01c2534",
              "venue_id": "venue_great_american_music_hall",
              "title": "The Frights, Archer Oh",
              "event_time": "sep 23 8pm",
              "venue_name": "Great American",
              "event_start": "2026-09-23T20:00:00",
              "event_date": "2026-09-23",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "YOU ARE GOING TO HATE THIS 10 YEAR ANNIVERSARY TOUR | Archer Oh | with Archer Oh",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$33.50/$38",
              "url": "https://wl.seetickets.us/event/the-frights/688972?afflky=GreatAmericanMusicHall",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-09-02T10:02:47.962874Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_23ece46f61ba",
              "venue_id": "venue_sap_center",
              "title": "2026 LE SSERAFIM TOUR 'PUREFLOW' IN SAN JOSE",
              "event_time": "2026-09-23T20:00:00",
              "venue_name": "SAP Center",
              "event_start": "2026-09-23T20:00:00",
              "event_date": "2026-09-23",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "K-pop phenomenon LE SSERAFIM brings their PUREFLOW tour to SAP Center.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.sapcenter.com/events/detail/le-sserafim",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-08-20T12:59:28.269789Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sap_center|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_424c4d1b4960",
              "venue_id": "venue_the_riptide",
              "title": "Bar Trivia with @SFTrivia",
              "event_time": "Wednesday, September 23 7:00 PM - 9:00 PM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-23T19:00:00",
              "event_date": "2026-09-23",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "Wednesday nights we're here to help reinforce how smart you are or remind you otherwise. Come in and test your knowledge with the folks @SFTrivia",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_334af47f0fd1",
              "venue_id": "venue_crepe_place",
              "title": "Cayuga Jazz Band",
              "event_time": "2026-09-23",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-23T20:00:00",
              "event_date": "2026-09-23",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "FREE",
              "url": "https://thecrepeplace.com/shows-list/cayuga-jazz-band-wednesday-april-29-from-530-to-730-on-the-garden-stage-free-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3073e20ffc5d",
              "venue_id": "venue_abbott_square",
              "title": "TRIVIA NIGHT",
              "event_time": "Wednesday, September 23, 2026 6:30 PM - 8:00 PM",
              "venue_name": "Abbott Square Market",
              "event_start": "2026-09-23T18:30:00",
              "event_date": "2026-09-23",
              "venue_address": "725 Front St, Santa Cruz, CA 95060",
              "description": "Come test your knowledge, win some prizes and have some hand crafted cocktails!",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://www.abbottsquaremarket.com/events/65tdbmgknbyx7mm87a6rfr8kfjfya6-hmd5m-9xrll",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_abbott_square",
                  "source_name": "Abbott Square Market",
                  "fetched_at": "2026-08-22T12:39:51.694804Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_abbott_square|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cd6acb87f7ed",
              "venue_id": "venue_act_theater",
              "title": "Alfred Hitchcock's North by Northwest",
              "event_time": "2026-09-23",
              "venue_name": "ACT Theater",
              "event_start": "2026-09-23",
              "event_date": "2026-09-23",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "\"I am thrilled, excited and perhaps a little apprehensive to bring the iconic North by Northwest home to the US! I just hope that American audiences will love it as much as our British audiences did. What I am not apprehensive about is bringing its message; one of nations coming together in peace and friendship to make the world a better place. I think we can all raise a glass to that! I am also itching to return to A.C.T. and San Francisco, a piece of my heart will always remain in California and I cannot wait to return to your beautiful theatre, vivid audience and magic state.\" —Emma Rice",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-08-22T13:54:28.481304Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_act_theater|2026-09-23",
              "run_id": "run_8f5d72a961cd",
              "run_label": "Alfred Hitchcock's North by Northwest, Sep 22 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_03315d68a4d5",
              "venue_id": "venue_verdi_club",
              "title": "Scuff Queer Line Dancing & Two-Stepping",
              "event_time": "2026-09-23T20:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-09-23T20:00:00",
              "event_date": "2026-09-23",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance",
                "community"
              ],
              "price_info": "",
              "url": "https://www.verdiclub.net/events-calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-08-22T14:55:24.428239Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_verdi_club|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_96129c17d3cd",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Little Shop of Horrors",
              "event_time": "2026-09-23",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-09-23",
              "event_date": "2026-09-23",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Book & Lyrics by Howard Ashman, Music by Alan Menken. Based on the film by Roger Corman, Screenplay by Charles Griffith. Directed by Ben Villegas Randle, Musical Direction by Jad Bernardo, Choreography by Leslie Waggoner",
              "event_types": [
                "theater",
                "live_music"
              ],
              "price_info": "",
              "url": "https://nctcsf.org/event/little-shop/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-08-26T11:06:39.262369Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-09-23",
              "run_id": "run_5315ef200ae4",
              "run_label": "Little Shop of Horrors, Sep 12 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_390c78f64960",
              "venue_id": "venue_bookshop_santa_cruz",
              "title": "CURTIS RELIFORD, MADNESS TO SURRENDER",
              "event_time": "Wed, 9/23/2026 7:00pm - 8:00pm",
              "venue_name": "Bookshop Santa Cruz",
              "event_start": "2026-09-23T19:00:00",
              "event_date": "2026-09-23",
              "venue_address": "1520 Pacific Ave, Santa Cruz, CA 95060",
              "description": "FREE IN-STORE EVENT: Bookshop Santa Cruz welcomes local icon Curtis Reliford who will share his new memoir Madness to Surrender—a story of transformation, truth, and spreading peace and joy. From...",
              "event_types": [
                "literary"
              ],
              "price_info": "",
              "url": "https://bookshopsantacruz.com/curtis-reliford",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bookshop_santa_cruz",
                  "source_name": "Bookshop Santa Cruz",
                  "fetched_at": "2026-08-27T22:11:24.045604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bookshop_santa_cruz|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_abf428ee3b2f",
              "venue_id": "venue_guild_theatre",
              "title": "Tommy Emmanuel",
              "event_time": "SEP\n23\n8:00 PM",
              "venue_name": "Guild Theatre",
              "event_start": "2026-09-23T20:00:00",
              "event_date": "2026-09-23",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "DOORS OPEN: 7:00 PM • SHOW: 8:00 PM",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://www.guildtheatre.com/shows/tommy-emmanuel-24-sep",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-08-28T10:40:15.787828Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_guild_theatre|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f5d3900236ea",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-09-23",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-09-23",
              "event_date": "2026-09-23",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-09-23",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_67d4ebe203c6",
              "venue_id": "venue_dawn_club",
              "title": "JINX JONES",
              "event_time": "Wednesday, September 23, 2026 8:00 PM 11:00 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-09-23T20:00:00",
              "event_date": "2026-09-23",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Jinx Jones Biography (Jazz Trio)\"Jinx is a guitar virtuoso who seamlessly moves from rockabilly to jazz to twang and back again, sometimes in the same song. Those with a liner note obsession will remember Jinx’s playing on En Vogue’s “Free Your Mind.”(San Francisco Chronicle)Jinx Jones boasts a prolific career spanning from the 1990s, during which he has been a prominent figure in the San Francisco Bay Area jazz scene. His musical journey, deeply rooted in R&B and Soul collaborations with luminaries such as Solomon Burke and En Vogue, has laid a solid groundwork for his ventures into the realms of soul jazz and hard bop. Jones' distinctive approach to jazz is deeply influenced by the venerable traditions set forth by iconic guitarists such as Wes Montgomery, Kenny Burrell, Barney Kessel, and George Benson.“You've heard fretboard prestidigitator Jinx before: he lent studio guitar and bass to En Vogue's hit, \"Free Your Mind.\" Professionally impressive as it is, though, that credit does not represent his own chosen styling. Jinx's headlong endeavors draw freely and unto satiation from classic rocka-billy, vintage jazz, and spartan honky tonk….” D. C. Larson, Crackerjack Magazine, UKIn recent times, Jinx Jones has achieved international acclaim with the release of his latest solo jazz album, \"Blue Gardenia.\" This album showcases his guitar artistry, striking a perfect balance between delicacy and energy, reminiscent of the soulful and profound styles of the genre's legendary masters.“Jinx Jones is out there. Four or five nights a week, the great guitar player with the immaculate pompadour can be found at various Bay Area venues, working the stage, doing his thing. The Colorado native came up serving as a sideman to rock ’n’ roll royalty, playing with the likes of Chuck Berry and Solomon Burke.”Aidin Vaziri, San Francisco Chronicle\n\n\n  \n#block-8e20b2a1b619f03b1510 {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n\n\n  }\n\n  #block-8e20b2a1b619f03b1510 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-8e20b2a1b619f03b1510 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-8e20b2a1b619f03b1510 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-8e20b2a1b619f03b1510 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-8e20b2a1b619f03b1510 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-8e20b2a1b619f03b1510 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/jinx-jones-nbljb-e66tl-c2r2h-pceah-p6mej-msdc8-9gsjz-zc7m8-75x7f-m3yej-wjfs5-8zl7w-nwjdf-apr99-h258b-wehpw-mgwsa-m76ts-apanz-4xb8n-6de7c",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-08-28T15:32:50.415811Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d2373d662729",
              "venue_id": "venue_exploratorium",
              "title": "Daytime Members-Only Hours",
              "event_time": "2026-09-23",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-23",
              "event_date": "2026-09-23",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Please consider joining us today ! Members are the backbone of our organization and help ensure the continuity of our mission to create inquiry-based experiences that transform learning worldwide. We can’t wait to see you at the museum.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/member-hours",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-23",
              "run_id": "run_e38dfc952011",
              "run_label": "Daytime Members-Only Hours, Aug 30 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_999c86f4f032",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "The Best One Yet Podcast - IPO Tour",
              "event_time": "2026-09-23T20:00:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-09-23T20:00:00",
              "event_date": "2026-09-23",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "Live version of The Best One Yet podcast hosted by Nick and Jack.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.palaceoffinearts.org/event/the-best-one-yet-podcast---ipo-tour/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-08-28T21:32:02.715078Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_d6d098417fe6",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Midweek Melodies | September 23",
              "event_time": "2026-09-23T16:00:00",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-09-23T16:00:00",
              "event_date": "2026-09-23",
              "venue_address": "San Francisco, CA 94118",
              "description": "Mid-week live music break at the Golden Gate Bandshell.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://illuminate.org/event/midweek-melodies-september-23/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_illuminate_bandshell",
                  "source_name": "Illuminate Bandshell",
                  "fetched_at": "2026-08-28T22:20:33.560084Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_5a179b24826d",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-09-23",
              "venue_name": "De Young",
              "event_start": "2026-09-23",
              "event_date": "2026-09-23",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-23",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_26a637dddb2f",
              "venue_id": "venue_punch_line",
              "title": "MOHANAD ELSHIEKY",
              "event_time": "Sep 23, 2026 8:00 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-23T20:00:00",
              "event_date": "2026-09-23",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Libyan-born comedian Mohanad Elshieky combines a deceptively laid-back demeanor with whip-smart, incisive commentary on politics and culture.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/mohanad-elshieky-san-francisco-california-09-23-2026/event/1C0064BE9FC3A3DB",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_15e2abb37818",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "KORI KING: BLACK BARBIE TOUR",
              "event_time": "Wed Sep 23, 2026 7:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-09-23T19:30:00",
              "event_date": "2026-09-23",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "RuPaul's Drag Race star Kori King brings her bold drag artistry, celebrity impressions, and comedy to the stage.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/kori-king-black-barbie-tour-san-francisco-california-09-23-2026/event/1C006477C4A2C20C",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9f1bd4e43e8f",
              "venue_id": "venue_the_independent",
              "title": "GHOSTLY KISSES",
              "event_time": "9.23.2026 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-23T20:00:00",
              "event_date": "2026-09-23",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Ghostly Kisses - North America Tour 2026 | with Rosie Carney",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/ghostly-kisses/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-08-31T10:40:49.218190Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b13e9ae45014",
              "venue_id": "venue_yoshis",
              "title": "LYDIA PENSE & COLD BLOOD",
              "event_time": "September 23, 2026 - 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-23T19:30:00",
              "event_date": "2026-09-23",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "PIONEERS OF THE BAY AREA'S BRAND OF FUNK/SOUL AND R&B",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$28 - $49",
              "url": "https://yoshis.com/events/buy-tickets/cold-blood/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1b543f117a98",
              "venue_id": "venue_ivy_room",
              "title": "Chelsamina",
              "event_time": "Sep 23 7:00 PM",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-23T19:00:00",
              "event_date": "2026-09-23",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "ivy room presents - genre - r&b, soul, pop",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ivyroom.com/#/events/194878",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-08-31T11:55:01.170393Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_deda6b8f296a",
              "venue_id": "venue_cornerstone",
              "title": "The Panturas",
              "event_time": "2026-09-23T20:00:00",
              "venue_name": "Cornerstone",
              "event_start": "2026-09-23T20:00:00",
              "event_date": "2026-09-23",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Indonesian surf rock outfit The Panturas perform live at Cornerstone Berkeley.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.prekindle.com/event/62923-the-panturas-berkeley",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-08-31T14:04:10.183515Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cornerstone|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_c67013b6d359",
              "venue_id": "venue_ashkenaz",
              "title": "Rosebud",
              "event_time": "09/23/2026 7:30 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-09-23T19:30:00",
              "event_date": "2026-09-23",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "A Grateful Dead Night",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/195974",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-08-31T14:45:33.243069Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d98cad12616a",
              "venue_id": "venue_yerba_buena_center",
              "title": "GaHee Park: Behind the Curtain",
              "event_time": "2026-09-23",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-23",
              "event_date": "2026-09-23",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Park invites us to peek behind the curtain, as she lays claim to her own power as a surrealist painter working across fantasy and intimacy.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/gahee-park-behind-the-curtain/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-23",
              "run_id": "run_5353f80886f6",
              "run_label": "GaHee Park: Behind the Curtain, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_dd29f9ed039f",
              "venue_id": "venue_yerba_buena_center",
              "title": "Still Life Watercolor Painting Workshop",
              "event_time": "Wednesday, September 23, 2026, 2–4 PM",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-23T14:00:00",
              "event_date": "2026-09-23",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Create a watercolor painting through observation of still life objects.",
              "event_types": [
                "workshop"
              ],
              "price_info": "Tickets: Free with registration",
              "url": "https://ybca.org/event/free-art-workshop-still-life-watercolor-painting-9-23-26/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bdfb265e8cd3",
              "venue_id": "venue_yerba_buena_center",
              "title": "Pressing Matters: Printmaking",
              "event_time": "Wednesday, September 23, 2026, 5–8 PM",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-23T17:00:00",
              "event_date": "2026-09-23",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A hands-on, family-friendly activity for the public with Creativity Explored artists and staff demonstrating the basics of printmaking.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/pressing-matters-hands-on-printmaking-with-creativity-explored/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_37456febd0f5",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-09-23T14:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-23T14:00:00",
              "event_date": "2026-09-23",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-23",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_b91bcc67672c",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-09-23T18:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-23T18:00:00",
              "event_date": "2026-09-23",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-23",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 2,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_901a146149bd",
              "venue_id": "venue_bill_graham_civic",
              "title": "KEN CARSON",
              "event_time": "September 23, 2026 7:30pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-09-23T19:30:00",
              "event_date": "2026-09-23",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "XPERIMENTING TOUR - XAVIERSOBASED\nPRETTIFUN\nDJ MOON",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "Buy Tickets",
              "url": "https://billgrahamcivic.com/events/ken-carson-260923",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bill_graham_civic",
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-08-31T17:26:11.597790Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6e9d5fd2cb81",
              "venue_id": "venue_chase_center",
              "title": "Premium Suites",
              "event_time": "2026-09-23",
              "venue_name": "Chase Center",
              "event_start": "2026-09-23",
              "event_date": "2026-09-23",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "At Select-A-Suite on Thursday, September 17, 2026, not only will you have the opportunity to reserve your suites before they are released to the public, but attendees can also enjoy complimentary food and beverage tastings throughout the event, network with fans and business professionals, and have the opportunity to capture a photo with the Larry O'Brien Trophies.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://chasecenter.com/premium-experiences/premium-suites/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-08-31T17:38:13.687686Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-09-23",
              "run_id": "run_bed5be826f7c",
              "run_label": "Premium Suites, Sep 10 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7897a6e9275e",
              "venue_id": "venue_center_for_new_music",
              "title": "Composer Meetup",
              "event_time": "WEDNESDAY, SEPTEMBER 23, 2026 — 7:00 PM",
              "venue_name": "Center for New Music",
              "event_start": "2026-09-23T19:00:00",
              "event_date": "2026-09-23",
              "venue_address": "55 Taylor St, San Francisco, CA 94102",
              "description": "Present what you’ve been working on, ask for feedback, hear what others are up to, discuss relevant new music topics, and spend time with colleagues and good company! [More]",
              "event_types": [
                "community"
              ],
              "price_info": "Tickets: Free with RSVP!!",
              "url": "https://centerfornewmusic.com/event/composer-meetup-sep-26/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_new_music",
                  "source_name": "Center for New Music",
                  "fetched_at": "2026-09-02T10:01:53.620164Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_center_for_new_music|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e7eeb19bcf48",
              "venue_id": "venue_public_works",
              "title": "Pitch Roast Live",
              "event_time": "2026-09-23",
              "venue_name": "Public Works",
              "event_start": "2026-09-23",
              "event_date": "2026-09-23",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "Pitch Roast Live makes its San Francisco debut at Public Works.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$15+",
              "url": "https://publicsf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-09-02T11:21:34.915442Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_public_works|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_dd3ed53888bd",
              "venue_id": "venue_madrone_art_bar",
              "title": "THE TOP CHEFS POTLUCK 🎶🎤",
              "event_time": "September 23 @ 9:00 pm - 1:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-23T21:00:00",
              "event_date": "2026-09-23",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "9PM to Close, No Cover A night of Bay Area music, community, and deep cuts at Madrone. Join Top Chefs and Salōn! for a genre-bending showcase featuring live performances, DJ sets, covers, B-sides, original music, and classic favorites. This is a time to support, connect, and vibe out with the local community. Singers and musicians [&hellip;]",
              "event_types": [
                "live_music",
                "dj_party"
              ],
              "price_info": "No Cover",
              "url": "https://madroneartbar.com/event/the-top-chefs-potluck-%f0%9f%8e%b6%f0%9f%8e%a4/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_331ffd36d572",
              "venue_id": "venue_madrone_art_bar",
              "title": "Dave Easley",
              "event_time": "September 23 @ 6:30 pm - 8:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-23T18:30:00",
              "event_date": "2026-09-23",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "DAVE EASLEY 6:30-8:30PM New Orleans Slide Guitarist",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/dave-easley-3/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c73e1b28383b",
              "venue_id": "venue_kuumbwa_jazz",
              "title": "Brass Queens",
              "event_time": "2026-09-23",
              "venue_name": "Kuumbwa Jazz Center",
              "event_start": "2026-09-23T19:00:00",
              "event_date": "2026-09-23",
              "venue_address": "320-2 Cedar St, Santa Cruz, CA 95060",
              "description": "This high-energy, all-female brass band from Brooklyn blends New Orleans brass traditions with funk, soul, and pop. Audiences can expect an infectious, horn-driven performance that keeps the room moving.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kuumbwa_jazz",
                  "source_name": "Kuumbwa Jazz Center",
                  "fetched_at": "2026-09-03T10:24:11.929813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kuumbwa_jazz|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1466c8c6f413",
              "venue_id": "venue_black_cat",
              "title": "Cody Steinmann",
              "event_time": "2026-09-23 07:00 PM",
              "venue_name": "Black Cat",
              "event_start": "2026-09-23T19:00:00",
              "event_date": "2026-09-23",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50\n\n\n\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n\n\n\nGenre-defying guitar-led jazz where tradition, metal, hip-hop, and modern improvisation push into something raw and alive.\n\n\n\n\nMinneapolis-based guitarist and composer Cody Steinmann brings a fearless, high-voltage sound to Black Cat: technically sharp, emotionally direct, and built for listeners who like their jazz with edge.\n\n\n\n\nSteinmann has worked with artists including Ben Williams, JD Allen, Anthony Fung, Chris Bates, and JT Bates. His recent album Confined Spaces shows a sound rooted in jazz tradition, with a heavier, more explosive edge.\n\n\n\n\nExpect a set that moves with intensity, groove, and serious improvisational fire.\n\n\n\n\nBand Lineup:\n\nJohn Palowitch, alto saxophone\n\nCody Steinmann, guitar\n\nIsaac Coyle, bass\n\nHenry Plumb, drums",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $30 , $40 , $50",
              "url": "https://blackcatsf.turntabletickets.com/shows/12342/2026-09-23",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0b6370cf238e",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "The Guitar Hang",
              "event_time": "Wednesday, September 23, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-23T19:00:00",
              "event_date": "2026-09-23",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Wednesday, September 23, 2026 @ 7pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $30 per show",
              "url": "https://keysjazzbistro.com/event/the-guitar-hang-5/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d793d5b25474",
              "venue_id": "venue_stookeys_blue_room",
              "title": "Jazz Jam hosted by Steven Lugerner",
              "event_time": "Wed, Sep 23 at 8-11pm",
              "venue_name": "Stookey's Blue Room",
              "event_start": "2026-09-23T20:00:00",
              "event_date": "2026-09-23",
              "venue_address": "1523 Sutter St, San Francisco, CA 94109",
              "description": "No Cover/No Reservation\n\n8-11pm\n\nA $5 - $10 Donation is requested (for the house band)",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No Cover",
              "url": "https://www.stookeysblueroom.com/event-details/jazz-jam-session-hosted-by-saxophonist-steven-lugerner-10",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stookeys_blue_room",
                  "source_name": "Stookey's Blue Room",
                  "fetched_at": "2026-09-03T12:18:49.462512Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stookeys_blue_room|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4c8b73522267",
              "venue_id": "venue_pacific_film_archive",
              "title": "Exhibition Tour: Maren Hassinger",
              "event_time": "Sep 23, 2026 12:15 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-23T12:15:00",
              "event_date": "2026-09-23",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Graduate students from the Departments of African American and African Diaspora Studies and History of Art offer exhibition tours on selected Wednesdays at 12:15 PM, Sundays at 2 PM, and Free First Thursdays at 1:15 PM.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://bampfa.org/event/exhibition-tour-maren-hassinger-living-moving-growing",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_395412fdd01c",
              "venue_id": "venue_pacific_film_archive",
              "title": "It Will Be Better Before & Temo Re",
              "event_time": "Sep 23, 2026 7 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-23T19:00:00",
              "event_date": "2026-09-23",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Keto Kipiani’s It Will Be Better Before revisits images filmed five years earlier and begins a new correspondence with her then-codirector, Nicolas Kunisz. Temo Re, Anka Gujabidze’s poignant photo adventure shot in Tbilisi, reveals the rough edges of urban life and moments of beauty.",
              "event_types": [
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/it-will-be-better-and-temo-re",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d920912c9a2d",
              "venue_id": "venue_4_star_theater",
              "title": "My Neighbor Totoro",
              "event_time": "23 September 2026 7:30 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-23T19:30:00",
              "event_date": "2026-09-23",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "This acclaimed animated tale by director Hayao Miyazaki follows schoolgirl Satsuke and her younger sister, Mei, as they settle into an old country house with their father and wait for their mother to recover from an illness in an area hospital. As the sisters explore their new home, they encounter and befriend playful spirits in their house and the nearby forest, most notably the massive cuddly creature known as Totoro.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/neighbor-totoro-wed",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4ca4f78ab5a6",
              "venue_id": "venue_local_edition",
              "title": "Verve Quintet",
              "event_time": "September 23, 2026 8:30 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-09-23T20:30:00",
              "event_date": "2026-09-23",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "This fabulous quintet honors the blue note, hard bop tradition of the 1960’s and beyond. Aaron Germain - BassAdam Klipple - PianoAndrew Dixon - Tenor SaxDaniel Herrera - TrumpetJPaul Macklin - Drums",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/cnmjty7k787eg5k-dmgt5-jfap2",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-09-03T12:59:31.047351Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_04228f46666d",
              "venue_id": "venue_cat_club",
              "title": "PLAY-X-LAND",
              "event_time": "September 23, 2026 9:00 PM",
              "venue_name": "Cat Club",
              "event_start": "2026-09-23T21:00:00",
              "event_date": "2026-09-23",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "Come out and play every\nWednesday Night!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.sfcatclub.com/calendar/sgzbsw3ltzjngjx-8yj6x-hzsr2-8tx5a-bh2wx-jppm3",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cat_club",
                  "source_name": "Cat Club",
                  "fetched_at": "2026-09-03T13:24:58.141502Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_83b7d25b6f45",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Wine Special",
              "event_time": "23 September 2026",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-23",
              "event_date": "2026-09-23",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Discover curated bottle and glass specials featuring selections from Etcetera Wine Bar's extensive cellar. It is an ideal occasion to sample new varietals in a relaxed Mission District setting.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-09-03T13:50:21.930604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ecc0dd30ee84",
              "venue_id": "venue_salesforce_park",
              "title": "Transit Art Fair",
              "event_time": "2026-09-23T15:00:00",
              "venue_name": "Salesforce Park",
              "event_start": "2026-09-23T15:00:00",
              "event_date": "2026-09-23",
              "venue_address": "425 Mission St, San Francisco, CA 94105",
              "description": "Transit Art Fair at Grand Hall.",
              "event_types": [
                "art"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_salesforce_park",
                  "source_name": "Salesforce Park",
                  "fetched_at": "2026-09-03T14:07:03.174205Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_salesforce_park|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_372f0a9d0942",
              "venue_id": "venue_caravan_lounge",
              "title": "Caravan Lounge Comedy Show",
              "event_time": "09/23/2026",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-09-23",
              "event_date": "2026-09-23",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "Welcome to The Caravan Lounge THE CARAVAN LOUNGE is a friendly, owner-operated bar located in the heart of downtown San Jose. As well as being one of San Jose’s oldest live music venues, the Caravan provides other fun activities such as karaoke, comedy, burlesque, pool table, and DJ nights. The Caravan is also extremely affordable for those trying to stretch a budget. And let’s not forget the music! All the shows at the Caravan are FREE! Open 7 days a week 2pm – Close “Aside from the obvious draw of affordable libations poured by heavy-handed barkeeps, The Caravan sets itself apart from other no-frills bars as the place to go to see up-and-coming bands. The bar has hosted plenty of local bands’ first shows, and regularly features smaller touring acts. If you’re a music fan always on the lookout for your new favorite group, make sure to pay attention to who is coming to Caravan.” -Metro FEATURED VIDEOS – Go to our YouTube Channel by clicking here to see more… SEPTEMBER 2026 TUES. SEPT 1st- Karaoke with Ronnie Roach WED. SEPT 2nd – The Caravan Lounge Comedy Show hosted by Chelsea Costanza THURS. SEPT 3rd – SWEAT with DJ SNAQ FRI. SEPT 4th – Rebelskamp, Magick Blues Band, TBA SAT. SEPT 5th – Skool Of Sharks TUES. SEPT 8th- Karaoke with Ronnie Roach WED. SEPT 9th – The Caravan Lounge Comedy Show Hosted by Nyoki THURS. SEPT 10th – Shrine Goth DJ Night with Hex Embrace, C_Death, and Owen FRI. SEPT 11th – Circus Of Sin 10 Year Sinnaversary! Hosted By Some Guy SAT. SEPT. 12th – CaveFest II We Love You Curtis Castro! Abysmal Piss, Ominous Ruin, Lost To The Void TUES. SEPT 15th – Karaoke with Ronnie Roach WED. SEPT 16th -The Caravan Lounge Comedy Show Hosted by Ato Walker THURS. SEPT 17th – TBA FRI. SEPT 18th – TBA SAT. SEPT 19th – Facekicker, American Standard, 12 Steps To Nothing TUES. SEPT 22nd – Karaoke with Ronnie Roach WED. SEPT 23rd- The Caravan Lounge Comedy Show hosted by Matt Kennedy THURS. SEPT 24th – Sweethearts DJ Night FRI. SEPT 25th – Ding Mao, Diamantide, Clou",
              "event_types": [
                "comedy"
              ],
              "price_info": "FREE",
              "url": "http://s172518151.onlinehome.us/caravan/site/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-09-03T14:20:40.572990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_07670e31d00d",
              "venue_id": "venue_comstock_saloon",
              "title": "Peninsula Project",
              "event_time": "2026-09-23T20:00:00",
              "venue_name": "Comstock Saloon",
              "event_start": "2026-09-23T20:00:00",
              "event_date": "2026-09-23",
              "venue_address": "155 Columbus Ave, San Francisco, CA 94133",
              "description": "Live music performance",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_comstock_saloon",
                  "source_name": "Comstock Saloon",
                  "fetched_at": "2026-09-03T14:26:10.425617Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_comstock_saloon|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a9cd909601d4",
              "venue_id": "venue_poor_house_bistro",
              "title": "PHB Jazz Jam",
              "event_time": "2026-09-23T18:00:00",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-09-23T18:00:00",
              "event_date": "2026-09-23",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-09-04T10:11:13.938872Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_eef3446f9002",
              "venue_id": "venue_cafe_du_nord",
              "title": "NERVY",
              "event_time": "9/23/2026 8:00 pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-09-23T20:00:00",
              "event_date": "2026-09-23",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "NERVY Wed, Sep 23 Doors: 7:00 pm | Show: 8:00 pm Tickets: $100.40 Buy Tickets All Ages Rock band NERVY will hit the road across North America with an explosive live tour that will shake stages throughout the U.S. and Canada. Led by charismatic frontman Zhenya Milkovsky, the band has become the voice of a generation — uniting young people through honesty, love, and light. His songs are filled with warmth and sincerity — they speak about love and kindness, about freedom, resilience, and everything that makes us feel truly alive. Fans can expect to hear NERVY’s biggest hits — songs that have defined a decade of rock and continue to inspire millions. Don’t miss your chance to see NERVY live and be part of an unforgettable night of music, emotion, and unity. For any event that is listed as 18 or 21 and over, ANY ticket holder unable to present valid identification indicating that they are of age will not be admitted to this event, and will not be eligible for a refund. Any event listed as All Ages, means 6 years of age or older. ALL tickets are standing room only unless otherwise specified. If you need special accommodations, contact info@cafedunord.com. Support acts are subject to change without refund. Professional Cameras are not allowed without prior approval. Professional Camera defined as detachable lens or of professional grade as determined by the venue staff. When in doubt, just email us ahead of the show! We might be able to get you a Photo Pass depending on Artist’s approval. Artists NERVY Video Rock band NERVY will hit the road across North America with an explosive live tour that will shake stages throughout the U.S. and Canada. Led by charismatic frontman Zhenya Milkovsky, the band has become the voice of a generation — uniting young people through honesty, love, and light. His songs are filled with warmth and sincerity — they speak about love and kindness, about freedom, resilience, and everything that makes us feel truly alive. Fans can expect to hear NER",
              "event_types": [
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://cafedunord.com/tm-event/nervy/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cafe_du_nord_and_swedish_american_hall",
                  "source_name": "Cafe Du Nord and Swedish American Hall",
                  "fetched_at": "2026-09-04T10:21:43.132381Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_dc871d3bb9b0",
              "venue_id": "venue_sevys_aptos",
              "title": "Burgers & Brews Wednesdays",
              "event_time": "September 23, Wednesday 5:00 PM",
              "venue_name": "Sevy's Bar & Kitchen",
              "event_start": "2026-09-23T17:00:00",
              "event_date": "2026-09-23",
              "venue_address": "7500 Old Dominion Ct, Aptos, CA 95003",
              "description": "",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sevys_aptos",
                  "source_name": "Sevy's Bar & Kitchen",
                  "fetched_at": "2026-09-04T10:39:41.919005Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sevys_aptos|2026-09-23",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-09-24": {
          "date": "2026-09-24",
          "updated_at": "2026-09-04T10:39:45.225318Z",
          "events": [
            {
              "event_id": "evt_d77123b5dae0",
              "venue_id": "venue_masonic_hall",
              "title": "Stephen Wilson Jr.: Gary The Torch Tour",
              "event_time": "2026-09-24T19:30:00",
              "venue_name": "Masonic Hall",
              "event_start": "2026-09-24T19:30:00",
              "event_date": "2026-09-24",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Rising country-rock artist Stephen Wilson Jr. brings his deeply personal songwriting and powerful live performance to the Masonic Hall. The tour follows the success of his debut album and features his latest single, \"Gary\".",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Price varies",
              "url": "https://www.livenation.com/event/G5vYZ98S0_0_D/stephen-wilson-jr-gary-the-torch-tour",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-04-16T08:20:26.688992Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_masonic_hall|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f08447ea5d0f",
              "venue_id": "venue_bill_graham_civic",
              "title": "JACK WHITE",
              "event_time": "September 24, 2026 8:00pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-09-24T20:00:00",
              "event_date": "2026-09-24",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "LIVE 105 presents\nJACK WHITE LIVE 2026",
              "event_types": [
                "rock",
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://billgrahamcivic.com/events/jack-white-260924",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bill_graham_civic",
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-04-14T08:02:13.710391Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_689d3a7eceac",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Mötley Crüe: Carnival of Sins",
              "event_time": "2026-09-24T17:30:00",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-09-24T17:30:00",
              "event_date": "2026-09-24",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "Legendary rock band Mötley Crüe brings 'The Return Of The Carnival Of Sins' tour to the Shoreline Amphitheatre, promising a wild and theatrical rock show. The lineup also features special guests Tesla and Extreme for an ultimate night of classic heavy metal.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/the-return-of-the-carnival-of-mountain-view-california-09-24-2026/event/1C00636ED2F8F19C",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-04-18T08:24:47.395861Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T21:39:26.952332Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_494ef7b1e4dd",
              "venue_id": "venue_bimbos_365",
              "title": "Elder Island",
              "event_time": "Sep 24 7pm/8pm",
              "venue_name": "Bimbos 365",
              "event_start": "2026-09-24T19:00:00",
              "event_date": "2026-09-24",
              "venue_address": "1025 Columbus Ave, San Francisco, CA 94133",
              "description": "Another Planet presents HELLO BABY OKAY tour featuring Elder Island and Glassio. Doors open at 7:00 PM.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://bimbos365club.com/tm-event/elder-island/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bimbos_365",
                  "source_name": "Bimbos 365",
                  "fetched_at": "2026-05-07T14:14:59.161966Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bimbos_365|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b5b32f4546bf",
              "venue_id": "venue_mountain_winery",
              "title": "Starship & ASIA",
              "event_time": "Sep 24, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-24T19:30:00",
              "event_date": "2026-09-24",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Starship starring Mickey Thomas & ASIA featuring John Payne Thursday, September 24 Doors 3:00PM, Show 7:30PM All Ages to Enter, 21 & Over to Drink The Mountain Winery Buy Tickets Event Info No refunds or exchanges. All shows are rain or shine. Children age 3 and older require a ticket. A child under the age of 3 is considered a lap child and does not require a ticket. For directions, dining, parking, or carpool information, please visit www.mountainwinery.com. For information on how to purchase VIP season tickets including suites and box seats, please visit https://www.mountainwinery.com/vip-seating/ Doors open 2 hours prior to the show time. Seating begins 1 hour prior to the show time.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1389167",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-06-02T10:55:16.293558Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_535b7d96174b",
              "venue_id": "venue_california_theatre",
              "title": "Don Giovanni - Opera San José",
              "event_time": "2026-09-24T19:30:00",
              "venue_name": "California Theatre",
              "event_start": "2026-09-24T19:30:00",
              "event_date": "2026-09-24",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "Relive the epic adventure on the big screen as Symphony San Jose performs John Williams's iconic, Oscar-winning score live. This special concert event brings the beloved cinematic masterpiece to life with full orchestral accompaniment.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-06-23T13:09:42.892074Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_symphony_san_jose",
                  "source_name": "Symphony San Jose",
                  "fetched_at": "2026-06-28T03:08:41.619469Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_california_theatre|2026-09-24",
              "run_id": "run_285788e23a8b",
              "run_label": "Don Giovanni - Opera San José, Sep 13 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bd4c7cb40d1c",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "The Sam Chase & the Untraditional",
              "event_time": "Thursday September 24 2026 7:00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-24T19:00:00",
              "event_date": "2026-09-24",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Thursday September 24 2026  7:00PM doors -- music at 8:00PM\n  •••  ALL AGES\n$20 in advance / $25 at the door\n$25.31 in advance [20 face value +5.31 service fee]\nThe Sam Chase & the Untraditional \n folk, rock'N'roll, punk\nGinger Molasses \n soul, funk and rock",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$ 20 in advance / $25 at the door",
              "url": "http://www.bottomofthehill.com/20260924.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-07-05T11:13:43.716331Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-06T11:10:01.105806Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_48f83ab4cb5a",
              "venue_id": "venue_toms_place",
              "title": "SFEMF: September 24-26, 2026",
              "event_time": "thu sep 24-sat sep 26, 2026 8:00 PM",
              "venue_name": "Tom's Place",
              "event_start": "2026-09-24T20:00:00",
              "event_date": "2026-09-24",
              "venue_address": "3133 Deakin St, Berkeley",
              "description": "25th Annual Festival THE LAB 2958 16th Street, San Francisco, CA Moor Mother | Rrose | The Gleaners (Laetitia Sonami & Matt Robidoux) | Paul DeMarinis | Albert Yeh | Idhaz & Emily Bouton | Thomas Carnacki | (Gregory Scharpen, Cheryl E. Leonard, & Gregory Hagan) | Seth Cluett | Stefano Pilla | Blevin Blectum  SCHEDULE TBA TICKETS Coming Soon",
              "event_types": [
                "live_music",
                "experimental",
                "festival"
              ],
              "price_info": "",
              "url": "http://www.bayimproviser.com/EventView.aspx?e=xxxxx",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_toms_place",
                  "source_name": "Tom's Place",
                  "fetched_at": "2026-07-20T10:11:41.249656Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_toms_place_presents",
                  "source_name": "Tom's Place Presents",
                  "fetched_at": "2026-08-21T10:05:49.189428Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_toms_place|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6257bed02821",
              "venue_id": "venue_the_lab",
              "title": "SF Electronic Music Festival: Night 1",
              "event_time": "Thursday, September 24, 2026 8:00 PM",
              "venue_name": "The Lab",
              "event_start": "2026-09-24T20:00:00",
              "event_date": "2026-09-24",
              "venue_address": "2948 16th St, San Francisco, CA 94103",
              "description": "The 25th Annual San Francisco Electronic Music Festival brings a multi-day celebration of forward-thinking electronic, experimental, and audiovisual works to Gray Area. Attendees will experience live sets from leading and emerging sound artists.",
              "event_types": [
                "live_music",
                "electronic",
                "experimental",
                "festival"
              ],
              "price_info": "$23 / free or discounted for members",
              "url": "https://www.thelab.org/projects/2026/9/24/san-francisco-electronic-music-festival-night-1-rrose-idhaz-and-emily-bouton-blevin-blectum",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lab",
                  "source_name": "The Lab",
                  "fetched_at": "2026-07-20T10:12:37.683821Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_toms_place_presents",
                  "source_name": "Tom's Place Presents",
                  "fetched_at": "2026-07-22T01:11:52.141643Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_sf_electronic_music_festival",
                  "source_name": "SF Electronic Music Festival",
                  "fetched_at": "2026-07-26T13:32:36.140642Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_lab|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b8940c63e303",
              "venue_id": "venue_rickshaw_stop",
              "title": "MEI EHARA",
              "event_time": "Thu Sep 24 8:00PM",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-09-24T20:00:00",
              "event_date": "2026-09-24",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Supporting Talent: support tba",
              "event_types": [
                "live_music"
              ],
              "price_info": "All Ages, $22.00-$25.00",
              "url": "https://wl.seetickets.us/event/mei-ehara/699620?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-08-09T11:00:22.651910Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c9760c8aff91",
              "venue_id": "venue_the_chapel",
              "title": "Furious Tits, 37 Houses, Black Gold Sun",
              "event_time": "Thu Sep 24 2026 8:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-09-24T20:00:00",
              "event_date": "2026-09-24",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "Benefit Show for FentCheck - Supporting Talent: Furious Tits, 37 Houses, Black Gold Sun - Benefit",
              "event_types": [
                "live_music",
                "rock",
                "community"
              ],
              "price_info": "$23.00-$26.00",
              "url": "https://wl.seetickets.us/event/femmes-thems-and-friends-a-folsom-kickoff-party/702095?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-08-15T10:17:40.416260Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_chapel|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2779e5994efa",
              "venue_id": "venue_924_gilman",
              "title": "new band night",
              "event_time": "sep 24 6pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-09-24T18:00:00",
              "event_date": "2026-09-24",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "A fundraising concert at 924 Gilman spotlighting new and up-and-coming bands in support of the venue.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20/$25",
              "url": "http://maps.google.com/?q=$12",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-09-02T11:13:59.237531Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_a86cc7a55696",
              "venue_id": "venue_the_warfield",
              "title": "Paris Paloma",
              "event_time": "sep 24 8pm",
              "venue_name": "The Warfield",
              "event_start": "2026-09-24T20:00:00",
              "event_date": "2026-09-24",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "6+; no ins/outs",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$56.09",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_warfield|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_1759f7f85bc9",
              "venue_id": "venue_1015_folsom",
              "title": "TUFF SF: FOLSOM KICK OFF PARTY",
              "event_time": "2026/09/24 Thu: Sep 24 (9pm)",
              "venue_name": "1015 Folsom",
              "event_start": "2026-09-24T21:00:00",
              "event_date": "2026-09-24",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "Thursday September 24th, 2026 TUFF SF: Folsom Kick Off TUFF is more than a party. It is a living celebration of queer culture, community, and self-expression. Long before LGBTQ+ life entered the mainstream, leather bars, social clubs, and underground dance floors served as sanctuaries for those seeking connection, freedom, and belonging. These spaces became the birthplace of countless cultural movements, artistic expressions, and chosen families that continue to shape queer life today. TUFF exists to honor that legacy while carrying it forward, creating modern spaces where people can come together, discover themselves, and experience the power of community on the dance floor. Founded to fill a gap in the nightlife landscape, TUFF draws inspiration from the iconic artwork of Tom of Finland, the energy of New York City's legendary leather bars, and the earliest intersections of queer nightlife and dance music. But TUFF is not an exercise in nostalgia. It is a contemporary interpretation of those influences, combining timeless aesthetics with world-class production, immersive environments, and a soundtrack rooted in the darker, sexier, and more adventurous side of dance music. The goal has never been to recreate the past, but to build upon it, transforming fantasy into something tangible and alive. Every event is designed to feel like stepping into a world that exists just beyond everyday life. Above all, TUFF is about access, exploration, and participation. We welcome everyone, from lifelong leather and fetish enthusiasts to those taking their very first step into the culture. There are no gatekeepers standing at the door of discovery. We believe everyone starts somewhere, and that curiosity should be met with encouragement rather than exclusion. Through carefully curated music, exceptional DJs, and an atmosphere charged with confidence and possibility, TUFF creates an experience that cannot be fully understood through photos or videos alone. In just two years, TUFF h",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS | Bottle Service",
              "url": "https://wl.eventim.us/event/tuff-sf-folsom-kick-off/702588?afflky=1015Folsom",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-08-20T12:52:11.701520Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_182df6836333",
              "venue_id": "venue_the_riptide",
              "title": "Throwback Thursdays with DJ BeatsMe & DJ ChillWill",
              "event_time": "September 24 8:30 PM - September 25 1:30 AM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-24T20:30:00",
              "event_date": "2026-09-24",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "Every 4th Thursday we have DJ BeatsMe & DJ ChillWill running Hip-Hop, Funk, R&B, and Classic Rock for your enjoyment! Beats, lots of beats!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_653fff7c81ed",
              "venue_id": "venue_crepe_place",
              "title": "Death and Saxes",
              "event_time": "2026-09-24",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-24T20:00:00",
              "event_date": "2026-09-24",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "FREE",
              "url": "https://thecrepeplace.com/shows-list/death-and-saxes-thursday-july-23-from-530-to-730pm-free-show-on-the-garden-stage",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_def08c57742f",
              "venue_id": "venue_abbott_square",
              "title": "CASANOSTRA",
              "event_time": "Thursday, September 24, 2026 6:30 PM - 8:30 PM",
              "venue_name": "Abbott Square Market",
              "event_start": "2026-09-24T18:30:00",
              "event_date": "2026-09-24",
              "venue_address": "725 Front St, Santa Cruz, CA 95060",
              "description": "CASANOSTRA is a Eugene based band performing virtuoso international music, a journey throughout world cultures\n\nPriyo- Lead Guitar and Vocals\n\nJessica - Guitar, Flute, Violin and Vocals \n\nNatasha- Violin and Vocals \n\nEnahena- Percussion and vocals",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.abbottsquaremarket.com/events/casanostra",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_abbott_square",
                  "source_name": "Abbott Square Market",
                  "fetched_at": "2026-08-22T12:39:51.694804Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_abbott_square|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_890d6ff5d884",
              "venue_id": "venue_act_theater",
              "title": "Alfred Hitchcock's North by Northwest",
              "event_time": "2026-09-24",
              "venue_name": "ACT Theater",
              "event_start": "2026-09-24",
              "event_date": "2026-09-24",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "\"I am thrilled, excited and perhaps a little apprehensive to bring the iconic North by Northwest home to the US! I just hope that American audiences will love it as much as our British audiences did. What I am not apprehensive about is bringing its message; one of nations coming together in peace and friendship to make the world a better place. I think we can all raise a glass to that! I am also itching to return to A.C.T. and San Francisco, a piece of my heart will always remain in California and I cannot wait to return to your beautiful theatre, vivid audience and magic state.\" —Emma Rice",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-08-22T13:54:28.481304Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_act_theater|2026-09-24",
              "run_id": "run_8f5d72a961cd",
              "run_label": "Alfred Hitchcock's North by Northwest, Sep 22 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_d4a600fb0815",
              "venue_id": "venue_thee_stork_club",
              "title": "T-Slur Thursday - Folsom Week Special! 9/24",
              "event_time": "September 24, 2026 8:30PM",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-09-24T20:30:00",
              "event_date": "2026-09-24",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://wl.seetickets.us/event/t-slur-thursday-folsom-week-special-924/701632?afflky=TheeStorkClub",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-08-22T14:35:18.029489Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2a6704e37726",
              "venue_id": "venue_verdi_club",
              "title": "Milonga Malevaje",
              "event_time": "2026-09-24T20:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-09-24T20:00:00",
              "event_date": "2026-09-24",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance",
                "community"
              ],
              "price_info": "",
              "url": "https://www.verdiclub.net/events-calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-08-22T14:55:24.428239Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_verdi_club|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0be269dcb870",
              "venue_id": "venue_crows_nest_sc",
              "title": "THE MESSIAHS",
              "event_time": "Thursday September 24th 08:00 PM",
              "venue_name": "The Crow's Nest",
              "event_start": "2026-09-24T20:00:00",
              "event_date": "2026-09-24",
              "venue_address": "2218 East Cliff Dr, Santa Cruz, CA 95062",
              "description": "Thursday September 24th Original, home grown, Santa Cruzin' rock Starts at 08:00 PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$6 cover",
              "url": "https://www.facebook.com/originalsnailrock/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crows_nest_sc",
                  "source_name": "The Crow's Nest",
                  "fetched_at": "2026-08-22T15:19:13.909618Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crows_nest_sc|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1ab47f7975a7",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Alice for Wonderland",
              "event_time": "2026-09-24",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-24",
              "event_date": "2026-09-24",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-24",
              "run_id": "run_304a2c902844",
              "run_label": "Alice for Wonderland, Aug 22 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_1a2a545ea872",
              "venue_id": "venue_the_marsh_berk",
              "title": "Nina Wises Motion Theater",
              "event_time": "2026-09-24",
              "venue_name": "The Marsh Berk",
              "event_start": "2026-09-24",
              "event_date": "2026-09-24",
              "venue_address": "2120 Allston Way, Berkeley, CA 94704",
              "description": "Nina Wise’s Motion Theater Class Description Motion Theater® is a dynamic practice that blends movement, storytelling, and improvisation. A Motion Theater workshop is designed to cultivate spontaneity, creativity, and embodied presence. Through guided exercises, participants translate inner experience into movement and narrative, discovering fresh ways to express themselves with authenticity and ease. This workshop is both playful and skill-building. In a supportive environment, you will: Explore the connection between body, imagination, and voice Learn tools for creative expression and improvisational performance Cultivate mindfulness and presence through movement Experience the joy of spontaneous storytelling Deepen your capacity for authentic self-expression and connection No performance background is required—just curiosity and a willingness to move, play, and discover. Whether you are an artist, a seeker, an actor, a writer, or simply someone longing for a deeper relationship with creativity and embodiment, this workshop offers an opportunity to unlock new pathways of expression. What’s Included Nina Wise offers a 6-week workshop in Motion Theater® a form of improvised, autobiographical storytelling. In a Motion Theater class, you’ll learn to tell your stories on your feet, utilizing language, sound and movement as your tools of expression. In each workshop you’ll: Warm up and free up your body and voice Move in response to your inner impulses Play theater games that open you up and generate creativity and well-being Hone your writing and storytelling skills Embody your personal narrative Engage in uplifting adult play Motion Theater practices are designed to raise your spirits, inspire personal insight, create community, expand awareness, enhance self-confidence and develop presence and craft as a leader or performer. Motion has been described by both participants and audiences as funny, moving, liberating and transformational. Motion is playful, mindful self-",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://themarsh.org/nina-wises-motion-theater/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-08-22T17:28:42.838285Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_marsh_berk|2026-09-24",
              "run_id": "run_c7e0a197762f",
              "run_label": "Nina Wises Motion Theater, Sep 10 – Oct 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_97efc687ebf1",
              "venue_id": "venue_the_marsh_sf",
              "title": "Soul Story Theater",
              "event_time": "2026-09-24",
              "venue_name": "The Marsh SF",
              "event_start": "2026-09-24",
              "event_date": "2026-09-24",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "Suraya Keating’s Soul Story Theater Solo Performance Program for Women Class Description Facilitated by Suraya Keating, LMFT, Registered Drama Therapist & Soul Story Coach The Soul Story Theater Solo Performance Program is a 13-week creative journey for women who long to transform meaningful life experiences into an original solo performance. Through expressive arts, storytelling, writing, movement, and theater, you’ll discover the deeper meaning within your life’s journey while finding the courage to share your authentic voice. This transformational experience culminates in a live performance where each participant presents her original soul story before a supportive audience. During this immersive journey, you will: Unearth the story your soul has been longing to tell and shape it into a compelling, authentic performance piece. Transform limiting narratives into empowering ones, discovering the resilience, wisdom, and personal mythology woven throughout your life’s journey. Awaken your creative voice through an inspiring blend of writing, storytelling, movement, and theater while deepening your connection to your inner muse. Receive personalized coaching as you write, devise, rehearse, and confidently perform your original solo piece. Experience the power of a courageous circle of women who will witness, encourage, and celebrate your creative unfolding every step of the way. What’s Included 13-week hybrid program combining online coaching with in-person rehearsals 10 live Zoom group sessions (most Thursdays, 7:15–9:15 PM PT) 2 in-person rehearsal intensives (Saturdays, 10am-3pm) Two 55-minute individual coaching sessions via Zoom Public culminating performance with a live audience Fall 2026 Schedule Program Dates: September 10 – December 12, 2026 Zoom Sessions Thursdays | 7:15–9:15 PM (PT) September 10 & 24 October 1, 8 & 22 November 5, 12 & 19 December 3 plus Zoom Dress Rehearsal on Dec 10 In-Person Rehearsals at The Marsh SF Studio Saturdays | 10am-3pm October 3",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://themarsh.org/suraya-keating-soul-story-theater-solo-performance-program-for-women/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-08-22T17:28:42.838285Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-09-24",
              "run_id": "run_f0998957edb6",
              "run_label": "Soul Story Theater, Sep 10 – Dec 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_86827319f1ab",
              "venue_id": "venue_bargetto_winery",
              "title": "The Joint Chiefs at Thursday Night Music!",
              "event_time": "09/24/2026 6:00 pm - 8:00 pm",
              "venue_name": "Bargetto Winery",
              "event_start": "2026-09-24T18:00:00",
              "event_date": "2026-09-24",
              "venue_address": "3535 N Main St, Soquel, CA 95073",
              "description": "Join us at Bargetto Winery in Soquel on Thursday evenings for Live Music and Wine! 6-8PM No cover charge. Wine by-the-glass for purchase. Food will be available for purchase by ITALIAFIRE Open seating, no reservations required. No outside food is permitted. For more info please call: (831) 475-2258",
              "event_types": [
                "live_music"
              ],
              "price_info": "No cover charge",
              "url": "https://bargetto.com/events2/the-joint-chiefs-live-at-thursday-night-music-270/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bargetto_winery",
                  "source_name": "Bargetto Winery",
                  "fetched_at": "2026-08-22T19:05:36.747276Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bargetto_winery|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_82df422e10bf",
              "venue_id": "venue_the_418_project",
              "title": "Santa Cruz Swing Lessons",
              "event_time": "Thursday, September 24, 2026\n7:00 PM - 8:00 PM",
              "venue_name": "The 418 Project",
              "event_start": "2026-09-24T19:00:00",
              "event_date": "2026-09-24",
              "venue_address": "155 S River St, Santa Cruz, CA 95060",
              "description": "",
              "event_types": [
                "workshop",
                "dance"
              ],
              "price_info": "",
              "url": "https://the418project.org/events/santa-cruz-swing-lessons",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_418_project",
                  "source_name": "The 418 Project",
                  "fetched_at": "2026-08-22T20:30:04.363966Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_418_project|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_967ae2a1fb6b",
              "venue_id": "venue_cornerstone",
              "title": "Vincent Antone & Lizzy Jane",
              "event_time": "2026/09/24 Thu: Sep 24 (7pm)",
              "venue_name": "Cornerstone",
              "event_start": "2026-09-24T19:00:00",
              "event_date": "2026-09-24",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "future funk, hip-hop, future bass ,house, EDM",
              "event_types": [
                "festival",
                "live_music",
                "electronic",
                "experimental"
              ],
              "price_info": "$15-22.50 | All Ages",
              "url": "https://www.prekindle.com/promo/id/-2852527949082051101",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cornerstone|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_ab06efc10908",
              "venue_id": "venue_tommy_ts",
              "title": "SAMMY OBEID",
              "event_time": "SEPT 24th",
              "venue_name": "Tommy T's",
              "event_start": "2026-09-24",
              "event_date": "2026-09-24",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "SAMMY OBEID\nSEPT 24th\nTickets",
              "event_types": [
                "comedy"
              ],
              "price_info": "Tickets",
              "url": "https://tommyts-com.seatengine.com/events/137872",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-08-22T21:57:38.329553Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_097dddf6d6b8",
              "venue_id": "venue_the_sound_room",
              "title": "Jules Leyhe & The Family Jules",
              "event_time": "Thursday, September 24, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-09-24T19:30:00",
              "event_date": "2026-09-24",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Jules Leyhe is one of the world’s foremost blues slide-guitar players—so much so that even Premier Guitar magazine called his music “the best blues slide licks since Derek Trucks, maybe even Duane Allman.”\n\nLeyhe has performed/ recorded alongside some of the industry’s heavyweights including Buddy Guy, Jimmie Vaughan, Chris Cain, Charlie Musselwhite, Fantastic Negrito and Wyatt Flores\n\nFor this event he brings a top-notch band featuring Ian McArldle on piano, Isaac Schwartz on drums and renowned bassist Matt Roades and special guest Mike Schermerer.\n\nMighty Mike Schermer has been touring and recording for well over 30 years with such legendary figures as Elvin Bishop, Charlie Musselwhite, Marcia Ball, Bonnie Raitt, Maria Muldaur, Howard Tate, Angela Strehli and many more. He has also carved out a solid solo career, releasing 8 critically acclaimed albums and garnering a ton of attention for his songwriting in particular. Schermer’s songs have been covered by blues award recipients Tommy Castro, Billy Price and the late Frank Bey to name just a few. His autobiographical single “My Big Sister’s Radio” was recently hand-picked by none other than Bruce Springsteen to be included in The Boss’s “From My House to Yours” on Sirius/XM’s and is now in regular rotation! His songs and albums have been nominated for multiple awards and he has performed in all 50 US States and 25 countries around the world in a journey that is far from over.\n\nTickets at Jules Leyhe & The Family Jules with Mike Schermerer",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/jules-leyhe-amp-the-family-jules-with-mike-schermerer",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-08-26T10:25:42.190144Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3354dd355ea4",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Little Shop of Horrors",
              "event_time": "2026-09-24",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-09-24",
              "event_date": "2026-09-24",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Book & Lyrics by Howard Ashman, Music by Alan Menken. Based on the film by Roger Corman, Screenplay by Charles Griffith. Directed by Ben Villegas Randle, Musical Direction by Jad Bernardo, Choreography by Leslie Waggoner",
              "event_types": [
                "theater",
                "live_music"
              ],
              "price_info": "",
              "url": "https://nctcsf.org/event/little-shop/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-08-26T11:06:39.262369Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-09-24",
              "run_id": "run_5315ef200ae4",
              "run_label": "Little Shop of Horrors, Sep 12 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3885b9c77816",
              "venue_id": "venue_guild_theatre",
              "title": "Alexandre Kominek (SHOW IN FRENCH)",
              "event_time": "SEP\n24\n8:00 PM",
              "venue_name": "Guild Theatre",
              "event_start": "2026-09-24T20:00:00",
              "event_date": "2026-09-24",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "DOORS OPEN: 7:00 PM • SHOW: 8:00 PM",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "https://www.guildtheatre.com/shows/alexandre-kominek-show-in-french-24-sep",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-08-28T10:40:15.787828Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_guild_theatre|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_80be55994e16",
              "venue_id": "venue_the_freight__salvage",
              "title": "Michael Cleveland",
              "event_time": "2026-09-24T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-24T19:00:00",
              "event_date": "2026-09-24",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Login View Cart Time remaining: 00:00 Activate Code Your cart has expired Your order contained expired items and your shopping cart has been emptied. Close Details Thursday, September 24, 2026 8:00PM Michael Cleveland 2026 Michael Cleveland Michael Cleveland , widely regarded as the defining bluegrass fiddler of his generation, began performing professionally after high school with Dale Ann Bradley and Rhonda Vincent before forming his own band, Flamekeeper, in 2006—now a seven-time recipient of the IBMA’s Instrumental Group of the Year award. A twelve-time IBMA Fiddle Player of the Year and 2018 National Fiddlers Hall of Fame inductee, Cleveland has toured and recorded with legendary artists including Béla Fleck, Tommy Emmanuel, Billy Strings, and Vince Gill. He is a four-time Grammy nominee, including a nomination this year for Best Bluegrass Album with Jason Carter for their collaboration Carter & Cleveland , which also won IBMA’s Album of the Year and Song of the Year (“Outrun the Rain”) at this year’s awards. Cleveland previously won a Grammy for Best Bluegrass Album in 2019 for Tall Fiddler, the same year his inspiring journey was chronicled in the documentary \"Flamekeeper: The Michael Cleveland Story.\" A recipient of the NEA National Heritage Fellowship, he continues to expand his artistic reach—his masterful fiddle playing can even be heard in the newest season of \"King of the Hill.\" Website | Facebook | Instagram Read More Hide View Full Calendar Please Note: Donor discount applied at checkout. Interested in donating? Click here. Advance Tickets: $44.00 (includes all fees); Day of Show Tickets: $49.00 (includes all fees) Doors: 7:00 PM; Show: 8:00 PM , for Purchase items Available Groups Select Other General Admission Please select a group to display sections. Choose an available section to see ticket options Quantity for General Admission General Admission $44.00 $35.00 ticket + $9.00 fees 0 1 2 3 4 5 6 7 8 9 10 Youth (21 & under) and Student (be prepared",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$44/$49\n(INCLUDES ALL FEES)",
              "url": "https://secure.thefreight.org/15949/15950",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_dbb38d065288",
              "venue_id": "venue_sfjazz_lab",
              "title": "JAHARI STAMPLEY FAMILY SOUL TRIO",
              "event_time": "2026-09-24 7:00 PM",
              "venue_name": "SFJAZZ Lab",
              "event_start": "2026-09-24T19:00:00",
              "event_date": "2026-09-24",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Pianist and composer Jahari Stampley has emerged as one of the most electrifying young artists in modern jazz, blending breathtaking virtuosity with deep emotional expression and fearless stylistic range. Raised in Chicago in a profoundly musical family, Stampley developed his artistry through gospel, jazz, classical music, and Black creative traditions, building a voice that feels both rooted and radically contemporary. His international breakthrough came after winning the prestigious Herbie Hancock Institute of Jazz International Piano Competition, where his dazzling technique, originality, and compositional brilliance announced the arrival of a major new talent. Beyond his acclaim as a pianist, Stampley has become known for adventurous collaborations spanning jazz, hip-hop, R&B, and experimental music, working with Stanley Clarke, Derrick Hodge, Keyon Harrold, and others. He’s released a pair of albums including 2025’s What A Time . With the Family Soul Trio, featuring his mother, GRAMMY-nominated multi-instrumentalist D-Erania Stampley , and drummer Miguel Russell , Jahari brings his music into an intimate and deeply personal space. The ensemble channels family legacy, spiritual connection, and rhythmic vitality into performances that move fluidly between jazz, soul, gospel, and improvisation. Together, they create music that feels celebratory, searching, and profoundly human, highlighting the communal spirit at the heart of Black American music.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/jahari-stampley-family-soul-trio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_lab|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_b0c6fb75d693",
              "venue_id": "venue_sfjazz_miner",
              "title": "Marcus Miller: We Want Miles",
              "event_time": "2026-09-24 7:30 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-09-24T19:30:00",
              "event_date": "2026-09-24",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Among the great electric bassists in the history of the instrument, Marcus Miller is a jazz renaissance man. He was instrumental to Miles Davis’s resurgence in the 1980s and helps us celebrate Miles’s centennial with music from Davis’s landmark 1982 live double album We Want Miles , along with classic Miles compositions spanning from the 1950s right up to his final era of Tutu in 1986 and Amandla in 1989 both of which Marcus Miller composed and produced. He will be joined by other members of Miles Davis’s 1980s comeback band guitarist Mike Stern , saxophonist Bill Evans and percussionist Mino Cinelu . A wildly prolific studio musician and bandleader, Miller and his distinctive bass virtuosity have been heard on well over 500 sessions for a dizzying array of major artists including Dizzy Gillespie, Herbie Hancock, Wayne Shorter, and McCoy Tyner to Paul Simon, Aretha Franklin, and Luther Vandross. He first appeared with Davis on the trumpeter’s 1980 comeback The Man with the Horn and went on to produce and largely compose Davis’s three late 80s albums Tutu (1986), Music from Siesta (1987), and Amandla (1989). 1982’s double live We Want Miles is a document of Davis’s first live performances after his self-imposed six-year retirement, culled from recordings in Boston, New York, and Tokyo and featuring two versions of the now-classic tracks “Jean-Pierre,” “Back Seat Betty,” and the Gershwin standard “My Man’s Gone Now.”",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/marcus-miller-we-want-miles-centennial-celebration/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_4811618c2da3",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Watermelon Woman",
              "event_time": "2026-09-24 7:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-09-24T19:00:00",
              "event_date": "2026-09-24",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "Noche de Movies is back! Our monthly movie series returns just in time for those chilly San Francisco summer nights. This month we are over la luna excited to be screening Cheryl Dunye’s Watermelon Woman. The film will be introduced by Lourdes Figueroa.\n\nA young black lesbian filmmaker probes into the life of The Watermelon Woman, a 1930s black actress who played 'mammy' archetypes. Cheryl is young, Black, and lesbian, working in Philadelphia with her best friend Tamara and consumed by a film project: to make a video about her search for a Black actress from Philly who appeared in films in the 30s and was known as the Watermelon Woman. Following various leads, Cheryl discovers the Watermelon Woman's stage name and real name and surmises that the actress had a long affair with Martha Page, a White woman and one of Hollywood's few female directors. As she's discovering these things, Cheryl becomes involved with Diana, who's also White. The affair strains Cheryl's friendship with Tamara. More discoveries bring Cheryl (and us, her audience) to new realizations.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/noche-de-movies-presents-watermelon-woman",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-08-28T14:05:33.197491Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b71b8d4e2c61",
              "venue_id": "venue_temescal_arts_center",
              "title": "Improvisation Workshop - First Tuesdays",
              "event_time": "2026-09-24T20:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-09-24T20:00:00",
              "event_date": "2026-09-24",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Improvisation is the key - hosted by Lewis Jordan. Open Workshop and Playground in free improvisation. Spontaneously Assembled Small Groups will collaborate. Come to listen, to be heard, to see, to move. Inviting musicians, poets, dancers, to a non-hierarchical setting to improvise together. Spontaneously composing or conducting, we'll be on a quest for fire.",
              "event_types": [
                "workshop",
                "experimental"
              ],
              "price_info": "Donations encouraged",
              "url": "https://www.temescalartcenter.org/tacmusic.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-08-28T14:09:19.773505Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-09-24",
              "run_id": "run_16a4ae4ccea6",
              "run_label": "Improvisation Workshop - First Tuesdays, Sep 1 – Dec 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a798a7b57839",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-09-24",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-09-24",
              "event_date": "2026-09-24",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-09-24",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_65f5e14e9c5e",
              "venue_id": "venue_dawn_club",
              "title": "N.T.B. COLLECTIVE",
              "event_time": "Thursday, September 24, 2026 8:00 PM 11:59 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-09-24T20:00:00",
              "event_date": "2026-09-24",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "The N. T. B. Collective is a Bay Area based jazz fusion group merging sounds and styles from all over the world.The N.T.B. trio, which will be featured for this event, is comprised of drums, bass, and piano. Each musician is highly accomplished; coming together to generate a unique musical energy. N.T.B. has been playing various venue residencies throughout the San Francisco Bay Area for over 3 years.\n\n\n  \n#block-9c1f37c33d4d37db1829 {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n\n\n  }\n\n  #block-9c1f37c33d4d37db1829 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-9c1f37c33d4d37db1829 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-9c1f37c33d4d37db1829 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-9c1f37c33d4d37db1829 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-9c1f37c33d4d37db1829 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-9c1f37c33d4d37db1829 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/ntb-2-tg8l8-8z5ns-x5cc8-hr275-w85cj-ka8fh-jglw9-me2wk-hen78-j35pb-tb2p9-6h6tn-chf7a-ll85s-h4rly",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-08-28T15:32:50.415811Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cb20bb19991e",
              "venue_id": "venue_sfmoma",
              "title": "Works on Paper Book Club",
              "event_time": "Thursday, Sep 24, 2026 | 6 p.m.",
              "venue_name": "SFMoma",
              "event_start": "2026-09-24T18:00:00",
              "event_date": "2026-09-24",
              "venue_address": "151 Third St, San Francisco, CA 94103",
              "description": "Under the CPRA, you have the right to opt-out of the sale or sharing of your personal information to third parties. These cookies collect information for analytics and to personalize your experience with targeted ads. You may exercise your right to opt out of the sale or sharing of personal information by using this toggle switch. If you opt out we will not be able to offer you personalized ads and will not hand over your personal information to any third parties. Additionally, you may contact our legal department for further clarification about your rights as a California consumer by using this Exercise My Rights link.If you have enabled privacy controls on your browser (such as a plugin), we have to take that as a valid request to opt-out. Therefore we would not be able to track your activity through the web. This may affect our ability to personalize ads according to your preferences.",
              "event_types": [
                "art",
                "literary"
              ],
              "price_info": "",
              "url": "https://www.sfmoma.org/event/works-on-paper-book-club-gertrude-stein-an-afterlife-by-francesca-wade/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sfmoma",
                  "source_name": "SFMoma",
                  "fetched_at": "2026-08-28T16:39:30.693329Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfmoma|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_467bfb672f82",
              "venue_id": "venue_regency_ballroom",
              "title": "SOULWAX",
              "event_time": "Sep 24, 2026 8:00 PM",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-09-24T20:00:00",
              "event_date": "2026-09-24",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Portola Pre-Party",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theregencyballroom.com/events/detail?event_id=1570048",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-08-28T19:21:04.470307Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_923822ddd3c0",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Opening Gala with Hilary Hahn",
              "event_time": "Thursday, Sep 24, 2026 | 7:00 pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-09-24T19:00:00",
              "event_date": "2026-09-24",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "A cookie is a small piece of data (text file) that a website – when visited by a user – asks your browser to store on your device in order to remember information about you, such as your language preference or login information. Those cookies are set by us and called first-party cookies. We also use third-party cookies – which are cookies from a domain different than the domain of the website you are visiting – for our advertising and marketing efforts. More specifically, we use cookies and other tracking technologies for the following purposes:",
              "event_types": [
                "live_music",
                "classical",
                "community"
              ],
              "price_info": "LEARN MORE",
              "url": "https://www.sfsymphony.org/Buy-Tickets/2026-27/Opening-Gala",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-08-28T19:38:14.129031Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_220d5a3b3e8b",
              "venue_id": "venue_exploratorium",
              "title": "Daytime Members-Only Hours",
              "event_time": "2026-09-24",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-24",
              "event_date": "2026-09-24",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Please consider joining us today ! Members are the backbone of our organization and help ensure the continuity of our mission to create inquiry-based experiences that transform learning worldwide. We can’t wait to see you at the museum.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/member-hours",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-24",
              "run_id": "run_e38dfc952011",
              "run_label": "Daytime Members-Only Hours, Aug 30 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ec22aba57414",
              "venue_id": "venue_exploratorium",
              "title": "After Dark: If You Build It . . .",
              "event_time": "Thu, Sep 24 2026 • 6 - 10pm",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-24T18:00:00",
              "event_date": "2026-09-24",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "How does human ingenuity shape change? Explore how engineering can lead to surprising solutions to sticky problems.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/after-dark-if-you-build-it",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a2eb2c81be8b",
              "venue_id": "venue_rhythmix",
              "title": "The Locals: Opening Reception",
              "event_time": "2026-09-24T18:00:00",
              "venue_name": "Rhythmix",
              "event_start": "2026-09-24T18:00:00",
              "event_date": "2026-09-24",
              "venue_address": "2513 Blanding Ave, Alameda, CA 94501",
              "description": "Opening reception for \"The Locals\" exhibit at K Gallery. Exhibit dates listed as September 11 to October 25, 2026.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://www.rhythmix.org/upcoming-exhibits/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rhythmix",
                  "source_name": "Rhythmix",
                  "fetched_at": "2026-08-28T23:14:01.025318Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rhythmix|2026-09-24",
              "run_id": "run_566a8f02098a",
              "run_label": "The Locals: Opening Reception, Sep 11 – Oct 25",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_5421d41cf6ea",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-09-24",
              "venue_name": "De Young",
              "event_start": "2026-09-24",
              "event_date": "2026-09-24",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-24",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_68d09bda16b1",
              "venue_id": "venue_david_brower_center",
              "title": "The Last Coho Exhibition",
              "event_time": "2026-09-24T18:30:00",
              "venue_name": "David Brower Center",
              "event_start": "2026-09-24T18:30:00",
              "event_date": "2026-09-24",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "Opening reception for photographer Kaare Iverson's exhibition documenting efforts to restore endangered coho salmon in the Russian River watershed, featuring an artist talk alongside Dr. Jacob Katz.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "Free (registration required)",
              "url": "https://www.eventbrite.com/e/the-last-coho-opening-reception-at-the-brower-center-september-24-tickets-1191553847",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-08-29T00:08:40.517051Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_75afa3f1e8bf",
              "venue_id": "venue_rootstock_arts",
              "title": "Sand Ghost",
              "event_time": "Thu, 24 Sep 2026\n7:30 PM (PDT)",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-09-24T19:30:00",
              "event_date": "2026-09-24",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "Sand Ghost is a shapeshifting instrumental ensemble that journeys out of experimental ambient spaces into deep psychedelic grooves. With Cassandra Firmin’s commanding sense of rhythm, Melissa Mohlenhoff’s driving basslines and Nora Free’s enchanting improvisation on saxophone, the collective channels a desert entity that possesses resilience and adaptability in the face of creeping fascism. This special Sand Ghost experience welcomes additional support and performances by Lena Badhia on drums and Marceline Keene on guitar. Witness the Sand Ghost for a night of original works that prophesize their debut album.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.viewcy.com/event/sand_ghost",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-08-29T00:16:02.821734Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_86f074e672f6",
              "venue_id": "venue_punch_line",
              "title": "MOHANAD ELSHIEKY",
              "event_time": "Sep 24, 2026 8:00 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-24T20:00:00",
              "event_date": "2026-09-24",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Libyan-born comedian Mohanad Elshieky combines a deceptively laid-back demeanor with whip-smart, incisive commentary on politics and culture.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/mohanad-elshieky-san-francisco-california-09-24-2026/event/1C0064BE9FC7A3E5",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_19ebb2ee2aab",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "JOANNE MCNALLY: PINOTPHILE",
              "event_time": "Thu Sep 24, 2026 8:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-09-24T20:00:00",
              "event_date": "2026-09-24",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Irish comedy star Joanne McNally returns with her new stand-up tour featuring hilarious stories about life, love, and singlehood.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/joanne-mcnally-pinotphile-san-francisco-california-09-24-2026/event/1C006469D4980CB5",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c1d8163f7c8f",
              "venue_id": "venue_shapeshifters",
              "title": "Gravitational Lensing: Feminist Film Dialogues",
              "event_time": "2026-09-24",
              "venue_name": "Shapeshifters",
              "event_start": "2026-09-24",
              "event_date": "2026-09-24",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "Program 17: Family Portraits/Relational Exercises includes a spectrum of diaristic films—from uncanny documentary to autobiographical re-enactments—that manifest different ways filmmakers choose to represent their relationships to family and, more broadly, to home (both literal and conceptual) through cinematic language.",
              "event_types": [
                "film"
              ],
              "price_info": "San Francisco Cinematheque",
              "url": "https://sfcinematheque.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shapeshifters",
                  "source_name": "Shapeshifters",
                  "fetched_at": "2026-08-30T10:04:33.112973Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-09-24",
              "run_id": "run_8afbca984fe1",
              "run_label": "Gravitational Lensing: Feminist Film Dialogues, Sep 9 – Nov 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_589ad5df7cd5",
              "venue_id": "venue_the_independent",
              "title": "WESGHOST & RED LEATHER",
              "event_time": "9.24.2026 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-24T20:00:00",
              "event_date": "2026-09-24",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List RedGhost Tour WesGhost & Red Leather Thu, Sep 24 Doors: 7:30 pm | Show: 8:00 pm All Ages Please note - there is a delivery delay set for 2 weeks prior to show. VIP: • Meet & Greet w/ Photo (Red Leather + WesGhost together) • Signed Tour Poster (tour flyer) • VIP Laminate • REDGHOST VIP Exclusive Merch Item • Soundcheck Exclusive Performance + Q&A • First Access to Merch • Early Venue Access for Best Spot Selection Super VIP : • Meet & Greet w/ Photo (Red Leather + WesGhost together) • Signed Tour Poster (tour flyer) • VIP Laminate • REDGHOST VIP Exclusive Merch Item • Soundcheck Exclusive Performance + Q&A • First Access to Merch • Early Venue Access for Best Seat Selection • Greenroom Hang / Red Leather + WesGhost in greenroom • Soundcheck Hang Buy Tickets Share + Google Calendar Related Events Krooked Kings Aug 15 Buy Tickets Stop Light Observation Nov 11 Buy Tickets Artists WesGhost WesGhost blends 2000s pop-punk, alternative, and hip-hop into a sound that simultaneously feels both nostalgic and forward-pushing. Hidden by his signature balaclava, he’s cultivated a tight-knit fanbase—the WesGhost Collective— drawn to the raw vulnerability and distorted energy pulsing through every release. His 2024 mixtape DON’T WORRY, I’LL BE FINE and 2025’s AM I DREAMING? build out a world of emotional unrest and cathartic release, earning co-signs from the likes of blackbear and Diplo along the way. Now gearing up for his second US headline tour, WesGhost continues to blur genre lines while anchoring everything in community, intensity, and feeling. Red Leather Back to Event List Upcoming Events Novulent Fri Jun 19 Mamas Gun Sat Jun 20 Out & Loud Thu Jun 25 The Lagoons Fri Jun 26 Bay Pride Amplified! Sat Jun 27 Kelly McFarling Thu Jul 2 Mac Gross Project – SF Rock Project Benefit + Against Medical Advice Album Release Fri Jul 3 High Fade Wed Jul 8 Young Franco Fri Jul 10 The Emo Night Tour Sat Jul 11 bad tuner x veggi Fri Jul 17 Los Tranquilos Sat Jul 18",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/wesghost-red-leather/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-08-31T10:40:49.218190Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_23e56f061d5c",
              "venue_id": "venue_yoshis",
              "title": "WILD NIGHT: A VAN MORRISON TRIBUTE",
              "event_time": "September 24, 2026 - 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-24T19:30:00",
              "event_date": "2026-09-24",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "SOULFUL MELODIES, SMOOTH RHYTHMS, AND ICONIC HITS",
              "event_types": [
                "live_music",
                "rock",
                "rnb_soul_funk"
              ],
              "price_info": "$30 - $69",
              "url": "https://yoshis.com/events/buy-tickets/wild-night-a-van-morrison-tribute/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_079d40bbfa1c",
              "venue_id": "venue_ivy_room",
              "title": "Coup Dville & The Shakedowns",
              "event_time": "Sep 24 7:00 PM",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-24T19:00:00",
              "event_date": "2026-09-24",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "ivy room presents - genre - blues, rock, alt, garage",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/195772",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-08-31T11:55:01.170393Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a96633fc3c41",
              "venue_id": "venue_cal_academy_of_science",
              "title": "NightLife: K-Pop",
              "event_time": "2026-09-24T18:00:00",
              "venue_name": "Cal Academy of Science",
              "event_start": "2026-09-24T18:00:00",
              "event_date": "2026-09-24",
              "venue_address": "55 Music Concourse Dr, San Francisco, CA 94118",
              "description": "Every fandom has a home at NightLife. Dance your heart out, get creative, and celebrate the music you love.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$26.00",
              "url": "https://www.calacademy.org/nightlife/nightlife-kpop",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cal_academy_of_science",
                  "source_name": "Cal Academy of Science",
                  "fetched_at": "2026-08-31T12:46:28.638169Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_cal_academy_of_science|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b2a854008c7d",
              "venue_id": "venue_yerba_buena_center",
              "title": "GaHee Park: Behind the Curtain",
              "event_time": "2026-09-24",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-24",
              "event_date": "2026-09-24",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Park invites us to peek behind the curtain, as she lays claim to her own power as a surrealist painter working across fantasy and intimacy.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/gahee-park-behind-the-curtain/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-24",
              "run_id": "run_5353f80886f6",
              "run_label": "GaHee Park: Behind the Curtain, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_eebcb5721a69",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dream",
              "event_time": "2026-09-24",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-24",
              "event_date": "2026-09-24",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public art installation commissioned by YBCA and co-sponsored by San Francisco Public Works.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dream-public-art/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-24",
              "run_id": "run_b6a5ba4e8809",
              "run_label": "Dream, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a5b51d24674b",
              "venue_id": "venue_yerba_buena_center",
              "title": "SoMa Mahal Kita",
              "event_time": "2026-09-24",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-24",
              "event_date": "2026-09-24",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A message of love for the SoMa neighborhood and community, inspired by weaving practices in the Phillipines and the colors of the Filipino flag.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/soma-mahal-kita-soma-i-love-you-ciriaco-sayoc/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-24",
              "run_id": "run_0c5141fff335",
              "run_label": "SoMa Mahal Kita, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a35844be68aa",
              "venue_id": "venue_yerba_buena_center",
              "title": "We Rooted in Flight",
              "event_time": "2026-09-24",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-24",
              "event_date": "2026-09-24",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public artwork inviting passerbyers to join in the journey of collective flight",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/we-fly-for-a-liberated-we-we-rooted-in-flight/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-24",
              "run_id": "run_1d34139aedcf",
              "run_label": "We Rooted in Flight, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bbe9a367fdd0",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-09-24T14:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-24T14:00:00",
              "event_date": "2026-09-24",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-24",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_e3c558eefc4d",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-09-24T18:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-24T18:00:00",
              "event_date": "2026-09-24",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-24",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 2,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_d8301680cc47",
              "venue_id": "venue_chase_center",
              "title": "Premium Suites",
              "event_time": "2026-09-24",
              "venue_name": "Chase Center",
              "event_start": "2026-09-24",
              "event_date": "2026-09-24",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "At Select-A-Suite on Thursday, September 17, 2026, not only will you have the opportunity to reserve your suites before they are released to the public, but attendees can also enjoy complimentary food and beverage tastings throughout the event, network with fans and business professionals, and have the opportunity to capture a photo with the Larry O'Brien Trophies.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://chasecenter.com/premium-experiences/premium-suites/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-08-31T17:38:13.687686Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-09-24",
              "run_id": "run_bed5be826f7c",
              "run_label": "Premium Suites, Sep 10 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6f4bbaa73cf1",
              "venue_id": "venue_tupelo",
              "title": "The Smokedaddies",
              "event_time": "Thursday September 24th 9:00PM - 1:00AM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-24T21:00:00",
              "event_date": "2026-09-24",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "Psychedelic Rock&Roll!",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Psychedelic Rock&Roll!",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f14b08fc283d",
              "venue_id": "venue_city_lights_theater",
              "title": "Eureka Day",
              "event_time": "2026-09-24T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-09-24T19:30:00",
              "event_date": "2026-09-24",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "Sharp comedy by Jonathan Spector about a progressive Berkeley private school whose board is thrown into conflict during a mumps outbreak. Runs September 24 through October 18, 2026.",
              "event_types": [
                "theater"
              ],
              "price_info": "Single tickets go on sale June 1",
              "url": "https://cltc.org/event/eureka-day/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-09-02T10:09:11.201902Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-09-24",
              "run_id": "run_4a0cceaa9027",
              "run_label": "Eureka Day, Sep 24 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1c0885b02df9",
              "venue_id": "venue_madrone_art_bar",
              "title": "Aaron Hammerman",
              "event_time": "September 24 @ 6:30 pm - 8:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-24T18:30:00",
              "event_date": "2026-09-24",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Aaron Hammerman of the Deep Basement Shakers specializes in primal, joint-rocking boogie, barrelhouse, blues and early R&B. Vintage, foot- stomping American roots music designed for good times. Let’s get down! 6:30 – 8:30pm No Cover",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "No Cover",
              "url": "https://madroneartbar.com/event/the-deep-basement-shakers-2026-01-22-2026-03-26-2026-08-27/2026-09-24/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e983dcaf532b",
              "venue_id": "venue_madrone_art_bar",
              "title": "Huney Knuckles",
              "event_time": "September 24 @ 9:00 pm - 12:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-24T21:00:00",
              "event_date": "2026-09-24",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "HUGE NOISE, world class musicianship, mind-bending solos, and uber funky jams Kevin Wong, Darian Gray, Tony Peebles & Bian Sheu 9pm-12:30am / $7 The newest kids on the block, the Huney Knuckles (formerly the Black Star Pirates) combines the left hand keyboard bass wizardry of Kevin Wong with the indomitable pocket of Darian Gray, touring [&hellip;]",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$7",
              "url": "https://madroneartbar.com/event/huney-knuckles-14-2026-01-22-2026-07-23-2026-09-24/2026-09-24/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0d42962d8779",
              "venue_id": "venue_kuumbwa_jazz",
              "title": "Bill Frisell & Harmony Five",
              "event_time": "2026-09-24T19:00:00",
              "venue_name": "Kuumbwa Jazz Center",
              "event_start": "2026-09-24T19:00:00",
              "event_date": "2026-09-24",
              "venue_address": "320-2 Cedar St, Santa Cruz, CA 95060",
              "description": "Featuring Petra Haden, Hank Roberts, Luke Bergman & Tim Angulo.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kuumbwa_jazz",
                  "source_name": "Kuumbwa Jazz Center",
                  "fetched_at": "2026-09-03T10:24:11.929813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kuumbwa_jazz|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_38542222781f",
              "venue_id": "venue_kuumbwa_jazz",
              "title": "Bill Frisell & Harmony Five",
              "event_time": "2026-09-24T21:00:00",
              "venue_name": "Kuumbwa Jazz Center",
              "event_start": "2026-09-24T21:00:00",
              "event_date": "2026-09-24",
              "venue_address": "320-2 Cedar St, Santa Cruz, CA 95060",
              "description": "Featuring Petra Haden, Hank Roberts, Luke Bergman & Tim Angulo.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kuumbwa_jazz",
                  "source_name": "Kuumbwa Jazz Center",
                  "fetched_at": "2026-09-03T10:24:11.929813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kuumbwa_jazz|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2be0eee339a6",
              "venue_id": "venue_black_cat",
              "title": "Stacy Dillard & Josh Evans 5tet",
              "event_time": "2026-09-24T19:00:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-24T19:00:00",
              "event_date": "2026-09-24",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n9:15 show: Bar @ 6:00, Doors @ 8:30\n\n\n\n\nHard-charging, deeply expressive modern jazz led by two fearless improvisers with serious New York fire.\n\n\n\n\nSaxophonist Stacy Dillard and trumpeter Josh Evans bring a powerhouse frontline to Black Cat for a four-night run built on swing, edge, and real-time invention. Dillard is known for a rich, commanding tone and a sound that stretches tradition without losing the feeling. Pianist Eric Reed called him “a true improviser,” while Roy Hargrove put it simply: “Stacy is a one-of-a-kind musician.”\n\n\n\n\nEvans brings his own deep fire to the bandstand, with a trumpet voice shaped by the lineage of Jackie McLean, Rashied Ali, Benny Golson, Cedar Walton, Christian McBride, Roy Hargrove, Gregory Porter, T.S. Monk, and many more. Together, Dillard and Evans lead a 5tet made for hard swing, sharp interplay, and the kind of late-night jazz energy that keeps the room on edge.\n\n\n\n\nBand Lineup:\n\nStacy Dillard, Saxophone\n\nJosh Evans, Trumpet\n\nGrant Levin, Piano\n\nDavid Ewell, Bass \n\nJaimeo Brown, Drums",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $30 , $40 , $50",
              "url": "https://blackcatsf.turntabletickets.com/shows/12859/2026-09-24",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ecbf0419cb6c",
              "venue_id": "venue_black_cat",
              "title": "Stacy Dillard & Josh Evans 5tet",
              "event_time": "2026-09-24T21:15:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-24T21:15:00",
              "event_date": "2026-09-24",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n9:15 show: Bar @ 6:00, Doors @ 8:30\n\n\n\n\nHard-charging, deeply expressive modern jazz led by two fearless improvisers with serious New York fire.\n\n\n\n\nSaxophonist Stacy Dillard and trumpeter Josh Evans bring a powerhouse frontline to Black Cat for a four-night run built on swing, edge, and real-time invention. Dillard is known for a rich, commanding tone and a sound that stretches tradition without losing the feeling. Pianist Eric Reed called him “a true improviser,” while Roy Hargrove put it simply: “Stacy is a one-of-a-kind musician.”\n\n\n\n\nEvans brings his own deep fire to the bandstand, with a trumpet voice shaped by the lineage of Jackie McLean, Rashied Ali, Benny Golson, Cedar Walton, Christian McBride, Roy Hargrove, Gregory Porter, T.S. Monk, and many more. Together, Dillard and Evans lead a 5tet made for hard swing, sharp interplay, and the kind of late-night jazz energy that keeps the room on edge.\n\n\n\n\nBand Lineup:\n\nStacy Dillard, Saxophone\n\nJosh Evans, Trumpet\n\nGrant Levin, Piano\n\nDavid Ewell, Bass \n\nJaimeo Brown, Drums",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $30 , $40 , $50",
              "url": "https://blackcatsf.turntabletickets.com/shows/12859/2026-09-24",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6126cf04aa53",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Dave Tull -Jazz & Laughter",
              "event_time": "Thursday, September 24, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-24T19:00:00",
              "event_date": "2026-09-24",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Thursday, September 24, 2026 @ 7pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $30 per show",
              "url": "https://keysjazzbistro.com/event/dave-tull-jazz-laughter/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_33d49c9b12c8",
              "venue_id": "venue_pacific_film_archive",
              "title": "Blackbird Blackbird Blackberry",
              "event_time": "Sep 24, 2026 7 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-24T19:00:00",
              "event_date": "2026-09-24",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "“A near-death experience sparks an existential and sexual awakening for taciturn shop owner Etero in Elene Naveriani’s enchanting film” (Arjun Sajip, Sight and Sound).",
              "event_types": [
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/blackbird-blackbird-blackberry",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8d1f603417d4",
              "venue_id": "venue_4_star_theater",
              "title": "Tom Conneely & the Birds of Paradise",
              "event_time": "24 September 2026 8:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-24T20:00:00",
              "event_date": "2026-09-24",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Tom Conneely & Birds of Paradise are a twang-driven rock and roll outfit from San Francisco, California. Their music is driven by practiced song craft and guitar driven exploration steeped in the Bakersfield sound. Drawing on influences from Buck Owens to Arthur Russell, the Bird's blend of hypnotic twang and Beach Boys inspired harmony has sold out shows across the west coast, with notable performances at Offbeat Festival in Reno and Noise Pop in San Francisco. The Birds of Paradise released their record \"New Kind Palace\" in the spring of 2025 and are following up with the release of \"Water Horse\" on April 10, 2026 via Only One on the Mountain.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/live-music-tcbop",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c876b3ec37fd",
              "venue_id": "venue_local_edition",
              "title": "Mitch Polzak & The Royal Deuces",
              "event_time": "September 24, 2026 8:30 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-09-24T20:30:00",
              "event_date": "2026-09-24",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Rockabilly and 60’s country music with the religious fervor of Jerry Lee Lewis and Johnny Cash and delivers a Honky Tonk ballad with the sincerity of Merle Haggard and Waylon Jennings.",
              "event_types": [
                "live_music",
                "rock",
                "folk"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/2023/6/7/tba-haww5-ak3tw-9j4na-83pp2-t9rs2-3hs74-mbnbp-r5eby-k2bhz-76chr-twm5d-mk25b-kj7ca-bzpwn-fz7zm-tfmz4-57ald-kg24z-3ra8t-em46k-plpp5-2b2er-583by-ms6js-bept4-ws8dg-5fg2b-btdem-mxz5a-h9hp5-ghrg3",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-09-03T12:59:31.047351Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0a0e9d655d80",
              "venue_id": "venue_cat_club",
              "title": "1984",
              "event_time": "September 24, 2026 9:00 PM",
              "venue_name": "Cat Club",
              "event_start": "2026-09-24T21:00:00",
              "event_date": "2026-09-24",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "The Best of the 80s on 2 Dance Floors\n——\n9pm-2am | No Cover",
              "event_types": [
                "dj_party"
              ],
              "price_info": "No Cover",
              "url": "https://www.sfcatclub.com/calendar/ymp4cekk5sb4y8x-chwt8-3rd9b-ztzra-abpta-7a9be-3m6a8-74c9n-sz9cw-jztgp-ntp9n-nlygf-6j7mm-gfrn9-bgknm-ysm82-fzhm2-krz5d-yzj7d-f4ysm-2d5kp-ebjy4-xazl6",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cat_club",
                  "source_name": "Cat Club",
                  "fetched_at": "2026-09-03T13:24:58.141502Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5f242c9241ea",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Happy Hour",
              "event_time": "24 September 2026",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-24",
              "event_date": "2026-09-24",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Take advantage of Etcetera Wine Bar's happy hour specials on select drinks and light fare. It offers a relaxed neighborhood setting to unwind after work or kick off an evening of live music.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-09-03T13:50:21.930604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cdacb71023d9",
              "venue_id": "venue_fox_theater_rwc",
              "title": "Brincos Dieras",
              "event_time": "2026-09-24T20:00:00",
              "venue_name": "Fox Theater Redwood City",
              "event_start": "2026-09-24T20:00:00",
              "event_date": "2026-09-24",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Regresa el fenómeno de la comedia en todo Latino América: BRINCOS DIERAS! Con su nueva gira 'EL DESMADRE CONTINUA TOUR.' Vive una experiencia a carcajadas con un show SIEMPRE DIFERENTE. Atrévete a reír con el payaso MÁS IRREVERENTE.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Varies by seating section",
              "url": "https://foxrwc.showare.com/eventperformances.asp?evt=275",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theater_rwc",
                  "source_name": "Fox Theater Redwood City",
                  "fetched_at": "2026-09-03T14:15:06.396214Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theater_rwc|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_20337d40d15e",
              "venue_id": "venue_caravan_lounge",
              "title": "Sweethearts DJ Night",
              "event_time": "09/24/2026",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-09-24",
              "event_date": "2026-09-24",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "Welcome to The Caravan Lounge THE CARAVAN LOUNGE is a friendly, owner-operated bar located in the heart of downtown San Jose. As well as being one of San Jose’s oldest live music venues, the Caravan provides other fun activities such as karaoke, comedy, burlesque, pool table, and DJ nights. The Caravan is also extremely affordable for those trying to stretch a budget. And let’s not forget the music! All the shows at the Caravan are FREE! Open 7 days a week 2pm – Close “Aside from the obvious draw of affordable libations poured by heavy-handed barkeeps, The Caravan sets itself apart from other no-frills bars as the place to go to see up-and-coming bands. The bar has hosted plenty of local bands’ first shows, and regularly features smaller touring acts. If you’re a music fan always on the lookout for your new favorite group, make sure to pay attention to who is coming to Caravan.” -Metro FEATURED VIDEOS – Go to our YouTube Channel by clicking here to see more… SEPTEMBER 2026 TUES. SEPT 1st- Karaoke with Ronnie Roach WED. SEPT 2nd – The Caravan Lounge Comedy Show hosted by Chelsea Costanza THURS. SEPT 3rd – SWEAT with DJ SNAQ FRI. SEPT 4th – Rebelskamp, Magick Blues Band, TBA SAT. SEPT 5th – Skool Of Sharks TUES. SEPT 8th- Karaoke with Ronnie Roach WED. SEPT 9th – The Caravan Lounge Comedy Show Hosted by Nyoki THURS. SEPT 10th – Shrine Goth DJ Night with Hex Embrace, C_Death, and Owen FRI. SEPT 11th – Circus Of Sin 10 Year Sinnaversary! Hosted By Some Guy SAT. SEPT. 12th – CaveFest II We Love You Curtis Castro! Abysmal Piss, Ominous Ruin, Lost To The Void TUES. SEPT 15th – Karaoke with Ronnie Roach WED. SEPT 16th -The Caravan Lounge Comedy Show Hosted by Ato Walker THURS. SEPT 17th – TBA FRI. SEPT 18th – TBA SAT. SEPT 19th – Facekicker, American Standard, 12 Steps To Nothing TUES. SEPT 22nd – Karaoke with Ronnie Roach WED. SEPT 23rd- The Caravan Lounge Comedy Show hosted by Matt Kennedy THURS. SEPT 24th – Sweethearts DJ Night FRI. SEPT 25th – Ding Mao, Diamantide, Clou",
              "event_types": [
                "dj_party"
              ],
              "price_info": "FREE",
              "url": "http://s172518151.onlinehome.us/caravan/site/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-09-03T14:20:40.572990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_03a0de818580",
              "venue_id": "venue_poor_house_bistro",
              "title": "Southern Rock Jam",
              "event_time": "2026-09-24T18:00:00",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-09-24T18:00:00",
              "event_date": "2026-09-24",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-09-04T10:11:13.938872Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_19c7ec36bebf",
              "venue_id": "venue_mvcpa",
              "title": "Swan Lake: Symphony of Lights",
              "event_time": "September 24 7:00 pm",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-09-24T19:00:00",
              "event_date": "2026-09-24",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "Golden Pointe U.S.\n\nThursday, September 24 at 7:00 p.m.\n\nSwan Lake: Symphony of Lights is the landmark new production of the upcoming season.\nTchaikovsky’s iconic score opens the door to an entirely reimagined world: vivid light design, illuminated costumes, and world-class dancers from around the globe transform the classic ballet into a mesmerizing visual experience.\n\nThis is more than a performance — it’s an immersion into a story of love and magic, told through light, movement, and music. Each act unfolds like a living art installation, where timeless tradition meets bold contemporary design.\n\nDiscover Swan Lake in a whole new light — a legend reborn with breathtaking imagery and emotional power.\n\nThis performance is 2 hours long, including one 20 minute intermission, and is appropriate for all ages.\n\nMainStage | Reserved\n\nRegular: $57 / $45\nYouth (12 and under): $50 / $41\n\nTicket price includes $3 Facility Use Fee",
              "event_types": [
                "dance",
                "classical"
              ],
              "price_info": "$57",
              "url": "https://tickets.mvcpa.com/eventperformances.asp?evt=789",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mvcpa",
                  "source_name": "MV Center for the Performing Arts",
                  "fetched_at": "2026-09-04T10:13:59.609171Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mvcpa|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a9913338e363",
              "venue_id": "venue_swedish_american",
              "title": "Todd Glass",
              "event_time": "9/24/2026 8:00 pm",
              "venue_name": "Swedish American Hall",
              "event_start": "2026-09-24T20:00:00",
              "event_date": "2026-09-24",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Live Nation Presents: Todd Glass: The Event Of A Lifetime Thu, Sep 24 Doors: 7:00 pm | Show: 8:00 pm Tickets: $39.63 Buy Tickets All Ages “Todd could be completely absurd one minute, deeply sincere the next. And it worked. Seeing Todd do stand-up with the band is ‘shut-the-fuck-up funny.’ From the moment you walk through the front door, Todd is shaping the entire experience. By the time you’re in your seat, you’ve left the regular world. It’s its own universe. It’s really something to see live.” —Rory Scovel first come first serve seating For any event that is listed as 18 or 21 and over, ANY ticket holder unable to present valid identification indicating that they are of age will not be admitted to this event, and will not be eligible for a refund. Any event listed as All Ages, means 6 years of age or older. ALL tickets are standing room only unless otherwise specified. If you need special accommodations, contact info@cafedunord.com. Support acts are subject to change without refund. Professional Cameras are not allowed without prior approval. Professional Camera defined as detachable lens or of professional grade as determined by the venue staff. When in doubt, just email us ahead of the show! We might be able to get you a Photo Pass depending on Artist’s approval. Artists Todd Glass Todd Glass started doing stand-up comedy as a teenager in Philadelphia. By the time he was 18, he was opening for music legends Patti LaBelle, Aretha Franklin, and Diana Ross on Broadway. In his twenties, he moved to Los Angeles, and has since established himself as one of the most original and respected voices in comedy. The late great Norm Macdonald affectionately called Todd \"the comedian's comedian's comedian.\" Although he's most often recognized for being a prolific stand-up, Todd is beloved in other areas of comedy, primarily for voicing the Principal in HBO Max's TEN YEAR OLD TOM and for iconic late night appearances, including over fifteen on JIMMY KIMMEL LIVE! He is known for",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://cafedunord.com/tm-event/todd-glass-the-event-of-a-lifetime/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cafe_du_nord_and_swedish_american_hall",
                  "source_name": "Cafe Du Nord and Swedish American Hall",
                  "fetched_at": "2026-09-04T10:21:43.132381Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_swedish_american|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_e930efe520a3",
              "venue_id": "venue_specs",
              "title": "The Cottontails",
              "event_time": "Thursday, September 24, 2026 8:00 PM - 11:00 PM",
              "venue_name": "Specs' Twelve Adler Museum Cafe",
              "event_start": "2026-09-24T20:00:00",
              "event_date": "2026-09-24",
              "venue_address": "12 William Saroyan Pl, San Francisco, CA 94133",
              "description": "The Cottontails are one of San Francisco's most exciting musical groups, playing a wide range of styles ranging from 20'/30's Gatsby-era jazz, classic 40's swing, and vintage 50's/60's R&B.  The band's versatility allows it to accommodate many settings, from quiet acoustic duo to jazz quintet, to full dance band with horns and guitar.  Able to custom tailor our line-up to fit your event's specific needs, the Cottontails are available to perform for parties, weddings, corporate occasions and public concerts.\n\nThe Cottontails are Karina Denike on vocals, Michael McIntosh on piano, Vic Wong on guitar, Joe Kyle, Jr. on bass, Tom Griesser on saxophone/clarinet, and the irrepressible Randy Odell on percussion. Also featuring some of the Bay Area's finest musicians as guests, including Scott Larson on trombone, Henry Hung on trumpet, Ari Munkres on bass, and vocalist Christie Winn. \n\nThe Cottontails have performed at jazz clubs, dance halls, cabarets and art events, at venues including SF City Hall, California Academy of Sciences, Bimbo's 365 Club, Palace of Fine Arts, Amoeba Records, SF Legion of Honor, Yoshi's SF/Oakland, San Francisco Maritime Museum, Cell Space, Great American Music Hall, and various clubs, concert series and jazz festivals in Northern California, New York City, Tokyo, England, and Germany. Our clients include Google, Apple, Ebay, Facebook, and SF MOMA, among many others. The Cottontails have shared the stage with James Hunter, Richard Cheese, The California Honeydrops, Veronica Klaus and other musical luminaries.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.specsbarsf.com/events/the-cottontails",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_specs",
                  "source_name": "Specs' Twelve Adler Museum Cafe",
                  "fetched_at": "2026-09-04T10:38:49.428018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_specs|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c1f2af9ec1f5",
              "venue_id": "venue_sevys_aptos",
              "title": "Wine30 Thursdays",
              "event_time": "September 24, Thursday 5:00 PM",
              "venue_name": "Sevy's Bar & Kitchen",
              "event_start": "2026-09-24T17:00:00",
              "event_date": "2026-09-24",
              "venue_address": "7500 Old Dominion Ct, Aptos, CA 95003",
              "description": "",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sevys_aptos",
                  "source_name": "Sevy's Bar & Kitchen",
                  "fetched_at": "2026-09-04T10:39:41.919005Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sevys_aptos|2026-09-24",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-09-25": {
          "date": "2026-09-25",
          "updated_at": "2026-09-04T10:41:17.658265Z",
          "events": [
            {
              "event_id": "evt_4ac692c5eb48",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Kruder & Dorfmeister",
              "event_time": "Sep 25 2026 8pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-09-25T20:00:00",
              "event_date": "2026-09-25",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "The influential Austrian duo Kruder & Dorfmeister performs their celebrated mix of downtempo, trip-hop, and atmospheric electronic beats.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "Buy Tickets",
              "url": "https://edmtrain.com/san-francisco-ca/kruder-and-dorfmeister-485139?get=tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-08T14:57:38.344888Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-04-11T01:14:41.788768Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1f3f9b653074",
              "venue_id": "venue_zellerbach",
              "title": "Oscar© by The Australian Ballet",
              "event_time": "2026-09-25T19:30:00",
              "venue_name": "Zellerbach Hall",
              "event_start": "2026-09-25T19:30:00",
              "event_date": "2026-09-25",
              "venue_address": "101 Zellerbach Hall, Berkeley, CA 94720",
              "description": "Berkeley Symphony Orchestra performs the live score for the North American premiere of Christopher Wheeldon's 'Oscar'. This full-length ballet, performed by The Australian Ballet, explores the life and literary legacy of Oscar Wilde, blending his biography with characters from his most famous works.",
              "event_types": [
                "live_music",
                "classical",
                "dance",
                "theater"
              ],
              "price_info": "Subscription and single tickets available.",
              "url": "https://calperformances.org/events/the-australian-ballet-oscar-by-christopher-wheeldon/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_berkeley_symphony",
                  "source_name": "Berkeley Symphony",
                  "fetched_at": "2026-04-30T11:55:39.113695Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_zellerbach",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-06-03T11:09:45.996446Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_zellerbach|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f2d300cbb1a7",
              "venue_id": "venue_the_ritz",
              "title": "Revocation, Defeated Sanity & Boltcutter",
              "event_time": "2026-09-25T18:00:28-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-09-25T18:00:28",
              "event_date": "2026-09-25",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "REVOCATION\nDEFEATED SANITY\nFUMING MOUTH\nWEEPING\n\n \n\nFRIDAY SEPTEMBER 25, 2026",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$22 Advance – $25 Day-of-Show",
              "url": "https://www.ticketweb.com/event/revocation-defeated-sanity-bolt-cutter-the-ritz-tickets/14911553",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-06-04T13:32:17.714758Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-10T10:33:42.275715Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_ritz|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a1b31c07c1b2",
              "venue_id": "venue_masonic_hall",
              "title": "Beck: Ride Lonesome Tour",
              "event_time": "sep 25 8pm",
              "venue_name": "Masonic Hall",
              "event_start": "2026-09-25T20:00:00",
              "event_date": "2026-09-25",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Alternative rock icon Beck returns to the stage for his highly anticipated \"Ride Lonesome Tour,\" presented by Live 105. The concert at the Masonic Hall showcases his eclectic, genre-bending catalog of hits and fan favorites.",
              "event_types": [
                "other"
              ],
              "price_info": "Ticket prices vary",
              "url": "https://www.ticketmaster.com/beck-san-francisco-tickets-the-masonic-2026-tour-dates/event/1C006095B5B82A9D",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-10T10:33:42.275715Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-06-14T10:34:09.356091Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_masonic_hall|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_326bba237c36",
              "venue_id": "venue_august_hall",
              "title": "Everything Everything",
              "event_time": "sep 25 8pm",
              "venue_name": "August Hall",
              "event_start": "2026-09-25T20:00:00",
              "event_date": "2026-09-25",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$50.60",
              "url": "https://www.augusthallsf.com/tm-event/everything-everything-get-to-heaven-10th-anniversary-north-america/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-17T10:47:20.580351Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-06-23T15:07:42.574467Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2003238cfbed",
              "venue_id": "venue_the_fillmore",
              "title": "Sleep: North America 2026",
              "event_time": "Fri Sep 25, 2026",
              "venue_name": "The Fillmore",
              "event_start": "2026-09-25T20:00:00",
              "event_date": "2026-09-25",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "The legendary stoner doom metal band brings their heavy, hypnotic riffs and massive wall of sound to the stage. Fans can expect a powerful, slow-burning performance of classic tracks and new material.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$64",
              "url": "https://www.ticketmaster.com/sleep-north-america-2026-san-francisco-california-09-25-2026/event/1C0064D0AA8BBE93",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-06-23T10:31:21.591944Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-25T10:40:49.247198Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_fillmore|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6591adc0ae56",
              "venue_id": "venue_california_theatre",
              "title": "Don Giovanni - Opera San José",
              "event_time": "2026-09-25T19:30:00",
              "venue_name": "California Theatre",
              "event_start": "2026-09-25T19:30:00",
              "event_date": "2026-09-25",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "Relive the epic adventure on the big screen as Symphony San Jose performs John Williams's iconic, Oscar-winning score live. This special concert event brings the beloved cinematic masterpiece to life with full orchestral accompaniment.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "https://events.timely.fun/jc0x91t0/event/78443817",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-06-23T13:09:42.892074Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_symphony_san_jose",
                  "source_name": "Symphony San Jose",
                  "fetched_at": "2026-06-28T03:08:41.619469Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_california_theatre|2026-09-25",
              "run_id": "run_285788e23a8b",
              "run_label": "Don Giovanni - Opera San José, Sep 13 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7a44f592b9e1",
              "venue_id": "venue_curran_theater",
              "title": "Laurie Anderson",
              "event_time": "sep 25 8pm",
              "venue_name": "Curran Theatre",
              "event_start": "2026-09-25T20:00:00",
              "event_date": "2026-09-25",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "Laurie Anderson returns with The Republic of Love featuring Sexmob ! “Last spring I was invited to be part of a festival in Vienna,\" Anderson said. \"It was a theater, dance, music and literature festival and the theme was the rise of fascism in Europe. They asked me to do a two hour talk on the relationship of government and love. I don’t often get assignments, but this one was irresistible. Since then, this talk has taken several forms, all called The Republic of Love. The Republic of Love with Sexmob and guests is a collection of songs and stories about the current state of America, with some history thrown in. It features several of my songs– among them Big Science and Language Is A Virus– that have new meanings in 2026. It also features the words and thoughts of many Americans from Bob Dylan, Lou Reed, John Cage, Gertrude Stein, William S. Burroughs and Allen Ginsberg. The Republic of Love is a celebration of freedom.” Laurie Anderson is a writer, director, composer, visual artist, musician, and vocalist whose groundbreaking work spans art, theater, experimental music, and technology. She has created numerous multimedia stage performances, published ten books, and been nominated for five Grammy Awards, with her visual art exhibited globally at institutions including the Hirsh horn Museum in Washington, DC, and the Moderna Museet in Stockholm. In 2021 she delivered the Charles Eliot Norton Lectures at Harvard University, Spending the War Without You: Virtual Backgrounds. In 2024 she premiered ARK: United States Part 5 at Factory International in Manchester, released her studio album Amelia on Nonesuch Records, and was honored with a Grammy Lifetime Achievement Award as well as the Gold Medal for Music from the American Academy of Arts and Letters. She currently has two installations at Biennale Arte 2026: In Minor Keys in Venice, Italy. Her latest album, Let X=X , was released in May 2026.",
              "event_types": [
                "theater"
              ],
              "price_info": "Buy tickets",
              "url": "https://us.atgtickets.com/events/laurie-anderson/curran-theater/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_atg_sf",
                  "source_name": "ATG SF",
                  "fetched_at": "2026-06-30T22:24:15.780923Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theatre",
                  "fetched_at": "2026-07-02T11:10:06.356307Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_sf_theaters",
                  "source_name": "SF Theaters",
                  "fetched_at": "2026-07-03T16:33:48.523149Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-06T11:10:01.105806Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_curran_theater|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_397ad6a85d1a",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Brincos Dieras",
              "event_time": "Sep 25, 2026 @ 8:00pm",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-25T20:00:00",
              "event_date": "2026-09-25",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Hosted by popular Mexican comedians Ricardo Pérez and Slobotzky, this live show brings the humor and charm of Latin America's most listened-to comedy podcast to the stage. Audiences can expect an evening filled with hilarious anecdotes, crowd interaction, and signature comedic banter.",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "https://sanjosetheaters.org/event/78330803-20260925200000",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "San Jose CPA",
                  "fetched_at": "2026-07-13T10:23:51.933005Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5abb5f1c9f51",
              "venue_id": "venue_san_jose_civic",
              "title": "Killers of Kill Tony",
              "event_time": "Sep 25, 2026 @ 7:00pm",
              "venue_name": "San Jose Civic",
              "event_start": "2026-09-25T19:00:00",
              "event_date": "2026-09-25",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "This stand-up comedy show features longer, hilarious sets from the most popular and witty comedians who have risen to fame on the hit podcast Kill Tony. The lineup showcases diverse comedic styles and sharp humor for an unforgettable night of laughter.",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "https://events.timely.fun/jc0x91t0/event/78302898",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-07-14T10:57:41.573315Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cdeeb5192b61",
              "venue_id": "venue_the_lab",
              "title": "SF Electronic Music Festival: Night 2",
              "event_time": "Friday, September 25, 2026 8:00 PM",
              "venue_name": "The Lab",
              "event_start": "2026-09-25T20:00:00",
              "event_date": "2026-09-25",
              "venue_address": "2948 16th St, San Francisco, CA 94103",
              "description": "The 25th Annual San Francisco Electronic Music Festival brings a multi-day celebration of forward-thinking electronic, experimental, and audiovisual works to Gray Area. Attendees will experience live sets from leading and emerging sound artists.",
              "event_types": [
                "live_music",
                "electronic",
                "experimental",
                "festival"
              ],
              "price_info": "$23 / free or discounted for members",
              "url": "https://www.thelab.org/projects/2026/9/24/san-francisco-electronic-music-festival-night-1-rrose-idhaz-and-emily-bouton-blevin-blectum-dadfl",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lab",
                  "source_name": "The Lab",
                  "fetched_at": "2026-07-20T10:12:37.683821Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_toms_place_presents",
                  "source_name": "Tom's Place Presents",
                  "fetched_at": "2026-07-22T01:11:52.141643Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_sf_electronic_music_festival",
                  "source_name": "SF Electronic Music Festival",
                  "fetched_at": "2026-07-26T13:32:36.140642Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_lab|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9afd24c80ec2",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Face to Face, Get Dead, The Last Gang",
              "event_time": "Friday September 25\n          2026 8:00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-25T20:00:00",
              "event_date": "2026-09-25",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Fat Wreck Chords 35th Anniversary, featuring... - skate punk, pop-punk, Skate punk, punk rock/rocksteady",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$39",
              "url": "http://www.bottomofthehill.com/20260925.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-07-20T11:17:58.345550Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_487c3c24e2f5",
              "venue_id": "venue_sjz_break_room",
              "title": "Fall Series 2026",
              "event_time": "2026-09-25T20:00:00",
              "venue_name": "SJZ Break Room",
              "event_start": "2026-09-25T20:00:00",
              "event_date": "2026-09-25",
              "venue_address": "38 S 1st St, San Jose, CA 95113",
              "description": "South African pianist, composer and bandleader Bokani Dyer is an award-winning artist hailed as the future of his country's jazz, and one of the most formidable creative talents of his generation.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$27.00",
              "url": "https://sanjosejazz.org/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_san_jose_jazz",
                  "source_name": "San Jose Jazz",
                  "fetched_at": "2026-07-31T14:07:06.321144Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_sjz_break_room",
                  "source_name": "SJZ Break Room",
                  "fetched_at": "2026-08-02T11:04:09.945427Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sjz_break_room|2026-09-25",
              "run_id": "run_417d54062e82",
              "run_label": "Fall Series 2026, Sep 25 – Dec 5",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_db48da61b1eb",
              "venue_id": "venue_cafe_du_nord",
              "title": "Slow Magic",
              "event_time": "2026/09/25 Fri: Sep 25 (8pm)",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-09-25T20:00:00",
              "event_date": "2026-09-25",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Live Nation Presents: Slow Magic with Artemis Orion Fri, Sep 25 Doors: 7:00 pm | Show: 8:00 pm Tickets: $33.45 Buy Tickets 21 and up Darkness and light, aggression and gentleness, ecstasy and reflection: these dualities define Slow Magic’s third and strongest project to date, Float. An expansive and inventive compendium of modern electronic pop, the enigmatic producer’s latest spans a multitude of genres and moods resulting in a listening experience that makes for its own journey. https://music.seeking.blue/EmotionEngine Cafe Du Nord's Preferred Viewing Available, General Admission Not Included For any event that is listed as 18 or 21 and over, ANY ticket holder unable to present valid identification indicating that they are of age will not be admitted to this event, and will not be eligible for a refund. Any event listed as All Ages, means 6 years of age or older. ALL tickets are standing room only unless otherwise specified. If you need special accommodations, contact info@cafedunord.com. Support acts are subject to change without refund. Professional Cameras are not allowed without prior approval. Professional Camera defined as detachable lens or of professional grade as determined by the venue staff. When in doubt, just email us ahead of the show! We might be able to get you a Photo Pass depending on Artist’s approval. Artists Slow Magic Darkness and light, aggression and gentleness, ecstasy and reflection: these dualities define Slow Magic’s third and strongest project to date, Float. n expansive and inventive compendium of modern electronic pop, the enigmatic producer’s latest spans a multitude of genres and moods resulting in a listening experience that makes for its own journey. Written and recorded over the past two years, work on Float commenced shortly after touring behind 2014’s dreamy How to Run Away, the record’s jagged and surprising new sounds taking shape after a leisurely trip to Iceland in order to “try to get away” from things. A subsequent trip",
              "event_types": [
                "dj_party"
              ],
              "price_info": "21+",
              "url": "https://www.ticketweb.com/event/slow-magic-cafe-du-nord-tickets/14773493",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-06T11:58:22.520624Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_cafe_du_nord_and_swedish_american_hall",
                  "source_name": "Cafe Du Nord and Swedish American Hall",
                  "fetched_at": "2026-08-17T10:22:39.919691Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_400678cd5161",
              "venue_id": "venue_alhambra_public_house",
              "title": "Eurotrash at Alhambra Irish House",
              "event_time": "2026-09-25T19:00:00",
              "venue_name": "Alhambra PH",
              "event_start": "2026-09-25T19:00:00",
              "event_date": "2026-09-25",
              "venue_address": "831 Main Street, Redwood City, CA 94063",
              "description": "Eurotrash performs a live mix of vintage blues, rock, funk, and soul tunes.",
              "event_types": [
                "live_music",
                "rock",
                "rnb_soul_funk"
              ],
              "price_info": "No cover",
              "url": "https://alhambra-irish-house.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_alhambra_public_house",
                  "source_name": "Alhambra PH",
                  "fetched_at": "2026-08-08T10:57:04.824585Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_alhambra_public_house|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_572a7168504f",
              "venue_id": "venue_924_gilman",
              "title": "Gilman Benefit (RNRG)",
              "event_time": "sep 25 7pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-09-25T19:00:00",
              "event_date": "2026-09-25",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "A live benefit music performance at 924 Gilman raising funds to support the historic DIY venue.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "http://maps.google.com/?q=$15",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-09-02T11:13:59.237531Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_565c92faa84e",
              "venue_id": "venue_rickshaw_stop",
              "title": "Cain Culto",
              "event_time": "sep 25 9pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-09-25T21:00:00",
              "event_date": "2026-09-25",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "all ages; $55 vip",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$25/$30",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_54704af2085f",
              "venue_id": "venue_the_chapel",
              "title": "Rose City Band, Rain Parade",
              "event_time": "sep 25 9pm",
              "venue_name": "The Chapel",
              "event_start": "2026-09-25T21:00:00",
              "event_date": "2026-09-25",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "(((folkYEAH!))) presents Ripley Johnson's country rock ensemble Rose City Band celebrating their Sol Y Sombra album release.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$25/$28",
              "url": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQEjPWmWAAp2ggX1GxOvWkoDspOtpwZAsu0FO_6afO10WbeZ8dhvg_J_S8ZmQfpybTOA0pOhkPCqBADN_aCsk-2mkZ_vKR7ZfX1QWv1PB9JsZMGzOvN5TLqJangHkoFXLrHfkVdm1cYnzg==",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-09-04T10:04:30.038559Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_chapel|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_9da4c3f3c0d5",
              "venue_id": "venue_brick_and_mortar",
              "title": "Cheo",
              "event_time": "sep 25 9pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-09-25T21:00:00",
              "event_date": "2026-09-25",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Event Details Brick & Mortar Music Hall Presents Cheo September 25, 2026 9:00 pm PDT (Doors: 8:00 pm ) Brick and Mortar Music Hall , 1710 Mission Street , San Francisco, CA ( map ) $33.24 Buy Tickets + Google Calendar Cheo JUST ANNOUNCED Felukah — HibisKiss Tour October 28, 2026 Thoughts on Bowling November 27, 2026 BIIRD (Night 2) September 20, 2026 MoneyHillCasino October 11, 2026 Hayden Everett October 29, 2026 Follow us on Instagram Join the Brick & Mortar Newsletter",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$33",
              "url": "https://www.brickandmortarmusic.com/tm-event/cheo/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-08-18T10:20:03.120606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_1a8cd5e552dc",
              "venue_id": "venue_the_knockout",
              "title": "Toys That Kill, Middle-Aged Queers, Mugslug",
              "event_time": "sep 25 8pm",
              "venue_name": "The Knockout",
              "event_start": "2026-09-25T20:00:00",
              "event_date": "2026-09-25",
              "venue_address": "3223 Mission St, San Francisco, CA 94110",
              "description": "21+; mosh pit warning",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_knockout|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_db6afc07771d",
              "venue_id": "venue_mountain_winery",
              "title": "Cannons",
              "event_time": "sep 25 7:30pm",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-25T19:30:00",
              "event_date": "2026-09-25",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Cannons THE EVERYTHING GLOWS TOUR Jesse Jo Stark Friday, September 25 Doors 5:30PM , Show 7:30PM All Ages to Enter, 21 & Over to Drink The Mountain Winery Buy Tickets Star Seating Event Info No refunds or exchanges. All shows are rain or shine. Children age 3 and older require a ticket. A child under the age of 3 is considered a lap child and does not require a ticket. For directions, dining, parking, or carpool information, please visit www.mountainwinery.com. For information on how to purchase VIP season tickets including suites and box seats, please visit https://www.mountainwinery.com/vip-seating/ Doors open 2 hours prior to the show time. Seating begins 1 hour prior to the show time. Artist Info CANNONS blend dreamy electro-pop, glittering disco and nocturnal alt-rock into a signature sound that’s both cinematic and danceable. The Los Angeles trio—Michelle Joy (vocals), Ryan Clapham (guitar), and Paul Davis (drums/keys)—have released four albums, including Fever Dream (2022) and Heartbeat Highway (2023), which featured “Loving You,” their third Top 10 Alternative radio single. Their breakout hit “Fire For You” went RIAA Gold, topped Alternative Radio, and appeared in major syncs from Never Have I Ever to American Horror Story. Acclaimed by Billboard, The Hollywood Reporter, and Consequence, CANNONS have lit up stages at Coachella, Lollapalooza, Outside Lands, and beyond. Cannons will be returning in 2026 with new music, marking the start of their next chapter.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1438445",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-08-18T10:12:05.528810Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_feb6ec2b3c58",
              "venue_id": "venue_z_space",
              "title": "King Lear",
              "event_time": "September 25 @ 7:00 pm - 10:00 pm",
              "venue_name": "Z Space",
              "event_start": "2026-09-25T19:00:00",
              "event_date": "2026-09-25",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "Directed by Michael Socrates Moran Music composed by Paul Dresher Oakland Theater Project and New Performance Traditions are thrilled to present their most ambitious co-production to date: a bold, music-infused […]",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://dresherensemble.org/event/king-lear-by-william-shakespeare/2026-09-25/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-08-17T14:41:50.422468Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_paul_dresher_ensemble",
                  "source_name": "Paul Dresher Ensemble",
                  "fetched_at": "2026-08-26T10:26:36.842099Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_z_space|2026-09-25",
              "run_id": "run_e3a81a6d4f91",
              "run_label": "King Lear, Sep 25 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_40ca6a38cd0d",
              "venue_id": "venue_f8",
              "title": "DAD FOLSOM FRIDAY - Sindri & Stefan Ways",
              "event_time": "2026-09-25T22:00:00",
              "venue_name": "F8",
              "event_start": "2026-09-25T22:00:00",
              "event_date": "2026-09-25",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "DAD / Dudes And Disco takes over F8 for Folsom weekend featuring dark & dirty disco, electro, and house music all night with Sindri and Stefan Ways.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "From $23.18",
              "url": "https://www.eventbrite.com/e/dad-folsom-friday-sindri-stefan-ways-tickets-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-08-20T11:57:49.841413Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_f8|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_467eb95ab854",
              "venue_id": "venue_the_monarch",
              "title": "Sam Alfred",
              "event_time": "25 September 2026 10:00 PM",
              "venue_name": "The Monarch",
              "event_start": "2026-09-25T22:00:00",
              "event_date": "2026-09-25",
              "venue_address": "101 6th St, San Francisco, CA 94103",
              "description": "Eventbrite - Monarch presents Sam Alfred - Friday, September 25, 2026 at Monarch, San Francisco, California (CA). Find event and ticket information.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Buy Ticket",
              "url": "https://www.eventbrite.com/e/sam-alfred-tickets-1997644591749",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monarch",
                  "source_name": "The Monarch",
                  "fetched_at": "2026-08-20T12:12:16.271150Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-20T13:04:21.299441Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_eventbrite_sf",
                  "source_name": "Eventbrite SF",
                  "fetched_at": "2026-08-22T16:56:50.453316Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monarch|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6efa1645168a",
              "venue_id": "venue_the_mighty",
              "title": "Ranger Trucco",
              "event_time": "Fri 25th September 10:00 PM",
              "venue_name": "The Great Northern",
              "event_start": "2026-09-25T22:00:00",
              "event_date": "2026-09-25",
              "venue_address": "119 Utah St, San Francisco, CA 94103",
              "description": "Goldenvoice presents: Ranger Trucco and Loods at the Great Northern for Portola Week 2026!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Buy Ticket",
              "url": "https://www.eventbrite.com/e/ranger-trucco-the-great-northern-tickets-1998380185931",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_mighty",
                  "source_name": "The Great Northern",
                  "fetched_at": "2026-08-21T10:48:17.868763Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_mighty|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1cf6477fab9d",
              "venue_id": "venue_the_riptide",
              "title": "DJ Roby’s On The Catwalk @robyburgos",
              "event_time": "September 25 9:30 PM - September 26 1:30 AM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-25T21:30:00",
              "event_date": "2026-09-25",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "Electro / Ital-Disco / 80s / 90s / Indie / Mashups and more!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b0030fe328e4",
              "venue_id": "venue_catalyst_sc",
              "title": "Mike D 5D",
              "event_time": "Sep 25, 2026 Show: 9 pm",
              "venue_name": "The Catalyst",
              "event_start": "2026-09-25T21:00:00",
              "event_date": "2026-09-25",
              "venue_address": "1011 Pacific Ave, Santa Cruz, CA 95060",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$64.70",
              "url": "https://catalystclub.com/event/mike-d-5d/the-catalyst/santa-cruz-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_catalyst_sc",
                  "source_name": "The Catalyst",
                  "fetched_at": "2026-08-21T16:29:43.952279Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_catalyst_sc|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f69d72cc7a78",
              "venue_id": "venue_mabuhay_gardens",
              "title": "LIGHTS ON BROADWAY",
              "event_time": "2026-09-25",
              "venue_name": "The Mab",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "443 Broadway, San Francisco, CA 94133",
              "description": "Every bulb on the BROADWAY sign is a place to belong. Light an open one with your own dedication — or add your support to a story already shining.",
              "event_types": [
                "community"
              ],
              "price_info": "Read the stories About the Campaign",
              "url": "https://lightsonbroadway.org/sponsor-a-light/?face=east&letter=B",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mabuhay_gardens",
                  "source_name": "The Mab",
                  "fetched_at": "2026-08-22T11:20:57.510347Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mabuhay_gardens|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_628552a5e4c0",
              "venue_id": "venue_rio_theatre_sc",
              "title": "Snatam Kaur",
              "event_time": "2026-09-25",
              "venue_name": "Rio Theatre",
              "event_start": "2026-09-25T20:00:00",
              "event_date": "2026-09-25",
              "venue_address": "1205 Soquel Ave, Santa Cruz, CA 95062",
              "description": "Snatam Kaur at the Rio Theatre in Santa CruzDoors 6:30pm . Concert 7:30pmBy Thy Grace: 25 Years of Mantra: North America & Canada Tour 2026In 2026, Snatam Kaur brings By Thy Grace: 25 Years of Mantra to audiences across North America and Canada. This is a continuation of a decades long journey of shared chanting, prayer, and healing through sound.These concerts are gatherings where stillness, devotion, and collective voice come together to create an experience of oneness and healing. Each concert begins gently and meditatively, building into moments of deep joy and powerful celebration, and finally, ending with stillness and prayer. Together, we will chant the mantras and songs that have held us through life’s greatest challenges and joys, honoring their capacity to bring us back to ourselves time and time again.The title By Thy Grace reflects the heart of this tour. After twenty-five years of recording and sharing her music, Snatam views this work as something carried by the grace of the mantras themselves, the musicians and collaborators who helped to bring them into the world, and the communities who have welcomed these songs into their lives. What began in humble beginnings as unfamiliar sounds to her audiences, has become a living language of healing, known deeply through personal experience.Accompanied by her band, Ram Dass (piano, clarinet, vocals), Bruno Justi (guitar, flute, vocals), and Sukhmani (percussion, vocals), along with some surprise guests, Snatam will share music spanning her discography, featuring well known classics as well as deeply personal songs from Snatam’s history that have never before been performed live, spanning 25 years of music that has become a soundtrack for healing across generations. Each night becomes a remembrance of inner stillness, shared humanity, and of the healing power that arises when voices join together.This tour is an invitation to gather once again, to chant together, and to celebrate the grace that continues to move through these mantras and through all of us.Please save your confirmation email and take a screenshot of your ticket barcodes / QR codes.  Save the image to your phone and have this ready when you approach the doors of the venue.  We look forward to seeing you soon!All Ticket purchases are non-refundable. Brightstar Events is the only authorized ticket seller.For customer support please contact snatamkaurtickets@gmail.com Note that seating is General Admission within each section. Come early to get the best seats in your section.Seating chart below is for reference only. Tickets and info at https://www.snatam.com/events\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n  \n\n\n\n\n  \n\n\n\n  \n  \n    \n  \n\n\n    \n\n\n\n  \n\n\n\n\n  Show time: 7:30 PM, doors 6:30 PMTickets: $80Advance tickets: www.brightstarevents.comEvent website: www.snatam.comEvent website: www.bandsintown.comYouTube: www.youtube.com",
              "event_types": [
                "latin_world",
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.riotheatre.com/events-2/2026/9/25/snatamkuar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rio_theatre_sc",
                  "source_name": "Rio Theatre",
                  "fetched_at": "2026-08-22T11:37:08.858495Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rio_theatre_sc|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_788918b18a97",
              "venue_id": "venue_crepe_place",
              "title": "The Fritz DJ Experience",
              "event_time": "2026-09-25",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-25T20:00:00",
              "event_date": "2026-09-25",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "FREE",
              "url": "https://thecrepeplace.com/shows-list/the-fritz-dj-experience-friday-september-25-from-530-to-730pm-free-on-the-garden-stage",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fb046d037e46",
              "venue_id": "venue_abbott_square",
              "title": "VELOUR",
              "event_time": "Friday, September 25, 2026 7:00 PM - 10:00 PM",
              "venue_name": "Abbott Square Market",
              "event_start": "2026-09-25T19:00:00",
              "event_date": "2026-09-25",
              "venue_address": "725 Front St, Santa Cruz, CA 95060",
              "description": "Velour, A groove and funk band from Santa Cruz CA. Inspired by The Meters, Galactic, and Greyboy",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.abbottsquaremarket.com/events/velour",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_abbott_square",
                  "source_name": "Abbott Square Market",
                  "fetched_at": "2026-08-22T12:39:51.694804Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_abbott_square|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_efd11595fc65",
              "venue_id": "venue_act_theater",
              "title": "Alfred Hitchcock's North by Northwest",
              "event_time": "2026-09-25",
              "venue_name": "ACT Theater",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "\"I am thrilled, excited and perhaps a little apprehensive to bring the iconic North by Northwest home to the US! I just hope that American audiences will love it as much as our British audiences did. What I am not apprehensive about is bringing its message; one of nations coming together in peace and friendship to make the world a better place. I think we can all raise a glass to that! I am also itching to return to A.C.T. and San Francisco, a piece of my heart will always remain in California and I cannot wait to return to your beautiful theatre, vivid audience and magic state.\" —Emma Rice",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-08-22T13:54:28.481304Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_act_theater|2026-09-25",
              "run_id": "run_8f5d72a961cd",
              "run_label": "Alfred Hitchcock's North by Northwest, Sep 22 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_8e306dc951e6",
              "venue_id": "venue_dance_mission",
              "title": "Encounter",
              "event_time": "2026-09-25 2026-09-26",
              "venue_name": "Dance Mission Theater",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "3316 24th St, San Francisco, CA 94110",
              "description": "A dynamic dance theater production created by Aparna Sindhoor, Anil Natyaveda, and S M Raju blending classical Indian dance, martial arts, and storytelling.",
              "event_types": [
                "dance",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dance_mission",
                  "source_name": "Dance Mission Theater",
                  "fetched_at": "2026-08-22T15:02:23.569813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dance_mission|2026-09-25",
              "run_id": "run_e9aecba7c663",
              "run_label": "Sindhoor Natya – Navarasa presents ENCOUNTER, Sep 25 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0b51ca3154f6",
              "venue_id": "venue_crows_nest_sc",
              "title": "THE HELP",
              "event_time": "Friday September 25th 08:00 PM",
              "venue_name": "The Crow's Nest",
              "event_start": "2026-09-25T20:00:00",
              "event_date": "2026-09-25",
              "venue_address": "2218 East Cliff Dr, Santa Cruz, CA 95062",
              "description": "Friday September 25th Feel good music for the soul Starts at 08:00 PM",
              "event_types": [
                "live_music"
              ],
              "price_info": "$7 cover",
              "url": "https://www.instagram.com/thehelp_209/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crows_nest_sc",
                  "source_name": "The Crow's Nest",
                  "fetched_at": "2026-08-22T15:19:13.909618Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crows_nest_sc|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3dae3707f1ae",
              "venue_id": "venue_radius_gallery",
              "title": "The Mug” exhibition",
              "event_time": "Sept 25 - Nov 8",
              "venue_name": "Radius Gallery",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "1050 River St Unit 127, Santa Cruz, CA 95060",
              "description": "“The Mug” exhibition. Curated by Janet Fine & Ann Hazels",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_radius_gallery",
                  "source_name": "Radius Gallery",
                  "fetched_at": "2026-08-22T16:03:25.277519Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_radius_gallery|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_da9e0610cbb3",
              "venue_id": "venue_park_hall_ben_lomond",
              "title": "The Addams Family",
              "event_time": "2026-09-25",
              "venue_name": "Park Hall",
              "event_start": "2026-09-25T20:00:00",
              "event_date": "2026-09-25",
              "venue_address": "9400 Mill St, Ben Lomond, CA 95005",
              "description": "The Addams Family theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://mctshows.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_park_hall_ben_lomond",
                  "source_name": "Park Hall",
                  "fetched_at": "2026-08-22T19:38:45.882590Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_park_hall_ben_lomond|2026-09-25",
              "run_id": "run_8d42d89c5c45",
              "run_label": "The Addams Family, Sep 18 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_36f69b64409c",
              "venue_id": "venue_park_hall_ben_lomond",
              "title": "Rumors",
              "event_time": "2026-09-25T14:00:00",
              "venue_name": "Park Hall",
              "event_start": "2026-09-25T14:00:00",
              "event_date": "2026-09-25",
              "venue_address": "9400 Mill St, Ben Lomond, CA 95005",
              "description": "A comedy by Neil Simon, directed by Marnae Taylor. Charley, the deputy mayor of New York, and his wife Myra Brock, on the evening of their tenth wedding anniversary, had an elegant dinner party which goes histrically wrong. Four couples arrive expecting a night of sophistication—only to discover the host has had a terrible mishap and his wife is missing. Desperate to cover up the scandal, they spin wilder and wilder stories, turning confusion into chaos as rumors fly faster than champagne corks. With a niche fit, a whiplash, mitigated jealousy, a recurring back spasm, comedy ensues. Brimming with razor-sharp wit, slapstick mishaps, and Simon's trademark charm, Rumors is a laugh-out-loud comedy that proves the truth may be the funniest thing of all.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "",
              "url": "https://mctshows.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_park_hall_ben_lomond",
                  "source_name": "Park Hall",
                  "fetched_at": "2026-08-22T19:38:45.882590Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_park_hall_ben_lomond|2026-09-25",
              "run_id": "run_b17f8875ebd5",
              "run_label": "Rumors, Sep 18 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_96ed72839924",
              "venue_id": "venue_the_418_project",
              "title": "Califia's Children",
              "event_time": "Friday, September 25, 2026\n7:30 PM - 9:30 PM",
              "venue_name": "The 418 Project",
              "event_start": "2026-09-25T19:30:00",
              "event_date": "2026-09-25",
              "venue_address": "155 S River St, Santa Cruz, CA 95060",
              "description": "With esoteric historian Mike Marinacci",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://the418project.org/events/califias-children-alternative-spiritual-movements-in-california",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_418_project",
                  "source_name": "The 418 Project",
                  "fetched_at": "2026-08-22T20:30:04.363966Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_418_project|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f4364583982e",
              "venue_id": "venue_the_418_project",
              "title": "Dance or Die: A Drag Rave",
              "event_time": "Friday, September 25, 2026\n9:00 PM - 11:59 PM",
              "venue_name": "The 418 Project",
              "event_start": "2026-09-25T21:00:00",
              "event_date": "2026-09-25",
              "venue_address": "155 S River St, Santa Cruz, CA 95060",
              "description": "The BIGGEST DRAG EXPERIENCE SANTA CRUZ HAS EVER SEEN with DJ DEATHTONOKIA, and drag performances from top talent in our community!",
              "event_types": [
                "dj_party",
                "dance",
                "community"
              ],
              "price_info": "Free - Donations Accepted",
              "url": "https://the418project.org/events/dance-or-die-a-drag-rave",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_418_project",
                  "source_name": "The 418 Project",
                  "fetched_at": "2026-08-22T20:30:04.363966Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_418_project|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2c8ca880e5de",
              "venue_id": "venue_dna_lounge",
              "title": "Brut SF Folsom Friday",
              "event_time": "2026/09/25 Fri: Sep 25 (9pm-3am)",
              "venue_name": "DNA Lounge",
              "event_start": "2026-09-25T21:00:00",
              "event_date": "2026-09-25",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "We've moved... and everything about this hits harder. BRÜT Folsom takes over a brand-new playground built for impact: multiple rooms, deeper sound, and darker corners designed to pull you in and keep you there. This year's theme is Sub -- a study in pressure, control, and surrender, where the line between who leads and who follows blurs under the weight of the night. Three DJs take command, each driving the energy deeper into the floor. International tech house force James Hurr headlines alongside BRÜT mainstay Dan Darlington and LA's rising, undeniable Justin Nicoll . You don't just enter this space -- you give into it.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$50-70 pre / $85+ | 21+",
              "url": "https://www.dnalounge.com/calendar/2026/09-25.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_ffdd465a17ad",
              "venue_id": "venue_the_mint",
              "title": "D. Tiffany & Friends",
              "event_time": "2026/09/25 Fri: Sep 25 (10pm-4am)",
              "venue_name": "The Mint",
              "event_start": "2026-09-25T22:00:00",
              "event_date": "2026-09-25",
              "venue_address": "1942 Market St, San Francisco, CA 94102",
              "description": "house, club, techno",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$71 b4 11 / $86+ | 21+",
              "url": "https://shotgun.live/en/events/boof-folsom-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_mint|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_4e4a0633612d",
              "venue_id": "venue_tommy_ts",
              "title": "JOEY GATTO",
              "event_time": "SEPT 25th & 26th",
              "venue_name": "Tommy T's",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "JOEY GATTO\nSEPT 25th & 26th\nTickets",
              "event_types": [
                "comedy"
              ],
              "price_info": "Tickets",
              "url": "https://tommyts-com.seatengine.com/events/133542",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-08-22T21:57:38.329553Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c5d33d5c59cf",
              "venue_id": "venue_the_sound_room",
              "title": "Adam Klipple Quintet",
              "event_time": "Friday, September 25, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-09-25T19:30:00",
              "event_date": "2026-09-25",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Adam Klipple, who has been described as \"a standout pianist who has gone to school on McCoy Tyner and Cecil Taylor and earned his degree,\" plays piano, Hammond organ, sampler, and a variety of vintage keyboards. He currently is a member of the legendary jazz rock band Blood, Sweat & Tears. He also currently performs and records with jazz phenom Veronica Swift.\n\nAdam has recorded and performed onstage with the likes of Ghostface Killah, Lauryn Hill, Graham Haynes, the Sun Ra Arkestra, Craig Harris, Joe Bowie's Defunkt, Sekou Sundiata, Marc Ribot, John Medeski, Kurt Rosenwinkle, Carla Cook, Dave Fiuczynski, David Gilmore, Josh Roseman, Peter Apfelbaum, Jay Rodriguez, Groove Collective, and Smokey Robinson. He has appeared at renowned venues including the Blue Note, Iridium, the Jazz Standard, Blues Alley, and the Knitting Factory, and at jazz festivals around the world.\n\nAlso a composer and arranger, Adam has earned grants from Jazz at Lincoln Center, the Kennedy Center, Arts International, Meet the Composer, and the U.S. Department of State, enabling him to tour and teach master classes in southeast Asia, the Pacific Rim, Russia, Kyrgyzstan, Uzbekistan, Central Asia, and the Caucasus.\n\nAdam’s band plays wild arrangements of current pop songs and classical music. What if Billie Eilish was a Motown star? What if Tchaikovsky was from Jamaica? What if Radiohead collaborated with Roy Orbison to record Hindustani classical music? All these questions are answered through Adam’s inventive arrangements and top notch funk jazz musicians.\n\nJesse Levit sax\n\nJoel Behrman trombone\n\nScott Amendola drums\n\nKai Lyons guitar\n\nAdam Klipple keys\n\nTickets at Adam Klipple Quintet",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/adam-klipple-soul-jazz-quintet",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-08-26T10:25:42.190144Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e705c1e87756",
              "venue_id": "venue_ashby_stage",
              "title": "THE FALL SHOW",
              "event_time": "2026-09-25",
              "venue_name": "Ashby Stage",
              "event_start": "2026-09-25T19:00:00",
              "event_date": "2026-09-25",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Long-lasting love is marked by both comfort and conflict. In The Fall Show, an elderly couple’s unexpected romance unfolds against a maelstrom of memory and movement. Lovers collide, chaos erupts, and tenderness persists in an intimate examination of love ‘til the very end.",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "",
              "url": "https://shotgunplayers.org/shows/fall",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-08-26T10:34:19.491001Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashby_stage|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6b6c77909a51",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Little Shop of Horrors",
              "event_time": "2026-09-25",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Book & Lyrics by Howard Ashman, Music by Alan Menken. Based on the film by Roger Corman, Screenplay by Charles Griffith. Directed by Ben Villegas Randle, Musical Direction by Jad Bernardo, Choreography by Leslie Waggoner",
              "event_types": [
                "theater",
                "live_music"
              ],
              "price_info": "",
              "url": "https://nctcsf.org/event/little-shop/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-08-26T11:06:39.262369Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-09-25",
              "run_id": "run_5315ef200ae4",
              "run_label": "Little Shop of Horrors, Sep 12 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_05d6978b373b",
              "venue_id": "venue_la_pena",
              "title": "Tribute to Juan Gabriel",
              "event_time": "September 25 @ 7:30 pm",
              "venue_name": "La Pena",
              "event_start": "2026-09-25T19:30:00",
              "event_date": "2026-09-25",
              "venue_address": "3105 Shattuck Ave, Berkeley, CA 94705",
              "description": "A Tribute to Juan Gabriel with Guillermo Chavarria & Mariachi Mexicanismo An intimate evening of live mariachi celebrating Juan Gabriel, one of Latin America's most beloved musical icons. Live performance […]",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$20 – $35",
              "url": "https://lapena.org/event/recordar-es-volver-a-vivir-a-tribute-to-juan-gabriel/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_la_pena",
                  "source_name": "La Pena",
                  "fetched_at": "2026-08-26T11:21:25.407030Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_la_pena|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a553ae54ac36",
              "venue_id": "venue_the_freight__salvage",
              "title": "Bill Frisell & Harmony Five",
              "event_time": "2026-09-25T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-25T19:00:00",
              "event_date": "2026-09-25",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Login View Cart Time remaining: 00:00 Activate Code Your cart has expired Your order contained expired items and your shopping cart has been emptied. Close Details Friday, September 25, 2026 8:00PM Bill Frisell & Harmony Five featuring Petra Haden, Hank Roberts, Luke Bergman & Tim Angulo Bill Frisell & Harmony 5 Bill Frisell ’s career as a guitarist and composer has spanned more than forty-five years and many celebrated recordings. His catalog has been cited by DownBeat as “the best recorded output of the decade.” Bill Frisell & HARMONY FIVE expands upon 2019’s HARMONY project, blending jazz, traditional Americana, and chamber music; and features Petra Haden on vocals, Hank Roberts on cello and vocals, Luke Bergman on bass and vocals, and Tim Angulo on drums. Bill Frisell “Frisell has had a lot of practice putting high concept into a humble package. Long hailed as one of the most distinctive and original improvising guitarists of our time, he has also earned a reputation for teasing out thematic connections with his music…” – The New York Times Recognized as one of America’s 21 most vital and productive performing artists, Frisell was named an inaugural Doris Duke Artist in 2012. He is also a recipient of grants from United States Artists and Meet the Composer, among others. From 2013 – 2015, Bill was Resident Artistic Director for Jazz at Lincoln Center for their Roots of Americana series, and in 2016, he was a beneficiary of the first FreshGrass Composition commission to preserve and support innovative grassroots music. Upon San Francisco Jazz opening their doors in 2013, he served as one of their Resident Artistic Directors. Bill is also the subject of a documentary film by director Emma Franz, entitled Bill Frisell: A Portrait , which examines his creative process in depth. He has also received an honorary doctorate from the Berklee College of Music. Website Hank Roberts With a career spanning over 50 years, improvisational cellist and composer Hank Roberts has",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://secure.thefreight.org/15972/15973",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_889fd1a8815b",
              "venue_id": "venue_cafe_borrone",
              "title": "Clint Baker & The All Stars",
              "event_time": "September 25th | 6pm - 8pm",
              "venue_name": "Cafe Borrone",
              "event_start": "2026-09-25T18:00:00",
              "event_date": "2026-09-25",
              "venue_address": "1010 El Camino Real, Menlo Park, CA 94025",
              "description": "Enjoy a lively evening of traditional New Orleans-style jazz and swing with Clint Baker & The All Stars. This long-running local favorite brings energetic live music to Cafe Borrone in Menlo Park.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.cafeborrone.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cafe_borrone",
                  "source_name": "Cafe Borrone",
                  "fetched_at": "2026-08-28T12:32:32.195525Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_borrone|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2d11a35f0e89",
              "venue_id": "venue_sfjazz_lab",
              "title": "JAHARI STAMPLEY FAMILY SOUL TRIO",
              "event_time": "2026-09-25 7:00 PM",
              "venue_name": "SFJAZZ Lab",
              "event_start": "2026-09-25T19:00:00",
              "event_date": "2026-09-25",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Pianist and composer Jahari Stampley has emerged as one of the most electrifying young artists in modern jazz, blending breathtaking virtuosity with deep emotional expression and fearless stylistic range. Raised in Chicago in a profoundly musical family, Stampley developed his artistry through gospel, jazz, classical music, and Black creative traditions, building a voice that feels both rooted and radically contemporary. His international breakthrough came after winning the prestigious Herbie Hancock Institute of Jazz International Piano Competition, where his dazzling technique, originality, and compositional brilliance announced the arrival of a major new talent. Beyond his acclaim as a pianist, Stampley has become known for adventurous collaborations spanning jazz, hip-hop, R&B, and experimental music, working with Stanley Clarke, Derrick Hodge, Keyon Harrold, and others. He’s released a pair of albums including 2025’s What A Time . With the Family Soul Trio, featuring his mother, GRAMMY-nominated multi-instrumentalist D-Erania Stampley , and drummer Miguel Russell , Jahari brings his music into an intimate and deeply personal space. The ensemble channels family legacy, spiritual connection, and rhythmic vitality into performances that move fluidly between jazz, soul, gospel, and improvisation. Together, they create music that feels celebratory, searching, and profoundly human, highlighting the communal spirit at the heart of Black American music.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/jahari-stampley-family-soul-trio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_lab|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_479a198a54f1",
              "venue_id": "venue_sfjazz_miner",
              "title": "Marcus Miller: We Want Miles",
              "event_time": "2026-09-25 7:30 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-09-25T19:30:00",
              "event_date": "2026-09-25",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Members Only\n\nLivestream Only",
              "event_types": [
                "livestream",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/marcus-miller-we-want-miles-centennial-celebration/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_8e48b01ba18d",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Red Fast Triple Luck",
              "event_time": "2026-09-25 7:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-09-25T19:00:00",
              "event_date": "2026-09-25",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "Other Dimensions in Sound is our Friday music series curated and hosted by Boohaabian multi reed player extraordinare David Boyce. Each week David will be inviting different musical guests to join him in our galeria for a night of musical medicina.\n\nTonight’s heavy dose of musical medicina is being provided by Red Fast Triple Luck(David Boyce-reeds&efxs, PC Munoz-percussion,boom stick, and flying hookrug, Francis Wong-saxophone, and Chris Trinidad-bass)",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/3a95gt68y9scdzcngde38ylb2cr4yw",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-08-28T14:05:33.197491Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-31T10:04:42.136151Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_62ba004fbd11",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-09-25",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-09-25",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2fecbeb9beeb",
              "venue_id": "venue_dawn_club",
              "title": "“FOG CITY FRIDAYS” FEAT. FOG CITY",
              "event_time": "Friday, September 25, 2026 8:00 PM 11:59 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-09-25T20:00:00",
              "event_date": "2026-09-25",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Fog City Swing was created by Trumpeter Daniel Herrera in 2023, the goal, to become the “world’s smallest big band!” Rapidly becoming one of the preeminent Jazz and Swing bands in the Bay Area, their ongoing Friday night residency at San Francisco’s premier Jazz venue, the Dawn Club, features some of Northern California’s top vocalists and instrumentalists to consistently sold out crowds. With a completely original sound and a song list ranging from classic Sinatra and Count Basie to Quincy Jones and Michael Jackson, listeners will experience a memorable show that cannot be found anywhere else. Reserve your spot today for an unforgettable night of music!\n\n\n  \n#block-d8af53e2df9cde3c7241 {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n\n\n  }\n\n  #block-d8af53e2df9cde3c7241 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-d8af53e2df9cde3c7241 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-d8af53e2df9cde3c7241 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-d8af53e2df9cde3c7241 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-d8af53e2df9cde3c7241 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-d8af53e2df9cde3c7241 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/2ctyct385mnhy39-tg9wh-66t2b-5jsrn-ybz7p-btef8-l3cer-ynsl3-jjzrz-hp743-wybnk-z9nak-t6pph-eacgd-dsnc4-7azxb-p6za4-9hznt-scfhn-93efr",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-08-28T15:32:50.415811Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7239e644550c",
              "venue_id": "venue_the_box_shop",
              "title": "The 32nd Annual Brainwash Movie Festival!",
              "event_time": "2026-09-25T20:00:00",
              "venue_name": "The Box Shop",
              "event_start": "2026-09-25T20:00:00",
              "event_date": "2026-09-25",
              "venue_address": "951 Hudson Ave, San Francisco, CA 94124",
              "description": "Experience an eclectic lineup of weird, unusual, and unheralded independent films and shorts from around the world. This long-running festival celebrates creative and out-of-the-box filmmaking with juried screenings and awards.",
              "event_types": [
                "film",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_box_shop",
                  "source_name": "The Box Shop",
                  "fetched_at": "2026-08-28T16:23:50.173664Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_box_shop|2026-09-25",
              "run_id": "run_e7cf230432ed",
              "run_label": "The 32nd Annual Brainwash Movie Festival!, Sep 25 – Sep 26",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_99985a6db70d",
              "venue_id": "venue_omca",
              "title": "Los Tranquilos",
              "event_time": "2026-09-25T17:00:00",
              "venue_name": "OMCA",
              "event_start": "2026-09-25T17:00:00",
              "event_date": "2026-09-25",
              "venue_address": "1000 Oak St, Oakland, CA 94607",
              "description": "Step into an evening of nostalgic rhythms, movement, and community connection this Friday Night at OMCA. The Garden Stage comes alive with Los Tranquilos, a California trio blending the romantic soul, psychedelia, and classic grooves of 1960s and ’70s Latin America. With soulful melodies, rock influences, and timeless rhythms, their performance celebrates the rich musical traditions that continue to inspire generations.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Free",
              "url": "https://museumca.org/event/friday-nights-at-omca-with-los-tranquilos/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_omca",
                  "source_name": "OMCA",
                  "fetched_at": "2026-08-28T16:49:24.654558Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_omca|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4094ea1dc8b6",
              "venue_id": "venue_the_pear_theatre",
              "title": "Private Lives",
              "event_time": "2026-09-25",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "In this sparkling comedy of manners, two former lovers find themselves honeymooning with new spouses in adjoining rooms—only to discover that their passion for each other hasn't dimmed.",
              "event_types": [
                "theater"
              ],
              "price_info": "$46.00 - $48.00",
              "url": "https://www.thepear.org/whats-playing-now",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-08-28T18:26:07.122240Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-09-25",
              "run_id": "run_d1a58de7893a",
              "run_label": "Private Lives, Sep 25 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_375efc85ff04",
              "venue_id": "venue_regency_ballroom",
              "title": "CHANNEL TRES",
              "event_time": "Sep 25, 2026 8:00 PM",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-09-25T20:00:00",
              "event_date": "2026-09-25",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Portola Pre-Party — with JYOTY, Gelli Haha",
              "event_types": [
                "live_music",
                "electronic",
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theregencyballroom.com/events/detail?event_id=1573661",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-08-28T19:21:04.470307Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_47f24351c006",
              "venue_id": "venue_davies_symphony_hall",
              "title": "All San Francisco Concert",
              "event_time": "Friday, Sep 25, 2026 | 7:30 pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-09-25T19:30:00",
              "event_date": "2026-09-25",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "A cookie is a small piece of data (text file) that a website – when visited by a user – asks your browser to store on your device in order to remember information about you, such as your language preference or login information. Those cookies are set by us and called first-party cookies. We also use third-party cookies – which are cookies from a domain different than the domain of the website you are visiting – for our advertising and marketing efforts. More specifically, we use cookies and other tracking technologies for the following purposes:",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "LEARN MORE",
              "url": "https://www.sfsymphony.org/Buy-Tickets/2026-27/All-SF-Concert",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-08-28T19:38:14.129031Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7362871f217b",
              "venue_id": "venue_exploratorium",
              "title": "Daytime Members-Only Hours",
              "event_time": "2026-09-25",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Please consider joining us today ! Members are the backbone of our organization and help ensure the continuity of our mission to create inquiry-based experiences that transform learning worldwide. We can’t wait to see you at the museum.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/member-hours",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-25",
              "run_id": "run_e38dfc952011",
              "run_label": "Daytime Members-Only Hours, Aug 30 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f2c7cfccd26f",
              "venue_id": "venue_oasis",
              "title": "Strut: A Queer Pole Cabaret",
              "event_time": "2026-09-25T19:00:00",
              "venue_name": "Oasis",
              "event_start": "2026-09-25T19:00:00",
              "event_date": "2026-09-25",
              "venue_address": "298 11th St, San Francisco, CA 94103",
              "description": "A queer pole dancing and cabaret performance showcase.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.sfoasis.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_oasis",
                  "source_name": "Oasis",
                  "fetched_at": "2026-08-28T21:03:01.054070Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_oasis|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_b637a873cde6",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "Grief Sucks: A One Man Show By KevOnStage",
              "event_time": "2026-09-25T19:30:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-09-25T19:30:00",
              "event_date": "2026-09-25",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "One-man show by Kevin Fredericks (KevOnStage).",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.palaceoffinearts.org/event/grief-sucks-a-one-man-show-by-kevonstage/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-08-28T21:32:02.715078Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_e94d7a313cb6",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Friday Happy Hour | September 25",
              "event_time": "2026-09-25T16:00:00",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-09-25T16:00:00",
              "event_date": "2026-09-25",
              "venue_address": "San Francisco, CA 94118",
              "description": "Friday Happy Hour live music performance featuring Implied Jazz and the Luke Westbrook Trio.",
              "event_types": [
                "jazz",
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://illuminate.org/event/friday-happy-hour-september-25/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_illuminate_bandshell",
                  "source_name": "Illuminate Bandshell",
                  "fetched_at": "2026-08-28T22:20:33.560084Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-08-30T10:14:46.192640Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_6bac1777f4cf",
              "venue_id": "venue_club_fox",
              "title": "The Ol’man Brothers Band",
              "event_time": "2026-09-25T19:00:00",
              "venue_name": "Club Fox",
              "event_start": "2026-09-25T19:00:00",
              "event_date": "2026-09-25",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Eventbrite - Club Fox presents THE OL'MAN BROTHERS BAND - Friday, September 25, 2026 at Club Fox, Redwood City, CA. Find event and ticket information.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/the-olman-brothers-band-tickets-1998022505098?aff=oddtdtcreator&keep_tld=true",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-08-28T22:45:26.741794Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d22d63da3356",
              "venue_id": "venue_rhythmix",
              "title": "The Locals: Opening Reception",
              "event_time": "2026-09-25T18:00:00",
              "venue_name": "Rhythmix",
              "event_start": "2026-09-25T18:00:00",
              "event_date": "2026-09-25",
              "venue_address": "2513 Blanding Ave, Alameda, CA 94501",
              "description": "Opening reception for \"The Locals\" exhibit at K Gallery. Exhibit dates listed as September 11 to October 25, 2026.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://www.rhythmix.org/upcoming-exhibits/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rhythmix",
                  "source_name": "Rhythmix",
                  "fetched_at": "2026-08-28T23:14:01.025318Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rhythmix|2026-09-25",
              "run_id": "run_566a8f02098a",
              "run_label": "The Locals: Opening Reception, Sep 11 – Oct 25",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_0c5a78674ecf",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "9/25/2026 1 pm",
              "venue_name": "De Young",
              "event_start": "2026-09-25T13:00:00",
              "event_date": "2026-09-25",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-25",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b72cafdb3631",
              "venue_id": "venue_de_young",
              "title": "Egyptian Music Concert",
              "event_time": "9/25/2026 1 pm",
              "venue_name": "De Young",
              "event_start": "2026-09-25T13:00:00",
              "event_date": "2026-09-25",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "classical",
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/treasures-pharaohs-egyptian-music-concert",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7bd79ff0a7c2",
              "venue_id": "venue_punch_line",
              "title": "MOHANAD ELSHIEKY",
              "event_time": "Sep 25, 2026 7:30 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-25T19:30:00",
              "event_date": "2026-09-25",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Libyan-born comedian Mohanad Elshieky combines a deceptively laid-back demeanor with whip-smart, incisive commentary on politics and culture.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/mohanad-elshieky-san-francisco-california-09-25-2026/event/1C0064BE9FCBA3EF",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_38353f54d33b",
              "venue_id": "venue_punch_line",
              "title": "MOHANAD ELSHIEKY",
              "event_time": "Sep 25, 2026 9:45 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-25T21:45:00",
              "event_date": "2026-09-25",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Libyan-born comedian Mohanad Elshieky combines a deceptively laid-back demeanor with whip-smart, incisive commentary on politics and culture.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/mohanad-elshieky-san-francisco-california-09-25-2026/event/1C0064BE9FCFA3F6",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1309e4979051",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "JOANNE MCNALLY: PINOTPHILE",
              "event_time": "Fri Sep 25, 2026 7:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-09-25T19:30:00",
              "event_date": "2026-09-25",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Irish comedy star Joanne McNally returns with her new stand-up tour featuring hilarious stories about life, love, and singlehood.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/joanne-mcnally-pinotphile-san-francisco-california-09-25-2026/event/1C006469D49D0CC0",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9b7744d2df7a",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "KEITH PEDRO - JOB YOUR LOVE TOUR",
              "event_time": "Fri Sep 25, 2026 10:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-09-25T22:00:00",
              "event_date": "2026-09-25",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Comedian Keith Pedro takes the stage at Cobb's Comedy Club with his signature crowd work and high-energy stand-up on the Job Your Love Tour.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/keith-pedro-job-your-love-tour-san-francisco-california-09-25-2026/event/1C0064C90AC85ECD",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ce076cc104c4",
              "venue_id": "venue_shapeshifters",
              "title": "Gravitational Lensing: Feminist Film Dialogues",
              "event_time": "2026-09-25",
              "venue_name": "Shapeshifters",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "Program 17: Family Portraits/Relational Exercises includes a spectrum of diaristic films—from uncanny documentary to autobiographical re-enactments—that manifest different ways filmmakers choose to represent their relationships to family and, more broadly, to home (both literal and conceptual) through cinematic language.",
              "event_types": [
                "film"
              ],
              "price_info": "San Francisco Cinematheque",
              "url": "https://sfcinematheque.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shapeshifters",
                  "source_name": "Shapeshifters",
                  "fetched_at": "2026-08-30T10:04:33.112973Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-09-25",
              "run_id": "run_8afbca984fe1",
              "run_label": "Gravitational Lensing: Feminist Film Dialogues, Sep 9 – Nov 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f60695509eba",
              "venue_id": "venue_community_music_center",
              "title": "Lewis Jordan and Music at Large",
              "event_time": "9/25/2026 7:00 PM",
              "venue_name": "Community Music Center",
              "event_start": "2026-09-25T19:00:00",
              "event_date": "2026-09-25",
              "venue_address": "544 Capp St, San Francisco, CA 94110",
              "description": "Lewis Jordan and Music at Large produce and perform, along with devorah major, Red Fast Triple Luck, and Josiah Luis Alderete on the first of two nights of music and poetry: Persistence at the San Francisco Community Music Center on Friday, September 25th.",
              "event_types": [
                "live_music",
                "jazz",
                "literary"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23326",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-31T10:04:42.136151Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_community_music_center|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_5203a4cc6086",
              "venue_id": "venue_littlefield_concert_hall",
              "title": "Sarah Cahill & Regina Myers",
              "event_time": "9/25/2026 7:30 PM",
              "venue_name": "Littlefield Hall",
              "event_start": "2026-09-25T19:30:00",
              "event_date": "2026-09-25",
              "venue_address": "5000 MacArthur Blvd, Oakland, CA 94613",
              "description": "An evening with renowned pianist Sarah Cahill, and guest Regina Myers, tracing a century of playful invention, from Darius Milhaud's wit to the restless imaginations of Lou Harrison, Pauline Oliveros, and the Bay Area's new music vanguard.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23351",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-31T10:04:42.136151Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_littlefield_concert_hall|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_b9649c35deb4",
              "venue_id": "venue_the_independent",
              "title": "IN COLOR",
              "event_time": "9.25.2026 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-25T21:00:00",
              "event_date": "2026-09-25",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List In Color Fri, Sep 25 Doors: 8:30 pm | Show: 9:00 pm All Ages Please note - there is a delivery delay set for 2 weeks prior to show. Buy Tickets Share + Google Calendar Related Events Novulent Jun 19 Buy Tickets Mamas Gun Jun 20 Buy Tickets Artists In Color In and of itself, chemistry may be quiet, but you see, hear, and feel its impact. Such close chemistry drives the interplay of In Color. The Nashville band—Holden Clontz, Matthew Hastings, Val Hoyt, and Miles Laderman—lean on a silent bond sealed by years of friendship and a collective passion for pushing boundaries. They bring dimension to alternative pop, threading unshakable melodies through multi-layered soundscapes. After buzzing with millions of streams independently, the group simply transfix and invigorate on their 2025 debut EP, Snow Day [Big Loud Rock]. “To us, there’s definitely an unspoken vision for what In Color is,” observes Holden. “We don’t talk about it a lot. It comes from being friends for so long and listening to the same music. We’re all different in our own ways, but it works so well.” “It’s a special thing, because we trust each other’s instincts,” agrees Val. “We enjoy writing together. So, we’re able to authentically create and put out music that feels like we’re putting ourselves on the line.” Though the members’ paths had crossed over the years, you can trace the band’s genesis back to a particularly brutal snowstorm in early 2024. Val and Miles first met at an Atlanta middle school, attended the same high school, made their way to Belmont University, and lived together for a handful of years in Nashville. Holden had moved to Music City at 19-years-old and linked up with Matt through his roommate, hitting it off and “becoming best friends.” By way of this friend group, Matt eventually moved in with Val. Not to mention, the guys had separately played in various bands or released solo music. However, it took a blizzard to unlock the potential among them. “The four of us",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/in-color/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-08-31T10:40:49.218190Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_99db9af4df35",
              "venue_id": "venue_yoshis",
              "title": "SYLEENA JOHNSON",
              "event_time": "September 25, 2026 - 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-25T19:30:00",
              "event_date": "2026-09-25",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "TAKE ADVANTAGE OF 25% OFF THIS SHOW. CODE:SUMMER25 OFFER VALID FOR ONLINE PURCHASES ONLY I OFFER EXPIRES MON, JUN 29 AT 11:59PM PST LIMITED DISCOUNTED TICKETS AVAILABLE",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$45 - $85",
              "url": "https://yoshis.com/events/buy-tickets/syleen-johnson/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8898a4e8b976",
              "venue_id": "venue_yoshis",
              "title": "MARY JANE GIRLS",
              "event_time": "September 25, 2026 - 9:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-25T21:30:00",
              "event_date": "2026-09-25",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "DYNAMIC R&B AND FUNK GROUP",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$40",
              "url": "https://yoshis.com/events/buy-tickets/mary-jane-girls-4/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_73caa9e8fd29",
              "venue_id": "venue_sf_conservatory",
              "title": "Beyond the Aria",
              "event_time": "2026-09-25",
              "venue_name": "SF Conservatory of Music",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "50 Oak St, San Francisco, CA 94102",
              "description": "Find your voice —and your community. A tight-knit group, voice students work closely with all-star faculty who have performed at the Metropolitan Opera, San Francisco Opera, Houston Grand Opera, Paris Opera, Milan’s La Scala, and many others. As a student at SFCM, you'll have the opportunity to regularly attend dress rehearsals at the San Francisco Opera and take advantage of performance opportunities around the Bay Area.",
              "event_types": [
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "https://sfcm.edu/experience/performances/beyond-aria-craig-terry/20260925",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_conservatory",
                  "source_name": "SF Conservatory of Music",
                  "fetched_at": "2026-08-31T11:29:33.983801Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_conservatory|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_41c4dafcf687",
              "venue_id": "venue_ivy_room",
              "title": "Tammy's Camaro",
              "event_time": "Sep 25 7:00 PM",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-25T19:00:00",
              "event_date": "2026-09-25",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "ivy room presents - genre - tribute, rock",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ivyroom.com/#/events/194298",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-08-31T11:55:01.170393Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a5d95b0125c8",
              "venue_id": "venue_brava_theater",
              "title": "Hasta La Raíz: Short Film Block",
              "event_time": "September 25, 2026",
              "venue_name": "Brava Theater",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "2781 24th St, San Francisco, CA 94110",
              "description": "With Latino/a/x/e Heritage Month and La Brava's roots en La Mision, please join us for a collection of films celebrating Latine stories told by Latine filmmakers followed by a moderated Q&A after!\n\nNow Accepting Submissions!",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.brava.org/all-events/shortblockhastalaraiz-47w5-8c573-3jrd9-jexny-62ybj",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brava_theater",
                  "source_name": "Brava Theater",
                  "fetched_at": "2026-08-31T12:29:43.593913Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brava_theater|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ddc3c4a81d45",
              "venue_id": "venue_winters",
              "title": "Third Thursday Band",
              "event_time": "2026-09-25T16:00:00",
              "venue_name": "Winters",
              "event_start": "2026-09-25T16:00:00",
              "event_date": "2026-09-25",
              "venue_address": "1522 Francisco Blvd, Pacifica, CA 94044",
              "description": "Live music performance by Third Thursday Band.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_winters",
                  "source_name": "Winters",
                  "fetched_at": "2026-08-31T12:39:12.063314Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_winters|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_fa187373fa65",
              "venue_id": "venue_halcyon",
              "title": "CHARLES D",
              "event_time": "Fri 25 Sep ― 10:00pm",
              "venue_name": "Halcyon",
              "event_start": "2026-09-25T22:00:00",
              "event_date": "2026-09-25",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "CHARLES D the US TECHNO titan returns blending his signature sound of hard techno grooves with progressive elements. LARISSA PORTO + NOODS support the DRUMCODE darling on support!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "From$12",
              "url": "https://link.dice.fm/Q4dc67251847?pid=d6c08999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-08-31T14:35:05.800065Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e865b302e500",
              "venue_id": "venue_ashkenaz",
              "title": "Rico Fridays",
              "event_time": "09/25/2026 7:30 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-09-25T19:30:00",
              "event_date": "2026-09-25",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "Kathy Reyes - Salsa, Timba social dancing.",
              "event_types": [
                "dance",
                "latin_world",
                "dj_party"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/193445",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-08-31T14:45:33.243069Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c48446397100",
              "venue_id": "venue_yerba_buena_center",
              "title": "GaHee Park: Behind the Curtain",
              "event_time": "2026-09-25",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Park invites us to peek behind the curtain, as she lays claim to her own power as a surrealist painter working across fantasy and intimacy.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/gahee-park-behind-the-curtain/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-25",
              "run_id": "run_5353f80886f6",
              "run_label": "GaHee Park: Behind the Curtain, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3c5a5a2ce3cf",
              "venue_id": "venue_yerba_buena_center",
              "title": "Exhibition Opening Celebration",
              "event_time": "Friday, September 25, 2026, 6–9 PM",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-25T18:00:00",
              "event_date": "2026-09-25",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Meet the artists and curator, enjoy cocktails at our cash bar, and be among the first to see new work at YBCA.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "Tickets: Free with RSVP",
              "url": "https://ybca.org/event/opening-celebration-for-the-body-politic-and-prototypes-and-provocations/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_376d08b600c1",
              "venue_id": "venue_yerba_buena_center",
              "title": "Rael San Fratello: Prototypes",
              "event_time": "2026-09-25",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The most comprehensive presentation to date of the renowned Bay Area design studio Rael San Fratello.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/rael-san-fratello-prototypes-and-provocations/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-25",
              "run_id": "run_cd09bf07fb68",
              "run_label": "Rael San Fratello: Prototypes, Sep 25 – Jan 31",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_375b7ffd09f3",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dread Scott: The Body Politic",
              "event_time": "Friday, September 25, 2026, 6–9 PM",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-25T18:00:00",
              "event_date": "2026-09-25",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The exhibition reflects Dread Scott’s longtime commitment to art that confronts political issues and interrogates American patriotism.",
              "event_types": [
                "art"
              ],
              "price_info": "Free with RSVP",
              "url": "https://ybca.org/event/dread-scott-the-body-politic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-25",
              "run_id": "run_995f7fbf41ba",
              "run_label": "Dread Scott: The Body Politic, Sep 25 – Jan 31",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4fc0406ef36d",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dream",
              "event_time": "2026-09-25",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public art installation commissioned by YBCA and co-sponsored by San Francisco Public Works.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dream-public-art/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-25",
              "run_id": "run_b6a5ba4e8809",
              "run_label": "Dream, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5ddac025f48a",
              "venue_id": "venue_yerba_buena_center",
              "title": "SoMa Mahal Kita",
              "event_time": "2026-09-25",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A message of love for the SoMa neighborhood and community, inspired by weaving practices in the Phillipines and the colors of the Filipino flag.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/soma-mahal-kita-soma-i-love-you-ciriaco-sayoc/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-25",
              "run_id": "run_0c5141fff335",
              "run_label": "SoMa Mahal Kita, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3d4b9c77c335",
              "venue_id": "venue_yerba_buena_center",
              "title": "We Rooted in Flight",
              "event_time": "2026-09-25",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public artwork inviting passerbyers to join in the journey of collective flight",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/we-fly-for-a-liberated-we-we-rooted-in-flight/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-25",
              "run_id": "run_1d34139aedcf",
              "run_label": "We Rooted in Flight, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bb9cfae8c78f",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-09-25T14:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-25T14:00:00",
              "event_date": "2026-09-25",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-25",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_20d95a858b59",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-09-25T18:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-25T18:00:00",
              "event_date": "2026-09-25",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-25",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 2,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_90a6991bd4ee",
              "venue_id": "venue_elis_mile_high",
              "title": "Carrie Nation & the Speakeasy",
              "event_time": "Fri, Sep 25, 2026",
              "venue_name": "Eli's Mile High",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "3629 Martin Luther King Jr Way, Oakland, CA 94609",
              "description": "Carrie Nation & the Speakeasy, Clyde & the Milltailers, and the Pine Box Boys Fri, Sep 25 | Eli's Mile High Club Buy Tickets Time & Location Sep 25, 2026, 8:00 PM – Sep 27, 2026, 12:30 AM Eli's Mile High Club, 3629 Martin Luther King Jr Way, Oakland, CA 94609, USA About the event CARRIE NATION & THE SPEAKEASY (CNS) is a high-energy quintet from Wichita, KS, USA. The band, whose sound has been described as “...a stagecoach in overdrive” and “dark, psychedelic speedfolk”, has performed their signature blend of strings and horns across 49 states and 9 countries since 2007. CNS has built a solid grassroots following with their energetic live show and ability to fit on bills ranging from bluegrass to punk; rockabilly to ska. Thoughtful songwriting is delivered through dynamic arrangements and unconventional instrumentation. Throaty vocals glide over percussive guitar. Mandolin solos melt into blaring trombone lines at breakneck speed, while the upright bass and rock-solid drums churn out aggressive rhythms that carry the force of a Kansas freight train. Psychedelic soundscapes are punctuated by downright amphetaminic tempos and controlled cacophony. Anything but derivitive, CNS has developed a singular style that continues to bemuse newcomers and delight loyal fans. The band’s… Show More Tickets Ticket type ADV - General Admission Sale ends Sep 25, 12:00 AM Price $15.00 +$0.38 ticket service fee Quantity 0 Ticket type General Admission - Day of Price $20.00 +$0.50 ticket service fee Goes on sale Sep 25, 12:00 AM Total $0.00 Checkout Share this event",
              "event_types": [
                "live_music",
                "folk",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.elismilehighclub.com/events/carrie-nation-the-speakeasy-clyde-the-milltailers-and-the-pine-box-boys",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_elis_mile_high",
                  "source_name": "Eli's Mile High",
                  "fetched_at": "2026-08-31T16:36:06.503526Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_elis_mile_high|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_68b8f7e8e985",
              "venue_id": "venue_chase_center",
              "title": "Premium Suites",
              "event_time": "2026-09-25",
              "venue_name": "Chase Center",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "At Select-A-Suite on Thursday, September 17, 2026, not only will you have the opportunity to reserve your suites before they are released to the public, but attendees can also enjoy complimentary food and beverage tastings throughout the event, network with fans and business professionals, and have the opportunity to capture a photo with the Larry O'Brien Trophies.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://chasecenter.com/premium-experiences/premium-suites/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-08-31T17:38:13.687686Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-09-25",
              "run_id": "run_bed5be826f7c",
              "run_label": "Premium Suites, Sep 10 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b2b12eeb1ca4",
              "venue_id": "venue_white_horse",
              "title": "Queer Speed Friending",
              "event_time": "2026-09-25T18:30:00",
              "venue_name": "White Horse Inn",
              "event_start": "2026-09-25T18:30:00",
              "event_date": "2026-09-25",
              "venue_address": "6551 Telegraph Ave, Oakland, CA 94609",
              "description": "A structured queer speed friending event and mixer organized by Queer The Way to help LGBTQ+ community members connect and build friendships.",
              "event_types": [
                "community"
              ],
              "price_info": "Starts at $39.19",
              "url": "https://www.eventbrite.com/e/queer-speed-friending-make-friends-in-a-welcoming-environment-tickets-1190664333",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_white_horse",
                  "source_name": "White Horse Inn",
                  "fetched_at": "2026-08-31T17:48:56.702708Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_white_horse|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_445bfd1f7980",
              "venue_id": "venue_great_star_theater",
              "title": "The Umbilical Brothers",
              "event_time": "September 25 - 26, 2026",
              "venue_name": "Great Star Theater",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "636 Jackson Street, San Francisco, CA 94133",
              "description": "\"“Wildly funny, wildly creative…silly behavior of the highest calibre” The New York Times “An unmissable and unforgettable “comedy experience” Broadway Baby “My faith in comedy was restored” The Times, London The Umbilical Brothers are an international comedy phenomenon.\"",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "https://www.tickettailor.com/events/nx5theatricalllc/2312766",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_great_star_theater",
                  "source_name": "Great Star Theater",
                  "fetched_at": "2026-08-31T18:08:20.593452Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_star_theater|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a6654f530b7d",
              "venue_id": "venue_first_lutheran_pa",
              "title": "Neighbors Group",
              "event_time": "2026-09-25T18:30:00",
              "venue_name": "First Lutheran PA",
              "event_start": "2026-09-25T18:30:00",
              "event_date": "2026-09-25",
              "venue_address": "600 Homer Ave, Palo Alto, CA 94301",
              "description": "A social gathering around a topic: care for neighbors in need, work for justice and peace, service event planning.",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "https://www.flcpa.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_first_lutheran_pa",
                  "source_name": "First Lutheran PA",
                  "fetched_at": "2026-08-31T18:13:13.604079Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_first_lutheran_pa|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_27e43e3bf441",
              "venue_id": "venue_tupelo",
              "title": "Hot Einstein",
              "event_time": "Friday September 25th 9:00PM - 1:30AM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-25T21:00:00",
              "event_date": "2026-09-25",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "What spicy genius hummingbird wants the sweet nectar of piano, drums, bass and the flowery petals of tasty guitar lickings? Well, that’s what Hot Einstein brings.. show up with your test tubes and Bunsen burners and then get ready to boogie.. you may leave wondering what’s up in your petri dish. Mmm",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7a1b1562f21d",
              "venue_id": "venue_great_american_music_hall",
              "title": "Six Sex",
              "event_time": "Fri Sep 25 2026 9:00PM",
              "venue_name": "Great American",
              "event_start": "2026-09-25T21:00:00",
              "event_date": "2026-09-25",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "Goldenvoice presents… | B0yg1rl, Femme Jatale, b2b Erika | with  B0yg1rl, Femme Jatale, b2b Erika",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$25.00-$40.00",
              "url": "https://wl.seetickets.us/event/six-sex/702210?afflky=GreatAmericanMusicHall",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_great_american_music_hall",
                  "source_name": "Great American",
                  "fetched_at": "2026-09-02T10:02:47.962874Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f13b25e998b2",
              "venue_id": "venue_city_lights_theater",
              "title": "Eureka Day",
              "event_time": "2026-09-25T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-09-25T19:30:00",
              "event_date": "2026-09-25",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "Sharp comedy by Jonathan Spector about a progressive Berkeley private school whose board is thrown into conflict during a mumps outbreak. Runs September 24 through October 18, 2026.",
              "event_types": [
                "theater"
              ],
              "price_info": "Single tickets go on sale June 1",
              "url": "https://cltc.org/event/eureka-day/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-09-02T10:09:11.201902Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-09-25",
              "run_id": "run_4a0cceaa9027",
              "run_label": "Eureka Day, Sep 24 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_39be9271030e",
              "venue_id": "venue_public_works",
              "title": "Bearracuda: Horse Meat Disco",
              "event_time": "2026-09-25T21:00:00",
              "venue_name": "Public Works",
              "event_start": "2026-09-25T21:00:00",
              "event_date": "2026-09-25",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "Bearracuda SF presents Folsom Friday featuring Horse Meat Disco on the main floor and Mateo Segade upstairs.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$20+",
              "url": "https://publicsf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-09-02T11:21:34.915442Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_public_works|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_f5b580c931fc",
              "venue_id": "venue_the_midway",
              "title": "Neil Frances (DJ Set)",
              "event_time": "09/25/2026 10:00 PM",
              "venue_name": "The Midway",
              "event_start": "2026-09-25T22:00:00",
              "event_date": "2026-09-25",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "888 GARAGE ∙ INDOORS",
              "event_types": [
                "dj_party"
              ],
              "price_info": "TICKETS",
              "url": "https://www.tixr.com/groups/midwaysfgv/events/goldenvoice-presents-neil-frances-dj-set--203711",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-09-02T11:30:22.920988Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0f6ec794355e",
              "venue_id": "venue_discretion_brewing",
              "title": "Blue Lemonade",
              "event_time": "2026-09-25T17:30:00",
              "venue_name": "Discretion Brewing",
              "event_start": "2026-09-25T17:30:00",
              "event_date": "2026-09-25",
              "venue_address": "2703 41st Ave Ste A, Soquel, CA 95073",
              "description": "Live Music 5:30-7:30pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_discretion_brewing",
                  "source_name": "Discretion Brewing",
                  "fetched_at": "2026-09-02T11:35:03.120781Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_discretion_brewing|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f6914a5d1666",
              "venue_id": "venue_madrone_art_bar",
              "title": "Madrone Presents Fillmore Sessions",
              "event_time": "September 25 @ 6:30 pm - 8:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-25T18:30:00",
              "event_date": "2026-09-25",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Madrone’s own owner, Spike Krouse, hits the decks for a deep dive into the soul of Fillmore jazz 🎶 6:30–8:30 PM Expect a rich blend of legendary cuts and hidden gems as he spins selections from the iconic Oscar Myers & The Fillmore Collection — from heavy hitters to rare, lesser-known bangers.",
              "event_types": [
                "dj_party",
                "jazz"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/madrone-presents-fillmore-sessions-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_26b8979498e3",
              "venue_id": "venue_madrone_art_bar",
              "title": "I HEART THE 90s",
              "event_time": "September 25 @ 9:30 pm - 11:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-25T21:30:00",
              "event_date": "2026-09-25",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "DJs Samala, Mr. Grant, N Such, Mama K and Sonny Phono rocking hip hop, dance, alternative, grunge, reggae, etc. VJ Teo with the live visual mixing of 90s music video classics and beyond. SF’s Original 90s Dance Party Music starts at 9pm. $10 at 9:30pm / 21 & up w/ID",
              "event_types": [
                "dj_party",
                "film"
              ],
              "price_info": "$10",
              "url": "https://madroneartbar.com/event/i-heart-the-90s-2025-11-28-2026-03-27/2026-09-25/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_99ff20d8bde0",
              "venue_id": "venue_moes_alley",
              "title": "Tania Cassette",
              "event_time": "2026-09-25T21:00:00",
              "venue_name": "Moe's Alley",
              "event_start": "2026-09-25T21:00:00",
              "event_date": "2026-09-25",
              "venue_address": "1535 Commercial Way, Santa Cruz, CA 95065",
              "description": "Show: 9:00 PM",
              "event_types": [
                "live_music",
                "dj_party",
                "latin_world"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_moes_alley",
                  "source_name": "Moe's Alley",
                  "fetched_at": "2026-09-03T10:23:10.512238Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_moes_alley|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2a55bed8cb1e",
              "venue_id": "venue_black_cat",
              "title": "Stacy Dillard & Josh Evans 5tet",
              "event_time": "2026-09-25T19:00:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-25T19:00:00",
              "event_date": "2026-09-25",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $40 , $50 , $60\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n9:30 show: Bar @ 6:00, Doors @ 8:45\n\n\n\n\nHard-charging, deeply expressive modern jazz led by two fearless improvisers with serious New York fire.\n\n\n\n\nSaxophonist Stacy Dillard and trumpeter Josh Evans bring a powerhouse frontline to Black Cat for a four-night run built on swing, edge, and real-time invention. Dillard is known for a rich, commanding tone and a sound that stretches tradition without losing the feeling. Pianist Eric Reed called him “a true improviser,” while Roy Hargrove put it simply: “Stacy is a one-of-a-kind musician.”\n\n\n\n\nEvans brings his own deep fire to the bandstand, with a trumpet voice shaped by the lineage of Jackie McLean, Rashied Ali, Benny Golson, Cedar Walton, Christian McBride, Roy Hargrove, Gregory Porter, T.S. Monk, and many more. Together, Dillard and Evans lead a 5tet made for hard swing, sharp interplay, and the kind of late-night jazz energy that keeps the room on edge.\n\n\n\n\nBand Lineup:\n\nStacy Dillard, Saxophone\n\nJosh Evans, Trumpet\n\nGrant Levin, Piano\n\nDavid Ewell, Bass \n\nJaimeo Brown, Drums",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $40 , $50 , $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/12858/2026-09-25",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_be3c424dfaac",
              "venue_id": "venue_black_cat",
              "title": "Stacy Dillard & Josh Evans 5tet",
              "event_time": "2026-09-25T21:30:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-25T21:30:00",
              "event_date": "2026-09-25",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $40 , $50 , $60\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n9:30 show: Bar @ 6:00, Doors @ 8:45\n\n\n\n\nHard-charging, deeply expressive modern jazz led by two fearless improvisers with serious New York fire.\n\n\n\n\nSaxophonist Stacy Dillard and trumpeter Josh Evans bring a powerhouse frontline to Black Cat for a four-night run built on swing, edge, and real-time invention. Dillard is known for a rich, commanding tone and a sound that stretches tradition without losing the feeling. Pianist Eric Reed called him “a true improviser,” while Roy Hargrove put it simply: “Stacy is a one-of-a-kind musician.”\n\n\n\n\nEvans brings his own deep fire to the bandstand, with a trumpet voice shaped by the lineage of Jackie McLean, Rashied Ali, Benny Golson, Cedar Walton, Christian McBride, Roy Hargrove, Gregory Porter, T.S. Monk, and many more. Together, Dillard and Evans lead a 5tet made for hard swing, sharp interplay, and the kind of late-night jazz energy that keeps the room on edge.\n\n\n\n\nBand Lineup:\n\nStacy Dillard, Saxophone\n\nJosh Evans, Trumpet\n\nGrant Levin, Piano\n\nDavid Ewell, Bass \n\nJaimeo Brown, Drums",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $40 , $50 , $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/12858/2026-09-25",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ea9401133215",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Akira Tana & Friends from Osaka FT. Tony Lindsay",
              "event_time": "Friday, September 25, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-25T19:00:00",
              "event_date": "2026-09-25",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Friday, September 25, 2026 @ 7pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/akira-tana-friends-from-osaka-ft-tony-lindsay/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_33201461ca10",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Martin Luther McCoy",
              "event_time": "Friday, September 25, 2026 @ 9pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-25T21:00:00",
              "event_date": "2026-09-25",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Keys Jazz Bistro welcomes San Francisco native and former SF Jazz Collective member, Martin Luther McCoy.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $50 per show",
              "url": "https://keysjazzbistro.com/event/martin-luther-mccoy-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_82e817f657ed",
              "venue_id": "venue_siesta_valley_bowl",
              "title": "The Pete Escovedo Orchestra",
              "event_time": "September 25, 2026 8:00 PM",
              "venue_name": "Siesta Valley Bowl",
              "event_start": "2026-09-25T20:00:00",
              "event_date": "2026-09-25",
              "venue_address": "100 Gateway Blvd, Orinda, CA 94563",
              "description": "Legendary Percussionist Pete Escovedo is an artist who broke down barriers between Smooth Jazz, Salsa, Latin Jazz and contemporary music. His name has been synonymous in the music industry for more than 60 years.Grammy winning “Lifetime Achievement Award” percussionist Pete Escovedo, formed the supergroup AZTECA in 1970 with brother Coke Escovedo. This 16 piece band toured with Stevie Wonder and The Temptations.1972 Pete toured with Carlos Santana and recorded three albums, \"Moonflower\", \"Oneness\" and \"Inner Secrets”. In 1978 Pete and daughter Sheila E. recorded two albums on Fantasy records \"Solo Two\" and \"Happy Together”.Pete’s children Sheila E, Juan, and Peter Michael are all professional musicians, as well as solo artists. They have played, recorded, and toured with literally every top Artist in the industry. Pete has recorded with numerous Artists such as Carlos Santana, Tito Puente, Herbie Hancock, Mongo Santamaria, Bobby McFerrin, Cal Tjader, Woody Herman, Stephen Stills, Billy Cobham, Anita Baker, George Duke, Boz Scaggs, Andy Narell, Al Jarreau, Ray Obiedo, Dionne Warwick, Marlena Shaw, Barry White, Angela Bofill, Arturo Sandoval, Poncho Sanchez, Chick Corea, Dave Valentine, Najee, Gerald Albright, Prince, and the list goes on.After 60 years in the business, Pete is currently touring the world on what he is calling his “Retirement Tour”.‍",
              "event_types": [
                "live_music",
                "jazz",
                "latin_world"
              ],
              "price_info": "$71.15 - $91.80 (includes fees)",
              "url": "https://www.ticketmaster.com/event/1C0064F8248BC8F2",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_siesta_valley_bowl",
                  "source_name": "Siesta Valley Bowl",
                  "fetched_at": "2026-09-03T11:58:49.962348Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_siesta_valley_bowl|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0532dc097a1a",
              "venue_id": "venue_pacific_film_archive",
              "title": "A Tunnel",
              "event_time": "Sep 25, 2026 3 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-25T15:00:00",
              "event_date": "2026-09-25",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "An old railway platform in a remote valley of Georgia suddenly becomes a site for change in this wonderful documentary about the New Silk Road, a high-speed rail development project between China and Europe.",
              "event_types": [
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/tunnel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_299ccc18e734",
              "venue_id": "venue_pacific_film_archive",
              "title": "Taming the Garden",
              "event_time": "Sep 25, 2026 7 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-25T19:00:00",
              "event_date": "2026-09-25",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "The opening shot of this striking environmental tale captures a tree as tall as a fifteen-story building floating on a barge across the vast Black Sea. Its destination lies in a garden countless miles away, privately owned by a wealthy and anonymous man.",
              "event_types": [
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/taming-garden",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_438cec0b9a0c",
              "venue_id": "venue_local_edition",
              "title": "Candela Viva",
              "event_time": "September 25, 2026 8:30 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-09-25T20:30:00",
              "event_date": "2026-09-25",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Live Performance 8:30-12:30Come dance to live Cumbia and Salsa rhythms!",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/2023/6/7/tba-haww5-ak3tw-9j4na-83pp2-t9rs2-3hs74-mbnbp-c7ne7-9sy8t-84yx2-hyhd3-9tc5s-b7pse-tsly9-tnsz8-6f6fr-7ezah-jma77-6fjph-8j732-m7925",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-09-03T12:59:31.047351Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c8f8fa9b334b",
              "venue_id": "venue_cat_club",
              "title": "LEISURE",
              "event_time": "September 25, 2026 9:00 PM",
              "venue_name": "Cat Club",
              "event_start": "2026-09-25T21:00:00",
              "event_date": "2026-09-25",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "Britpop, 90s Indie, Shoegaze, Madchester and More…\n——\n9pm-2am\n(fourth fridays)",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.sfcatclub.com/calendar/102524-j3x6n-b2r5z-6w9gc-4lrbd-fhj2c-bwfg8-s4gwe-ct3py-lpc9r-yhg8z-2erjn-f9rw7-ncm8k-t878g-hjxr9-jglk9-c2hh9-7n5tf-2tcgm-sgdab-ss9h4-a4ars-n28ay",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cat_club",
                  "source_name": "Cat Club",
                  "fetched_at": "2026-09-03T13:24:58.141502Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_05f95627597c",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Hipsteria",
              "event_time": "25 September 2026",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Hipsteria performs an energetic mix of swing jazz, soul, and party classics live at Etcetera Wine Bar. Guests can enjoy wine and tapas accompanied by lively rhythms and classic jazz grooves.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-09-03T13:50:21.930604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_72155c343922",
              "venue_id": "venue_fox_theater_rwc",
              "title": "Haragan, Inspector & El Gran",
              "event_time": "September 25, 2026",
              "venue_name": "Fox Theater Redwood City",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Live concert featuring El Haragán y Cía, Inspector, and El Gran Silencio.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Contact promoter directly for ticket details",
              "url": "https://www.tickettailor.com/events/medioticketcom/2314982",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theater_rwc",
                  "source_name": "Fox Theater Redwood City",
                  "fetched_at": "2026-09-03T14:15:06.396214Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theater_rwc|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bda941c776a1",
              "venue_id": "venue_1015_folsom",
              "title": "2MANYDJS",
              "event_time": "September 25, 2026",
              "venue_name": "1015 Folsom",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "Friday September 25th, 2026 Portola, Goldenvoice, DJ Dials & 1015 Folsom: 2manydjs Rory Phillips 10pm • 21+ Only Table Reservations: BottleService@1015.com",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS | Bottle Service",
              "url": "https://wl.eventim.us/event/2manydjs/702802?afflky=1015Folsom",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-09-03T14:16:59.158049Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e20f66dc4fee",
              "venue_id": "venue_caravan_lounge",
              "title": "Ding Mao, Diamantide, Cloud Collector",
              "event_time": "09/25/2026",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-09-25",
              "event_date": "2026-09-25",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "Welcome to The Caravan Lounge THE CARAVAN LOUNGE is a friendly, owner-operated bar located in the heart of downtown San Jose. As well as being one of San Jose’s oldest live music venues, the Caravan provides other fun activities such as karaoke, comedy, burlesque, pool table, and DJ nights. The Caravan is also extremely affordable for those trying to stretch a budget. And let’s not forget the music! All the shows at the Caravan are FREE! Open 7 days a week 2pm – Close “Aside from the obvious draw of affordable libations poured by heavy-handed barkeeps, The Caravan sets itself apart from other no-frills bars as the place to go to see up-and-coming bands. The bar has hosted plenty of local bands’ first shows, and regularly features smaller touring acts. If you’re a music fan always on the lookout for your new favorite group, make sure to pay attention to who is coming to Caravan.” -Metro FEATURED VIDEOS – Go to our YouTube Channel by clicking here to see more… SEPTEMBER 2026 TUES. SEPT 1st- Karaoke with Ronnie Roach WED. SEPT 2nd – The Caravan Lounge Comedy Show hosted by Chelsea Costanza THURS. SEPT 3rd – SWEAT with DJ SNAQ FRI. SEPT 4th – Rebelskamp, Magick Blues Band, TBA SAT. SEPT 5th – Skool Of Sharks TUES. SEPT 8th- Karaoke with Ronnie Roach WED. SEPT 9th – The Caravan Lounge Comedy Show Hosted by Nyoki THURS. SEPT 10th – Shrine Goth DJ Night with Hex Embrace, C_Death, and Owen FRI. SEPT 11th – Circus Of Sin 10 Year Sinnaversary! Hosted By Some Guy SAT. SEPT. 12th – CaveFest II We Love You Curtis Castro! Abysmal Piss, Ominous Ruin, Lost To The Void TUES. SEPT 15th – Karaoke with Ronnie Roach WED. SEPT 16th -The Caravan Lounge Comedy Show Hosted by Ato Walker THURS. SEPT 17th – TBA FRI. SEPT 18th – TBA SAT. SEPT 19th – Facekicker, American Standard, 12 Steps To Nothing TUES. SEPT 22nd – Karaoke with Ronnie Roach WED. SEPT 23rd- The Caravan Lounge Comedy Show hosted by Matt Kennedy THURS. SEPT 24th – Sweethearts DJ Night FRI. SEPT 25th – Ding Mao, Diamantide, Clou",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "FREE",
              "url": "http://s172518151.onlinehome.us/caravan/site/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-09-03T14:20:40.572990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4bf68a6df274",
              "venue_id": "venue_poor_house_bistro",
              "title": "Maxx Cabello Jr. Band",
              "event_time": "2026-09-25T18:00:00",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-09-25T18:00:00",
              "event_date": "2026-09-25",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-09-04T10:11:13.938872Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_829c535e7a34",
              "venue_id": "venue_sailing_goat",
              "title": "Eden Edell",
              "event_time": "2026-09-25T17:00:00",
              "venue_name": "Sailing Goat",
              "event_start": "2026-09-25T17:00:00",
              "event_date": "2026-09-25",
              "venue_address": "1900 Stenmark Dr, Richmond, CA 94801",
              "description": "Live acoustic music featuring indie, folk, blues, and jazz tunes by Eden Edell.",
              "event_types": [
                "live_music",
                "folk",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://www.sailinggoatrestaurant.com/event-details/eden-edell",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sailing_goat",
                  "source_name": "Sailing Goat",
                  "fetched_at": "2026-09-04T10:13:07.105977Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sailing_goat|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_03ef50019669",
              "venue_id": "venue_mvcpa",
              "title": "Young Moon Stand-up Special: Renegade",
              "event_time": "September 25 8pm",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-09-25T20:00:00",
              "event_date": "2026-09-25",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "Le Meridien Events\n\nFriday, September 25 at 8pm\n**Performance in Chinese**\n\n\n来自艺术家:\n\n北美的观众朋友们，大家好\n我是杨蒙恩，我的专场将在九月份开启北美巡演。\n这个专场的大部分内容是我在纽约上学期间创作的，\n所以它虽然是个中文专场，但这次在北美的巡演更像是一场“本土”演出，而非出海项目。\n专场内容主要分为过去一年我在纽约学习生活的感想和经历，一些国内的故事还有我的童年往事。\n在创作中我对自己的要求是“好笑的，自由的，可以不那么正确的”。\n所以内容里有一些冒犯的存在，以及成年人内容（注：成年人内容并不等于色情笑话），希望大家酌情选择，未满18岁请勿购买。\n最后，我今年33岁，希望用这个专场结束我的 Jesus 之年，明年是新的开始。\n谢谢大家，我是杨蒙恩。\n\nFrom the artist:\n\nHello, North American Friends!\nI’m Young Moon, and I’m bringing my new stand-up special to North America this September.\n\nMost of this show was written during my time studying and living in New York. Although the show is performed in Chinese, this North American tour feels more like a locally created production than a Chinese show brought overseas.\n\nThe special covers my experiences and reflections from the past year in New York, stories from my life in China, and memories from my childhood.\n\nWhen writing this show, I gave myself three rules: it should be funny, it should be free, and it does not always have to be politically correct. As a result, the show may include provocative or potentially offensive material, as well as mature themes. Please note that “mature content” does not necessarily mean sexual jokes. Audience discretion is advised, and tickets should not be purchased for anyone under the age of 18.\n\nI’m turning 33 this year, and I hope this special will bring my “Jesus year” to a close —and the beginning of something new.\n\nThank you, and I hope to see you at the show.\n\n— Young Moon\n\nThis performance is 2 hours long and is recommended for ages 18 and up.\n\nMainStage | Reserved | Performance in Chinese\n\nTickets: $70.35 - $147.60 based on location.\n**Level A tickets (Center Orchestra) include a post-show meet & greet opportunity with the artist.\n**All tickets include a complimentary merchandise package.\n\nTicket price includes $3 Facility Use Fee",
              "event_types": [
                "comedy"
              ],
              "price_info": "$70.35 - $147.60",
              "url": "https://tickets.mvcpa.com/eventperformances.asp?evt=786",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mvcpa",
                  "source_name": "MV Center for the Performing Arts",
                  "fetched_at": "2026-09-04T10:13:59.609171Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mvcpa|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_185a8f2fe886",
              "venue_id": "venue_sevys_aptos",
              "title": "Live Music: Surf Creeps",
              "event_time": "September 25, Friday 7:00 PM",
              "venue_name": "Sevy's Bar & Kitchen",
              "event_start": "2026-09-25T19:00:00",
              "event_date": "2026-09-25",
              "venue_address": "7500 Old Dominion Ct, Aptos, CA 95003",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sevys_aptos",
                  "source_name": "Sevy's Bar & Kitchen",
                  "fetched_at": "2026-09-04T10:39:41.919005Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sevys_aptos|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e5bcfb528c4b",
              "venue_id": "venue_henflings",
              "title": "Blind Pilots Rock Henflings Tavern",
              "event_time": "2026-09-25T20:00:00",
              "venue_name": "Henfling's Tavern",
              "event_start": "2026-09-25T20:00:00",
              "event_date": "2026-09-25",
              "venue_address": "9450 Highway 9, Ben Lomond, CA 95005",
              "description": "Blind Pilots perform classic rock, pop, disco, punk, and funk live at Henflings Tavern.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://www.facebook.com/HenflingsBarNGrill/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_henflings",
                  "source_name": "Henfling's Tavern",
                  "fetched_at": "2026-09-04T10:41:15.215331Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_henflings|2026-09-25",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            }
          ]
        },
        "2026-09-26": {
          "date": "2026-09-26",
          "updated_at": "2026-09-04T10:41:17.673541Z",
          "events": [
            {
              "event_id": "evt_7e65daff6eee",
              "venue_id": "venue_orpheum_theater",
              "title": "Bluey's Big Play",
              "event_time": "Sat, Sep 26 - Sun, Sep 27, 2026",
              "venue_name": "Orpheum Theater",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "BLUEY’S BIG PLAY is coming back for another exciting live tour across North America. This 2026, your favorite cheeky canine is bringing her friends for a fantastic time to play! Get the kids ready to head out as the whole gang barks their way through a backyard full of adventure. While the televised theatrical production “Bluey’s Big Play – The Stage Show” is coming to Disney+, this is the whole family’s chance to experience playtime with Bluey, live on stage. The Stage Show brings Australia’s favourite canine family to life — a 45-minute extravaganza of music, imagination, games, and heart. Featuring wonderfully-crafted puppets and creative set designs, it brings the multiple Emmy® Award-winning animated series to a new light. It’s definitely a heartfelt experience for families.",
              "event_types": [
                "theater"
              ],
              "price_info": "Buy tickets",
              "url": "https://broadwaysf.com/events/blueys-big-play/orpheum-theatre/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theater",
                  "fetched_at": "2026-04-11T10:43:41.294540Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_atg_sf",
                  "source_name": "ATG SF",
                  "fetched_at": "2026-04-13T01:58:43.634788Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_theaters",
                  "source_name": "SF Theaters",
                  "fetched_at": "2026-04-13T07:47:46.039722Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9504eede2d7c",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Sibelius, Higdon, and Bartók",
              "event_time": "2026-09-26T19:30:00",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-09-26T19:30:00",
              "event_date": "2026-09-26",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Saturday Sep 26\n    8:00 PM                                            \n\n                                                \n                                                    Intermission Reception\n                                                   \n                                                                                                     \n                                                2026/27 Season, Donor Events \n                                                Thank you $1000+ donor and VIP supporters! Please join us for a Donor Reception in the Encore Room, 3rd floor, Lesher Center for the Arts. Grab drinks to-go in the 30 minutes before the show, and mingle with Symphony VIPs at intermission.\n                                                Details",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Single tickets $50-$110; Subscriptions available",
              "url": "https://www.californiasymphony.org/event/sibelius-higdon-and-bartok/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_california_symphony",
                  "source_name": "California Symphony",
                  "fetched_at": "2026-05-07T13:08:53.489767Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_center_for_the_performing_arts",
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-05-07T13:52:27.009707Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-08-12T10:48:24.659205Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9fd99f3f5668",
              "venue_id": "venue_zellerbach",
              "title": "The Australian Ballet: Oscar",
              "event_time": "2026-09-26T13:00:00",
              "venue_name": "Zellerbach Hall",
              "event_start": "2026-09-26T13:00:00",
              "event_date": "2026-09-26",
              "venue_address": "101 Zellerbach Hall, Berkeley, CA 94720",
              "description": "Inspired by the legacy and lore of one of literature's most extraordinary minds, Christopher Wheeldon's visionary ballet blends awe-inspiring choreography with the story of Oscar Wilde. Joby Talbot's lush orchestral score is performed live by the Berkeley Symphony Orchestra.",
              "event_types": [
                "live_music",
                "classical",
                "dance"
              ],
              "price_info": "Tickets start at $60",
              "url": "https://calperformances.org/performances/2026-27/the-australian-ballet-oscar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_berkeley_symphony",
                  "source_name": "Berkeley Symphony",
                  "fetched_at": "2026-05-16T10:38:20.555104Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_zellerbach",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-06-03T11:09:45.996446Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_zellerbach|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_42c782477667",
              "venue_id": "venue_zellerbach",
              "title": "Oscar by Christopher Wheeldon",
              "event_time": "2026-09-26T19:30:00",
              "venue_name": "Zellerbach Hall",
              "event_start": "2026-09-26T19:30:00",
              "event_date": "2026-09-26",
              "venue_address": "101 Zellerbach Hall, Berkeley, CA 94720",
              "description": "Inspired by the legacy and lore of one of literature's most extraordinary minds, Christopher Wheeldon's visionary ballet blends awe-inspiring choreography with the story of Oscar Wilde. Joby Talbot's lush orchestral score is performed live by the Berkeley Symphony Orchestra.",
              "event_types": [],
              "price_info": "Check website for pricing",
              "url": "https://calperformances.org/events/the-australian-ballet-oscar-by-christopher-wheeldon/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_berkeley_symphony",
                  "source_name": "Berkeley Symphony",
                  "fetched_at": "2026-05-28T15:22:07.305227Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_zellerbach",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-06-03T11:09:45.996446Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_zellerbach|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_aeacc186b952",
              "venue_id": "venue_the_independent",
              "title": "WEST 22ND",
              "event_time": "9.26 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-26T21:00:00",
              "event_date": "2026-09-26",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List Places To Be Tour West 22nd Where’s West? Sat, Sep 26 Doors: 8:30 pm | Show: 9:00 pm All Ages Please note - there is a delivery delay set for 2 weeks prior to show. Sold Out! Share + Google Calendar Related Events FOUR SQUARE VOL. 2 – A HIP-HOP VIDEO GAME LIVE THEATRE EXPERIENCE Aug 14 Buy Tickets Krooked Kings Aug 15 Buy Tickets Artists West 22nd Where’s West? Back to Event List Upcoming Events FOUR SQUARE VOL. 2 – A HIP-HOP VIDEO GAME LIVE THEATRE EXPERIENCE Fri Aug 14 Krooked Kings Sat Aug 15 Angine de Poitrine Wed Aug 19 G Flip Thu Aug 20 Niina Soleil Fri Aug 21 Pearl & The Oysters Sat Aug 22 Son Rompe Pera Thu Aug 27 Wax + DJ Hoppa Fri Aug 28 Brenn! Sat Aug 29 Tonic Walter Fri Sep 4 The Emo Night Tour Sat Sep 5 PawPaw Rod Tue Sep 8",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/west-22nd/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-05-28T16:47:34.249266Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_independent|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0e5b5a6e05b3",
              "venue_id": "venue_mountain_winery",
              "title": "The Concert: A Tribute to ABBA",
              "event_time": "Sep 26, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-26T19:30:00",
              "event_date": "2026-09-26",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "An Evening With The Concert: A Tribute to ABBA Saturday, September 26 Doors 5:30PM , Show 7:30PM All Ages to Enter, 21 & Over to Drink The Mountain Winery Buy Tickets Star Seating Event Info No refunds or exchanges. All shows are rain or shine. Children age 3 and older require a ticket. A child under the age of 3 is considered a lap child and does not require a ticket. For directions, dining, parking, or carpool information, please visit www.mountainwinery.com. For information on how to purchase VIP season tickets including suites and box seats, please visit https://www.mountainwinery.com/vip-seating/ Doors open 2 hours prior to the show time. Seating begins 1 hour prior to the show time. Artist Info 21st Century Artists, Inc. has been presenting its ABBA tribute show throughout North America for well over a decade, known as ABBA The Music, ABBA The Concert, and ABBA The Hits. The audience and press all agree – “This is the closest to ABBA you’ll ever get.” ABBA The Concert brings one of the greatest pop phenomena back to life… ABBA The Concert continues to be the top ABBA tribute group in the world, dazzling all who see with their fantastic performance while playing the most iconic hits from ABBA, including “Mamma Mia,” “S.O.S,” “Money, Money, Money,” “The Winner Takes All,” “Waterloo,” “Gimme, Gimme, Gimme,” and “Dancing Queen.” Many critics agree, ABBA The Concert is the most amazing and authentic ABBA tribute show in the world. Come dance, come sing, having the time of your life at THE ULTIMATE TRIBUTE CELEBRATION!",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1261101",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-06-02T10:55:16.293558Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bb6d4d7e02e3",
              "venue_id": "venue_the_fillmore",
              "title": "Sleep: North America 2026",
              "event_time": "Sat Sep 26, 2026",
              "venue_name": "The Fillmore",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "The legendary stoner doom metal band brings their heavy, hypnotic riffs and massive wall of sound to the stage. Fans can expect a powerful, slow-burning performance of classic tracks and new material.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$65",
              "url": "https://www.ticketmaster.com/sleep-north-america-2026-san-francisco-california-09-26-2026/event/1C0064D0AA8FBE9B",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-06-23T10:31:21.591944Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-25T10:40:49.247198Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_fillmore|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4add9e59e0ce",
              "venue_id": "venue_siesta_valley_bowl",
              "title": "Al Di Meola",
              "event_time": "Saturday Sep 26, 2026 8:00 PM",
              "venue_name": "Siesta Valley Bowl",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "100 Gateway Blvd, Orinda, CA 94563",
              "description": "The Guitarchitect Tour‍Music, Multimedia & Tales‍2026: Al Di Meola returns with his acoustic band and the program “The Guitarchitect,” a refined concert experience that unites five decades of music, sweeping multimedia visuals, and the stories that shaped a lifetime of artistry. This tour is a celebration of legacy, innovation, and the evolution of the Di Meola sound — performed with the unmistakable precision and passion that have defined his world-renowned career.Join us for an evening that honors the past, embraces the present, and looks toward the future.‍",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$79.40 - $141.25 (includes fees)",
              "url": "https://www.ticketmaster.com/event/1C0064BDF0583BF4",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_siesta_valley_bowl",
                  "source_name": "Siesta Valley Bowl",
                  "fetched_at": "2026-06-23T12:35:02.656256Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-30T18:59:56.104919Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_siesta_valley_bowl|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_30658d64d4b1",
              "venue_id": "venue_california_theatre",
              "title": "Don Giovanni - Opera San José",
              "event_time": "2026-09-26T19:30:00",
              "venue_name": "California Theatre",
              "event_start": "2026-09-26T19:30:00",
              "event_date": "2026-09-26",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "Relive the epic adventure on the big screen as Symphony San Jose performs John Williams's iconic, Oscar-winning score live. This special concert event brings the beloved cinematic masterpiece to life with full orchestral accompaniment.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-06-23T13:09:42.892074Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_symphony_san_jose",
                  "source_name": "Symphony San Jose",
                  "fetched_at": "2026-06-28T03:08:41.619469Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_california_theatre|2026-09-26",
              "run_id": "run_285788e23a8b",
              "run_label": "Don Giovanni - Opera San José, Sep 13 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_21dd7cd0fd94",
              "venue_id": "venue_oakland_arena",
              "title": "Shreya Ghoshal",
              "event_time": "sep 26 8pm",
              "venue_name": "Oakland Arena",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "7000 Coliseum Way, Oakland, CA 94621",
              "description": "Copyright © 2026 Oakland Arena. Privacy Notice | Cookie Preferences | Your Privacy Choices | Ad Choices | Terms of Use | Accessibility / Site Map a carbon house experience",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$65",
              "url": "https://www.theoaklandarena.com/events/detail/oakland-roots-sc-vs-phoenix-rising-fc",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-25T10:40:49.247198Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_oakland_arena",
                  "source_name": "Oakland Arena",
                  "fetched_at": "2026-06-28T17:26:37.381079Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_oakland_arena|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6abd516fefb1",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Fantastic Negrito with the SF Symphony",
              "event_time": "sep 26 7:30pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-09-26T19:30:00",
              "event_date": "2026-09-26",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "Overview Oakland native and multi-Grammy Award-winning artist Fantastic Negrito joins the San Francisco Symphony for a striking collaboration that brings his bold, genre-defying sound into a symphonic setting. Drawing from blues, soul, rock, and deeply personal storytelling, his music balances grit and grace, joy and resilience. The performance also marks the 10-year anniversary of Fantastic Negrito’s breakout Tiny Desk Concerts appearance, the moment that introduced his voice to a global audience. Reimaged with a full orchestra, his songs expand in color and dimension, intimate yet powerful, grounded yet expansive. Join us for a shared celebration of artistic freedom, lived experience, and the transformative power of sound.",
              "event_types": [
                "live_music",
                "rnb_soul_funk",
                "classical"
              ],
              "price_info": "BUY NOW",
              "url": "https://www.sfsymphony.org/Buy-Tickets/2026-27/Fantastic-Negrito",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-25T10:40:49.247198Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-06-28T23:18:48.329684Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6c99b25a99ff",
              "venue_id": "venue_masonic_hall",
              "title": "Live 105 Presents: BECK: RIDE LONESOME TOUR",
              "event_time": "sep 26 8pm",
              "venue_name": "Masonic Hall",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Alternative rock icon Beck returns to the stage for his highly anticipated \"Ride Lonesome Tour,\" presented by Live 105. The concert at the Masonic Hall showcases his eclectic, genre-bending catalog of hits and fan favorites.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Tickets from $108",
              "url": "https://www.ticketmaster.com/live-105-presents-beck-ride-lonesome-tour-san-francisco-california-09-26-2026/event/1C0060A9E2A82937",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-25T10:40:49.247198Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-06-28T15:59:17.587512Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_masonic_hall|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_319feb9f9011",
              "venue_id": "venue_ashby_stage",
              "title": "The Fall Show",
              "event_time": "2026-09-26T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Long-lasting love is marked by both comfort and conflict. In The Fall Show, an older couple's unexpected romance unfolds against a maelstrom of memory and movement. Lovers collide, chaos erupts, and tenderness persists in an intimate examination of love 'til the very end.",
              "event_types": [
                "theater"
              ],
              "price_info": "$25 - $80 (sliding scale)",
              "url": "https://shotgunplayers.org/online/article/the-fall-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-06-30T10:25:39.676498Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_shotgun_players",
                  "source_name": "Shotgun Players",
                  "fetched_at": "2026-07-04T10:27:48.342982Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-09-26",
              "run_id": "run_538dc31103b5",
              "run_label": "The Fall Show, Sep 26 – Oct 25",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_82b2639040c3",
              "venue_id": "venue_hammer_theater",
              "title": "Candlelight: The Lord of the Rings",
              "event_time": "Sat, 9/26/2026 @ 7:30 PM",
              "venue_name": "Hammer Theatre",
              "event_start": "2026-09-26T19:30:00",
              "event_date": "2026-09-26",
              "venue_address": "101 Paseo De San Antonio , San Jose, CA 95113",
              "description": "This event will be an evening of classical and contemporary music performed by the Mission Chamber Orchestra of San Jose with pianist Jon Nakamatsu. The MCOSJ presents professional level performances of classical music in such a way as to encourage the growth of classical music audiences. By attracting and appealing to both traditional and non-traditional concert-goers (especially teens and young adults) MCOSJ plays an important role in expanding our community’s continuing appreciation of classical music.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Order Now!",
              "url": "https://feverup.com/m/527473",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hammer_theater",
                  "source_name": "Hammer Theatre",
                  "fetched_at": "2026-06-30T18:38:55.651422Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_mission_chamber_orchestra",
                  "source_name": "Mission Chamber Orchestra",
                  "fetched_at": "2026-07-03T13:08:52.650535Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hammer_theater|2026-09-26",
              "run_id": "run_3caa525dfd91",
              "run_label": "Candlelight: The Lord of the Rings, Aug 1 – Feb 26",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fd07cac5e52e",
              "venue_id": "venue_san_jose_civic",
              "title": "Cristian Castro – Nada Solo Exitos Tour 2026",
              "event_time": "Sep 26, 2026 @ 8:00pm",
              "venue_name": "San Jose Civic",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "Legendary Mexican pop singer Cristian Castro returns to the stage for his highly anticipated \"Nada Solo Exitos Tour 2026.\" The concert features a spectacular live performance of his greatest romantic ballads and chart-topping hits from his decades-long career.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://events.timely.fun/jc0x91t0/event/78281583",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-07-14T10:57:41.573315Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_83f16772ed58",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Insecure 10th Anniversary Tour",
              "event_time": "September 26, 2026 8:00pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "18+; sold out - seated show; no ins/outs",
              "event_types": [
                "community"
              ],
              "price_info": "$56.25",
              "url": "https://thefoxoakland.com/events/insecure-260926",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-07-18T10:39:34.717215Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-18T11:36:11.622544Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a53efc63f8d1",
              "venue_id": "venue_the_lab",
              "title": "SF Electronic Music Festival: Night 3",
              "event_time": "Saturday, September 26, 2026 8:00 PM",
              "venue_name": "The Lab",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "2948 16th St, San Francisco, CA 94103",
              "description": "The 25th Annual San Francisco Electronic Music Festival brings a multi-day celebration of forward-thinking electronic, experimental, and audiovisual works to Gray Area. Attendees will experience live sets from leading and emerging sound artists.",
              "event_types": [
                "live_music",
                "electronic",
                "experimental",
                "festival"
              ],
              "price_info": "$23",
              "url": "https://www.thelab.org/projects/2026/9/24/san-francisco-electronic-music-festival-night-1-rrose-idhaz-and-emily-bouton-blevin-blectum-bbkps",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_lab",
                  "source_name": "The Lab",
                  "fetched_at": "2026-07-20T10:12:37.683821Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_toms_place_presents",
                  "source_name": "Tom's Place Presents",
                  "fetched_at": "2026-07-22T01:11:52.141643Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_sf_electronic_music_festival",
                  "source_name": "SF Electronic Music Festival",
                  "fetched_at": "2026-07-26T13:32:36.140642Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_lab|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0b87ca561172",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Lagwagon, Dead to Me, Toy Guitar",
              "event_time": "Saturday September 26\n          2026 8:00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Fat Wreck Chords 35th Anniversary, featuring... - skate punk, melodic hardcore, Punk, garage punk",
              "event_types": [
                "live_music",
                "rock",
                "folk",
                "rnb_soul_funk"
              ],
              "price_info": "$39",
              "url": "http://www.bottomofthehill.com/20260926.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-07-20T11:17:58.345550Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4098ba20a54e",
              "venue_id": "venue_the_chapel",
              "title": "Rose City Band",
              "event_time": "sep 26 9pm",
              "venue_name": "The Chapel",
              "event_start": "2026-09-26T21:00:00",
              "event_date": "2026-09-26",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "Night two of Rose City Band presented by (((folkYEAH!))), featuring supporting performances by MØTRIK and Jas Stade.",
              "event_types": [],
              "price_info": "$25/$28",
              "url": "https://wl.seetickets.us/event/Rose-City-Band/699842?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-08-02T10:20:26.149662Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_f3b14cd1764d",
              "venue_id": "venue_ivy_room",
              "title": "Sleepbomb, Theya & Ominess",
              "event_time": "Saturday Sep 26 7:30 PM",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-26T19:30:00",
              "event_date": "2026-09-26",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "ivy room presents - gothic doom, black metal ,metal",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/190550",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-07-31T12:32:32.572739Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d2dd6aebd79d",
              "venue_id": "venue_the_ritz",
              "title": "The Emo Night Tour",
              "event_time": "2026-09-26T20:00:38-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-09-26T20:00:38",
              "event_date": "2026-09-26",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "It’s Relative! PR Presents\nTHE EMO NIGHT TOUR\n\n \n\nSATURDAY SEPTEMBER 26, 2026",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$20 Advance – $25",
              "url": "https://www.ticketweb.com/event/the-emo-night-tour-the-ritz-tickets/15026023",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-08-12T11:23:44.801297Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_ritz|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bd6dad8c8df7",
              "venue_id": "venue_halcyon",
              "title": "WILL CLARKE",
              "event_time": "2026/09/26 Sat: Sep 26 (10pm-4am)",
              "venue_name": "Halcyon",
              "event_start": "2026-09-26T22:00:00",
              "event_date": "2026-09-26",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "Will Clarke’s sound stems from both his native Bristol and his seasonal home in Ibiza; fusing the best of Bristol’s bass elements with the upfront house music sensibilities of the white isle. On his approach to producing, Will says “I make music for clubbe Read more",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$12",
              "url": "https://link.dice.fm/X06dda2cdfb7?pid=d6c08999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-08-15T10:42:45.274456Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_192aea0b1c24",
              "venue_id": "venue_924_gilman",
              "title": "Gilman Benefit",
              "event_time": "sep 26 7pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-09-26T19:00:00",
              "event_date": "2026-09-26",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "A fundraising concert event featuring live music to support the volunteer-run 924 Gilman collective.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20/$25",
              "url": "http://maps.google.com/?q=$$20/$25",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-09-02T11:13:59.237531Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_d7dc84c5ab7c",
              "venue_id": "venue_cry_baby",
              "title": "Nef The Pharaoh, D-Lo, dj LB",
              "event_time": "sep 26 7pm",
              "venue_name": "Cry Baby",
              "event_start": "2026-09-26T19:00:00",
              "event_date": "2026-09-26",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "NEF THE PHARAOH & D-LO – BURN THE CITY TOUR",
              "event_types": [
                "hiphop_rap",
                "live_music",
                "dj_party"
              ],
              "price_info": "$26.21",
              "url": "https://crybaby.live/tm-event/nef-the-pharaoh-d-lo-burn-the-city-tour/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-08-28T19:56:15.638282Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cry_baby|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_5c1053c0f56d",
              "venue_id": "venue_danny_murrys",
              "title": "Lust 4 Blood",
              "event_time": "sep 26 8pm",
              "venue_name": "Danny Murry's",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "1680 Washington Ave, San Leandro, CA 94577",
              "description": "21+; mosh pit warning",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_danny_murrys|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_03114f9579db",
              "venue_id": "venue_the_warfield",
              "title": "Sugar, J. Robbins",
              "event_time": "sep 26 8pm",
              "venue_name": "The Warfield",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "all ages; no ins/outs",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$89.76",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_warfield|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_fb7430995c25",
              "venue_id": "venue_great_american_music_hall",
              "title": "Rusty Chains (tribute), Stardog Champions",
              "event_time": "sep 26 8:30pm",
              "venue_name": "Great American",
              "event_start": "2026-09-26T20:30:00",
              "event_date": "2026-09-26",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "all ages",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25/$30",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_b577522c1ff1",
              "venue_id": "venue_4_star_theater",
              "title": "Mildred, Charlie Bishop",
              "event_time": "sep 26 8pm",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "The space in question for Mildred is a house. The Ward St. house in Berkeley to be exact, already a landmark in Mildred lore. When Fenceline began taking shape Henry, Jack, Matt, and occasionally Will were living there together; Matt hunkered in an “extra-legal” room in the attic where he bathed on his knees and Henry and Will would have to stoop to visit. Jack and Henry shared a wall in adjacent shoeboxes on the middle floor, Henry staring directly out at an old walnut tree they nicknamed Walter. Will was away studying in the desert but would stay whenever he was in town. While living on Ward St. they would write songs in the porous space between the kitchen and the living room after dinner, before they even knew they were a band. After that they would go up to the roof - beautifully painted by Jack for the cover of Fenceline -, Jones the cat often creeping up the stairs curiously behind, and talk the songs over some more, or just continue hanging out, talking about whatever. (The Mildred core belief system goes as follows: “talking about the weather is a legitimate and profound form of human discourse and exchange. So is talking about grocery stores and produce prices. Front lawns are too tidy, let them grow. Free associating is one of life's great pleasures. We believe in the reality of pathetic fallacy. The crunch wrap supreme is the pinnacle of modernity.”).",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/live-music-mildred-charlie-bishop",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_b2f0b7950d12",
              "venue_id": "venue_pier_80",
              "title": "Portola Music Festival",
              "event_time": "sep 26 1pm",
              "venue_name": "Pier 80",
              "event_start": "2026-09-26T13:00:00",
              "event_date": "2026-09-26",
              "venue_address": "401 Cesar Chavez St, San Francisco, CA 94124",
              "description": "21+; Portola Music Destival; no ins/outs",
              "event_types": [
                "live_music",
                "electronic",
                "festival",
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_pier_80|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_dc1d440d5a13",
              "venue_id": "venue_z_space",
              "title": "King Lear",
              "event_time": "September 26 @ 7:00 pm - 10:00 pm",
              "venue_name": "Z Space",
              "event_start": "2026-09-26T19:00:00",
              "event_date": "2026-09-26",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "Directed by Michael Socrates Moran Music composed by Paul Dresher Oakland Theater Project and New Performance Traditions are thrilled to present their most ambitious co-production to date: a bold, music-infused […]",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://dresherensemble.org/event/king-lear-by-william-shakespeare/2026-09-26/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-08-17T14:41:50.422468Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_paul_dresher_ensemble",
                  "source_name": "Paul Dresher Ensemble",
                  "fetched_at": "2026-08-26T10:26:36.842099Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_z_space|2026-09-26",
              "run_id": "run_e3a81a6d4f91",
              "run_label": "King Lear, Sep 25 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_eb8cb63006ed",
              "venue_id": "venue_thee_stork_club",
              "title": "Italo Disco",
              "event_time": "September 26 2026 9:00PM",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-09-26T21:00:00",
              "event_date": "2026-09-26",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Sat., 9/26/26 Italo Disco w/ DJs PETRE, Big Wink, Fiat Panda 9pm doors, $10 adv/door PETRE, Big Wink, and Fiat Panda are here spinning their signature selection of Euro hits under Thee Stork Blub disco ball. Whether you're an Italo Disco regular or joining the party for the first time, bring a friend to twirl and turn your best looks. he dance floor fills fast, so don't be shy to arrive early for a breezier, more spacious experience. Early birds and night owls, you are equally loved. Let's fly away together! Instagram: @batboymelt @bigwinkshop @petr3petr3petr3",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$11.34 | 21+",
              "url": "https://wl.seetickets.us/event/italo-disco-w-djs-petre-big-wink-fiat-panda/702030?afflky=TheeStorkClub",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-08-20T11:39:45.151719Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-20T13:04:21.299441Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5ec7c0a57947",
              "venue_id": "venue_the_monarch",
              "title": "Jigitz",
              "event_time": "26 September 2026 10:00 PM",
              "venue_name": "The Monarch",
              "event_start": "2026-09-26T22:00:00",
              "event_date": "2026-09-26",
              "venue_address": "101 6th St, San Francisco, CA 94103",
              "description": "Emerging producer jigitz resists easy categorization, embodying a spirit of constant evolution in his artistry.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Buy Ticket",
              "url": "https://www.eventbrite.com/e/jigitz-tickets-1997983726109",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monarch",
                  "source_name": "The Monarch",
                  "fetched_at": "2026-08-20T12:12:16.271150Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monarch|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a3f923ebe618",
              "venue_id": "venue_sap_center",
              "title": "Marco Antonio Solís - TOUR GRATITUD 2026",
              "event_time": "2026-09-26T20:00:00",
              "venue_name": "SAP Center",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "Legendary Mexican singer-songwriter Marco Antonio Solís performs live on his TOUR GRATITUD 2026.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.sapcenter.com/events/detail/marco-antonio-solis",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-08-20T12:59:28.269789Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sap_center|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_8fbff65ac7fc",
              "venue_id": "venue_the_mighty",
              "title": "Groove Armada",
              "event_time": "Sat 26th September 10:00 PM",
              "venue_name": "The Great Northern",
              "event_start": "2026-09-26T22:00:00",
              "event_date": "2026-09-26",
              "venue_address": "119 Utah St, San Francisco, CA 94103",
              "description": "Eventbrite - The Great Northern presents Groove Armada - The Great Northern - Saturday, September 26, 2026 at The Great Northern, San Francisco, CA. Find event and ticket information.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Buy Ticket",
              "url": "https://www.eventbrite.com/e/groove-armada-the-great-northern-tickets-1998071776470",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_mighty",
                  "source_name": "The Great Northern",
                  "fetched_at": "2026-08-21T10:48:17.868763Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_eventbrite_sf",
                  "source_name": "Eventbrite SF",
                  "fetched_at": "2026-08-22T16:56:50.453316Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_eventbrite_oak",
                  "source_name": "Eventbrite OAK",
                  "fetched_at": "2026-08-26T11:50:13.101700Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_mighty|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8d84844de356",
              "venue_id": "venue_the_riptide",
              "title": "O69 BINGO! By the fireplace",
              "event_time": "Saturday, September 26 6:00 PM - 8:00 PM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-26T18:00:00",
              "event_date": "2026-09-26",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "Every Saturday Jean the Bingo Queen or Dr. Bird make dreams come true with Bingo. It's Free to play, so don't miss the fun! Next level fun with O69 Jell-O shots...",
              "event_types": [
                "sports"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_228f7ebb74c5",
              "venue_id": "venue_gray_area",
              "title": "Magik*Magik Orchestra PresentsCOCOON",
              "event_time": "09/26/2026",
              "venue_name": "Gray Area",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "2665 Mission St, San Francisco, CA 94110",
              "description": "Enjoy the concert from very comfortable, high off the ground, queen air mattress outfitted with a luxurious mattress topper, high quality linens, pillows, and bedding. Perfect for two people. $2500 per bed. ​Includes: -​Queen bed with complete bedding -Welcome tea or hot chocolate ​-Signed concert poster by all orchestra members and conductor ​-Midnight snacks ​-Morning coffee, tea, fruit, and pastry -8½ hours of live orchestra music 🎶 ​As a VIP patron, your ticket helps subsidize our event, making COCOON accessible to more attendees. $2000 of your $2500 ticket is tax deductible. Thank you for supporting experimental arts and music in San Francisco!",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://grayarea.org/event/magikmagik-orchestra-presentscocoon-an-orchestra-sleepover-concert/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_gray_area",
                  "source_name": "Gray Area",
                  "fetched_at": "2026-08-22T11:08:17.231968Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_gray_area|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ac812ee0f64f",
              "venue_id": "venue_mabuhay_gardens",
              "title": "HUMMUSEXUAL",
              "event_time": "2026-09-26 7PM",
              "venue_name": "The Mab",
              "event_start": "2026-09-26T19:00:00",
              "event_date": "2026-09-26",
              "venue_address": "443 Broadway, San Francisco, CA 94133",
              "description": "A hilarious, stand-up hour of physical, character-driven comedy exploring the intersection of growing up gay and Iraqi. Show at 8 PM. $20.00.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$20.00",
              "url": "https://panicbooking.com/backstage/event.html?id=146",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mabuhay_gardens",
                  "source_name": "The Mab",
                  "fetched_at": "2026-08-22T11:20:57.510347Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mabuhay_gardens|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_073fc64c8d03",
              "venue_id": "venue_rio_theatre_sc",
              "title": "Laurie Anderson - Republic of Love",
              "event_time": "2026-09-26",
              "venue_name": "Rio Theatre",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "1205 Soquel Ave, Santa Cruz, CA 95062",
              "description": "Laurie Anderson - Republic of LoveLaurie Anderson is a writer, director, composer, visual artist, musician, and vocalist whose groundbreaking work spans art, theater, experimental music, and technology. She has created numerous multimedia stage performances, published ten books, and been nominated for five Grammy Awards, with her visual art exhibited globally at institutions including the Hirshhorn Museum in Washington, DC, and the Moderna Museet in Stockholm. In 2021 she delivered the Charles Eliot Norton Lectures at Harvard University, Spending the War Without You: Virtual Backgrounds. In 2024 she premiered ARK: United States Part 5 at Factory International in Manchester, released her studio album Amelia on Nonesuch Records, and was honored with a Grammy Lifetime Achievement Award as well as the Gold Medal for Music from the American Academy of Arts and Letters. She currently has two installations at Biennale Arte 2026: In Minor Keys in Venice, Italy. Her latest album, Let X=X, was released in May 2026.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n  \n\n\n\n\n  \n\n\n\n  \n  \n    \n  \n\n\n    \n\n\n\n  \n\n\n\n\n  Show time: 8:00 PM, doors 7:00 PMTickets: $68.25 Gen, $120.75 Gold CircleAdvance tickets: www.ticketweb.comEvent website: www.folkyeah.com",
              "event_types": [
                "art",
                "experimental",
                "live_music",
                "theater"
              ],
              "price_info": "",
              "url": "https://www.riotheatre.com/events-2/2026/9/26/laurieanderson",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rio_theatre_sc",
                  "source_name": "Rio Theatre",
                  "fetched_at": "2026-08-22T11:37:08.858495Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rio_theatre_sc|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4813403d1907",
              "venue_id": "venue_crepe_place",
              "title": "Duck Island Music Festival",
              "event_time": "2026-09-26",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "TICKETS",
              "event_types": [
                "festival",
                "live_music"
              ],
              "price_info": "FREE",
              "url": "https://thecrepeplace.com/shows-list/duck-island-music-festival-saturday-september-26-1pm-at-san-lorenzo-park",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_54bdbf932575",
              "venue_id": "venue_abbott_square",
              "title": "RYAN PRICE & FRIENDS",
              "event_time": "Saturday, September 26, 2026 7:00 PM - 10:00 PM",
              "venue_name": "Abbott Square Market",
              "event_start": "2026-09-26T19:00:00",
              "event_date": "2026-09-26",
              "venue_address": "725 Front St, Santa Cruz, CA 95060",
              "description": "Mixed genres of music heard through the sounds of percussive and melodic string work.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.abbottsquaremarket.com/events/ryan-price-friends",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_abbott_square",
                  "source_name": "Abbott Square Market",
                  "fetched_at": "2026-08-22T12:39:51.694804Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_abbott_square|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_acc6999ca1c0",
              "venue_id": "venue_indexical",
              "title": "Keith Fullerton Whitman + Kamran Shafii",
              "event_time": "2026-09-26",
              "venue_name": "Indexical",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "1050 River St #119, Santa Cruz, CA 95060",
              "description": "Indexical presents a multi-channel concert of electronic music from Keith Fullerton Whitman and Kamran Shafii.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$18 Advance / $20 Door / FREE or discounted for Members",
              "url": "https://www.indexical.org/events/2026-09-26-keith-fullerton-whitman-kamran-shafii",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_indexical",
                  "source_name": "Indexical",
                  "fetched_at": "2026-08-22T12:50:51.248673Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_indexical|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5cf250ab201c",
              "venue_id": "venue_act_theater",
              "title": "Alfred Hitchcock's North by Northwest",
              "event_time": "2026-09-26",
              "venue_name": "ACT Theater",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "\"I am thrilled, excited and perhaps a little apprehensive to bring the iconic North by Northwest home to the US! I just hope that American audiences will love it as much as our British audiences did. What I am not apprehensive about is bringing its message; one of nations coming together in peace and friendship to make the world a better place. I think we can all raise a glass to that! I am also itching to return to A.C.T. and San Francisco, a piece of my heart will always remain in California and I cannot wait to return to your beautiful theatre, vivid audience and magic state.\" —Emma Rice",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-08-22T13:54:28.481304Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_act_theater|2026-09-26",
              "run_id": "run_8f5d72a961cd",
              "run_label": "Alfred Hitchcock's North by Northwest, Sep 22 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_12c5688836ab",
              "venue_id": "venue_dance_mission",
              "title": "Encounter",
              "event_time": "2026-09-26 2026-09-26",
              "venue_name": "Dance Mission Theater",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "3316 24th St, San Francisco, CA 94110",
              "description": "A dynamic dance theater production created by Aparna Sindhoor, Anil Natyaveda, and S M Raju blending classical Indian dance, martial arts, and storytelling.",
              "event_types": [
                "dance",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dance_mission",
                  "source_name": "Dance Mission Theater",
                  "fetched_at": "2026-08-22T15:02:23.569813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dance_mission|2026-09-26",
              "run_id": "run_e9aecba7c663",
              "run_label": "Sindhoor Natya – Navarasa presents ENCOUNTER, Sep 25 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_68a916f1767c",
              "venue_id": "venue_bayfront_theater",
              "title": "La Vida Loca",
              "event_time": "2026-09-26",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "BATS Improv presents: La Vida Loca",
              "event_types": [
                "comedy"
              ],
              "price_info": "Not specified",
              "url": "https://www.improv.org/shows",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-08-22T15:11:24.975133Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-09-26",
              "run_id": "run_1fe8979180b7",
              "run_label": "La Vida Loca, Sep 19 – Sep 26",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_22e39cfcb0be",
              "venue_id": "venue_crows_nest_sc",
              "title": "SPUN",
              "event_time": "Saturday September 26th 08:00 PM",
              "venue_name": "The Crow's Nest",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "2218 East Cliff Dr, Santa Cruz, CA 95062",
              "description": "Saturday September 26th Your favorite classic rock and everything else Starts at 08:00 PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$8 cover",
              "url": "https://spunsantacruz.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crows_nest_sc",
                  "source_name": "The Crow's Nest",
                  "fetched_at": "2026-08-22T15:19:13.909618Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crows_nest_sc|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0e82e26ab6e5",
              "venue_id": "venue_sc_beach_boardwalk",
              "title": "Fiesta en la Playa",
              "event_time": "2026-09-26 September 26 @ 12:00 pm - 4:30 pm",
              "venue_name": "Santa Cruz Beach Boardwalk",
              "event_start": "2026-09-26T12:00:00",
              "event_date": "2026-09-26",
              "venue_address": "400 Beach St, Santa Cruz, CA 95060",
              "description": "Come celebrate the vibrant traditions of the Latino community with mariachi, folklorico dancers, and a free beach concert. Enjoy Boardwalk rides and games plus fun food and beverage specials throughout […]",
              "event_types": [
                "live_music",
                "dance",
                "community",
                "festival"
              ],
              "price_info": "",
              "url": "https://www.santacruz.org/upcoming-event/santa-cruz-beach-boardwalk-fiesta-en-la-playa/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sc_beach_boardwalk",
                  "source_name": "Santa Cruz Beach Boardwalk",
                  "fetched_at": "2026-08-22T16:30:12.819028Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_visit_santa_cruz_county",
                  "source_name": "Visit Santa Cruz County",
                  "fetched_at": "2026-08-22T18:34:05.859446Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sc_beach_boardwalk|2026-09-26",
              "run_id": "run_3a050a0291ec",
              "run_label": "Fiesta en la Playa, Sep 26 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1bd376e7d4cd",
              "venue_id": "venue_the_marsh_sf",
              "title": "Soul Story Theater",
              "event_time": "2026-09-26",
              "venue_name": "The Marsh SF",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "Suraya Keating’s Soul Story Theater Solo Performance Program for Women Class Description Facilitated by Suraya Keating, LMFT, Registered Drama Therapist & Soul Story Coach The Soul Story Theater Solo Performance Program is a 13-week creative journey for women who long to transform meaningful life experiences into an original solo performance. Through expressive arts, storytelling, writing, movement, and theater, you’ll discover the deeper meaning within your life’s journey while finding the courage to share your authentic voice. This transformational experience culminates in a live performance where each participant presents her original soul story before a supportive audience. During this immersive journey, you will: Unearth the story your soul has been longing to tell and shape it into a compelling, authentic performance piece. Transform limiting narratives into empowering ones, discovering the resilience, wisdom, and personal mythology woven throughout your life’s journey. Awaken your creative voice through an inspiring blend of writing, storytelling, movement, and theater while deepening your connection to your inner muse. Receive personalized coaching as you write, devise, rehearse, and confidently perform your original solo piece. Experience the power of a courageous circle of women who will witness, encourage, and celebrate your creative unfolding every step of the way. What’s Included 13-week hybrid program combining online coaching with in-person rehearsals 10 live Zoom group sessions (most Thursdays, 7:15–9:15 PM PT) 2 in-person rehearsal intensives (Saturdays, 10am-3pm) Two 55-minute individual coaching sessions via Zoom Public culminating performance with a live audience Fall 2026 Schedule Program Dates: September 10 – December 12, 2026 Zoom Sessions Thursdays | 7:15–9:15 PM (PT) September 10 & 24 October 1, 8 & 22 November 5, 12 & 19 December 3 plus Zoom Dress Rehearsal on Dec 10 In-Person Rehearsals at The Marsh SF Studio Saturdays | 10am-3pm October 3",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://themarsh.org/suraya-keating-soul-story-theater-solo-performance-program-for-women/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-08-22T17:28:42.838285Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-09-26",
              "run_id": "run_f0998957edb6",
              "run_label": "Soul Story Theater, Sep 10 – Dec 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_69289c08c923",
              "venue_id": "venue_kp_arena_sc",
              "title": "World Elite Sumo",
              "event_time": "2026-09-26 September 26 @ 7:00 pm - 10:00 pm",
              "venue_name": "Kaiser Permanente Arena",
              "event_start": "2026-09-26T19:00:00",
              "event_date": "2026-09-26",
              "venue_address": "140 Front St, Santa Cruz, CA 95060",
              "description": "World Elite Sumo, the first professional sumo wrestling league outside of Japan's sumo ecosystem, brings its exciting, action-packed event to Santa Cruz for the first time in history with a […]",
              "event_types": [
                "sports"
              ],
              "price_info": "$50 – $100",
              "url": "https://www.santacruz.org/upcoming-event/kaiser-permanente-arena-world-elite-sumo/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_visit_santa_cruz_county",
                  "source_name": "Visit Santa Cruz County",
                  "fetched_at": "2026-08-22T18:34:05.859446Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_kp_arena_sc",
                  "source_name": "Kaiser Permanente Arena",
                  "fetched_at": "2026-08-22T19:41:59.287287Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_kp_arena_sc|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_6f26bffebcd9",
              "venue_id": "venue_park_hall_ben_lomond",
              "title": "The Addams Family",
              "event_time": "2026-09-26",
              "venue_name": "Park Hall",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "9400 Mill St, Ben Lomond, CA 95005",
              "description": "The Addams Family theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://mctshows.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_park_hall_ben_lomond",
                  "source_name": "Park Hall",
                  "fetched_at": "2026-08-22T19:38:45.882590Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_park_hall_ben_lomond|2026-09-26",
              "run_id": "run_8d42d89c5c45",
              "run_label": "The Addams Family, Sep 18 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a245078d5332",
              "venue_id": "venue_park_hall_ben_lomond",
              "title": "Rumors",
              "event_time": "2026-09-26T14:00:00",
              "venue_name": "Park Hall",
              "event_start": "2026-09-26T14:00:00",
              "event_date": "2026-09-26",
              "venue_address": "9400 Mill St, Ben Lomond, CA 95005",
              "description": "A comedy by Neil Simon, directed by Marnae Taylor. Charley, the deputy mayor of New York, and his wife Myra Brock, on the evening of their tenth wedding anniversary, had an elegant dinner party which goes histrically wrong. Four couples arrive expecting a night of sophistication—only to discover the host has had a terrible mishap and his wife is missing. Desperate to cover up the scandal, they spin wilder and wilder stories, turning confusion into chaos as rumors fly faster than champagne corks. With a niche fit, a whiplash, mitigated jealousy, a recurring back spasm, comedy ensues. Brimming with razor-sharp wit, slapstick mishaps, and Simon's trademark charm, Rumors is a laugh-out-loud comedy that proves the truth may be the funniest thing of all.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "",
              "url": "https://mctshows.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_park_hall_ben_lomond",
                  "source_name": "Park Hall",
                  "fetched_at": "2026-08-22T19:38:45.882590Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_park_hall_ben_lomond|2026-09-26",
              "run_id": "run_b17f8875ebd5",
              "run_label": "Rumors, Sep 18 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_218216e7a47f",
              "venue_id": "venue_the_418_project",
              "title": "Moon Festival",
              "event_time": "Saturday, September 26, 2026\n2:00 PM - 4:00 PM",
              "venue_name": "The 418 Project",
              "event_start": "2026-09-26T14:00:00",
              "event_date": "2026-09-26",
              "venue_address": "155 S River St, Santa Cruz, CA 95060",
              "description": "Join us to celebrate diversity, encourage cross-cultural understanding, and create meaningful experiences for families.",
              "event_types": [
                "festival",
                "community"
              ],
              "price_info": "Free - Donations Accepted",
              "url": "https://the418project.org/events/moon-festival-wflex-kids-culture",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_418_project",
                  "source_name": "The 418 Project",
                  "fetched_at": "2026-08-22T20:30:04.363966Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_418_project|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a2e39ce62a0a",
              "venue_id": "venue_dna_lounge",
              "title": "Bare Chest Calendar Charity Event",
              "event_time": "2026/09/26 Sat: Sep 26 (1pm-7pm)",
              "venue_name": "DNA Lounge",
              "event_start": "2026-09-26T13:00:00",
              "event_date": "2026-09-26",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "house",
              "event_types": [
                "community",
                "dj_party"
              ],
              "price_info": "$20-30 pre / $43 | 21+",
              "url": "https://www.dnalounge.com/calendar/2026/09-26c.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_af7e6bddea1e",
              "venue_id": "venue_pier_80",
              "title": "Portola Festival 2026",
              "event_time": "2026/09/26 Sat: Sep 26-Sun: Sep 27 (Sat: 1pm-Sun: 11:59pm)",
              "venue_name": "Pier 80",
              "event_start": "2026-09-26T23:59:00",
              "event_date": "2026-09-26",
              "venue_address": "401 Cesar Chavez St, San Francisco, CA 94124",
              "description": "multigenre EDM",
              "event_types": [
                "dj_party",
                "festival"
              ],
              "price_info": "$400+ | 21+",
              "url": "https://www.axs.com/events/1434447/portola-2026-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pier_80|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_f2c62b419e2a",
              "venue_id": "venue_cornerstone",
              "title": "Julien-K & NITE",
              "event_time": "2026/09/26 Sat: Sep 26 (7pm)",
              "venue_name": "Cornerstone",
              "event_start": "2026-09-26T19:00:00",
              "event_date": "2026-09-26",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Electronic rock band Julien-K live at Cornerstone in Berkeley.",
              "event_types": [
                "live_music",
                "rock",
                "electronic"
              ],
              "price_info": "$28 | All ages",
              "url": "https://www.prekindle.com/event/14239-julien-k-x-nite-berkeley",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-08-31T14:04:10.183515Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cornerstone|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_869f16a4fa63",
              "venue_id": "venue_the_stud",
              "title": "Grunt: Mozhgan & Del",
              "event_time": "2026/09/26 Sat: Sep 26 (9pm-2am)",
              "venue_name": "The Stud",
              "event_start": "2026-09-26T21:00:00",
              "event_date": "2026-09-26",
              "venue_address": "1123 Folsom St, San Francisco, CA 94103",
              "description": "tech house, circuit house",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$40 | 21+",
              "url": "https://ra.co/events/2447663",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_stud|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_61dfe89c9814",
              "venue_id": "venue_beauregard_vineyards",
              "title": "Fall Wine Club Pickup Party",
              "event_time": "2026-09-26 Sunday, September 27, 2026",
              "venue_name": "Beauregard Vineyards",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "10 Pine Flat Rd, Santa Cruz, CA 95060",
              "description": "Celebrate the autumn season with fellow members while picking up your seasonal wine allocation and enjoying tastings among the redwoods.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_beauregard_vineyards",
                  "source_name": "Beauregard Vineyards",
                  "fetched_at": "2026-08-22T22:01:13.013350Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_beauregard_vineyards|2026-09-26",
              "run_id": "run_19d93cdde59e",
              "run_label": "Fall Wine Club Pickup Party, Sep 26 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_20b1e8205361",
              "venue_id": "venue_the_sound_room",
              "title": "Saúl Sierra with Cascada de Flores",
              "event_time": "Saturday, September 26, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-09-26T19:30:00",
              "event_date": "2026-09-26",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Cascada de Flores is a delicious discovery of retro acoustic music with Mexican and Caribbean roots.\n\nThe core members of Cascada de Flores have been re-imagining Mexican tradition for years. After falling for Mexican music as a young woman, Arwen Lawrence toured with Grammy-winning L.A. mariachi heavyweights, Los Camperos de Nati Cano, an apprenticeship that honed her skills and deepened her love for Mexico's musical language. With them, she recorded and performed in venues such as the Teatro Degollado in Guadalajara and Lincoln Center of New York. Nati always nudged her towards what she already did naturally: to sing with heart.\n\nJorge Liceaga grew up in Mexico City, buying his first guitar with the money he'd earned shining shoes. Self taught, he was later mentored by local legend Leonardo 'El León' Salas, a transplant from Yucatan, who taught Jorge to 'guasanguearla' (play with that special Yucatecan swing). Jorge followed his sister and found himself amongst local masters of artistic communication: The flamencos of Gitanerías. From them he received a raw and complicated education, which contributed to his special sensitivity as accompanist.\n\nFor the past 20 years Saúl Sierra has been a member of some of the leading bands in the Bay Area, including The John Santos Quintet/Sextet, Bobi Cespedes’ band, Dr. Loco’s Rocking Jalapeño Band, El Tren Trío, Anthony Blea y su Charanga, The Snake Trío, Jesús Díaz y su QBA, The Bay Area Afro-Cuban All Stars, The Venezuelan Music Project, Corazón Sur, Sababa band, Cascada de Flores, SJZ Collective, LaTiDo.\n\nMarco Diaz is an accomplished recording musician who has shared the stage with Grammy Award winning artist, Israel “Cachao” Lopez, Nelson Gonzales, Jimmy Bosch, Pete “El Conde” Rodriguez, Ska Cubano (Europe), Tito Rojas, Nino Segarra, Anthony Cruz, Anthony Blea, Jovino Santos Neto, Joe Santiago, and is an integral member of the John Santos sextet, and the musical director for Bobi Cespedes\n\nJulio Pérez and Ahkeel Mestayer on percussion are two of the most sought after musicians in the Latin Jazz world. They bring an infectious Afro-Cuban backbeat.\n\nTickets at Saúl Sierra with Cascada de Flores59113411?aff=oddtdtcreator",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/sal-sierra-with-cascada-de-flores",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-08-26T10:25:42.190144Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_db63297620fc",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Little Shop of Horrors",
              "event_time": "2026-09-26",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Book & Lyrics by Howard Ashman, Music by Alan Menken. Based on the film by Roger Corman, Screenplay by Charles Griffith. Directed by Ben Villegas Randle, Musical Direction by Jad Bernardo, Choreography by Leslie Waggoner",
              "event_types": [
                "theater",
                "live_music"
              ],
              "price_info": "",
              "url": "https://nctcsf.org/event/little-shop/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-08-26T11:06:39.262369Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-09-26",
              "run_id": "run_5315ef200ae4",
              "run_label": "Little Shop of Horrors, Sep 12 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_315494b8f674",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Conservatory Open House 2026",
              "event_time": "Sep 26, 2026",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Session:Fall\nStudents:Grades 3-8",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://nctcsf.org/event/conservatory-open-house-26/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-08-26T11:06:39.262369Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d439001fc33f",
              "venue_id": "venue_la_pena",
              "title": "El Grito Vive",
              "event_time": "September 26 @ 7:00 pm",
              "venue_name": "La Pena",
              "event_start": "2026-09-26T19:00:00",
              "event_date": "2026-09-26",
              "venue_address": "3105 Shattuck Ave, Berkeley, CA 94705",
              "description": "(opens in new tab)(opens in new tab)¡Puerto Rico no se vende, Puerto Rico se defiende! On September 23, 1868, in the hills of Lares, a dedicated group of armed Puerto […]",
              "event_types": [
                "festival",
                "community",
                "latin_world"
              ],
              "price_info": "$10 – $40",
              "url": "https://lapena.org/event/el-grito-vive-2026-commemorating-the-legacy-resistance-of-grito-de-lares/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_la_pena",
                  "source_name": "La Pena",
                  "fetched_at": "2026-08-26T11:21:26.094318Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_la_pena|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fcb010e31c3c",
              "venue_id": "venue_rock_the_dock",
              "title": "Splick Da Groove",
              "event_time": "2026-09-26T15:30:00",
              "venue_name": "Rock the Dock",
              "event_start": "2026-09-26T15:30:00",
              "event_date": "2026-09-26",
              "venue_address": "459 Seaport Court, Redwood City, CA 94063",
              "description": "Funk, R&B, Pop, and Motown live performance.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Free admission ($5-$20 suggested donation)",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rock_the_dock",
                  "source_name": "Rock the Dock",
                  "fetched_at": "2026-08-26T11:47:48.099004Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rock_the_dock|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_27cdf884e110",
              "venue_id": "venue_center_for_new_music",
              "title": "Patrick Anderson: Metamorphosis I–V",
              "event_time": "SATURDAY, SEPTEMBER 26, 2026 — 6:15 PM",
              "venue_name": "Center for New Music",
              "event_start": "2026-09-26T18:15:00",
              "event_date": "2026-09-26",
              "venue_address": "55 Taylor St, San Francisco, CA 94102",
              "description": "A solo performance of Metamorphosis I-V by Philip Glass with supporting ambient and electronic effects. [More]",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "https://centerfornewmusic.com/event/patrick-anderson-performs-philip-glasss-metamorphosis-i-v/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_center_for_new_music",
                  "source_name": "Center for New Music",
                  "fetched_at": "2026-08-27T10:18:52.916672Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-31T10:04:42.136151Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_center_for_new_music|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b563c58f5aa5",
              "venue_id": "venue_guild_theatre",
              "title": "Home By 10 Dance Party",
              "event_time": "SEP\n26\n6:00 PM",
              "venue_name": "Guild Theatre",
              "event_start": "2026-09-26T18:00:00",
              "event_date": "2026-09-26",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "Home by 10 with DJ Tripp The Dance Party That Respects Your Bedtime This dance party was created for the people who want to maximize their morning plans without sacrificing a fun night out. Get down at the club & get home to bed, because beauty sleep matters and we want you to feel good when you wake up for those morning plans. Join us at The Guild Theatre for an evening of dancing, visuals, and good energy… and the best part? You’ll be home way before midnight. DJ Tripp will be spinning iconic dance tracks alongside their unforgettable music videos to set the tone for the perfect club atmosphere. We will have fun-themed mocktail options and specialty cocktails that will keep you on the dance floor. Grab your friends and come Dance Hard so you can Sleep Even Harder. Doors open at 6PM Music starts at 6PM Over at 10PM— guaranteed.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.guildtheatre.com/shows/home-by-10-26-sep",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-08-28T10:40:15.787828Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_guild_theatre|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4a611817932c",
              "venue_id": "venue_the_freight__salvage",
              "title": "Bill Frisell & Harmony Five",
              "event_time": "2026-09-26T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-26T19:00:00",
              "event_date": "2026-09-26",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Login View Cart Time remaining: 00:00 Activate Code Your cart has expired Your order contained expired items and your shopping cart has been emptied. Close Details Saturday, September 26, 2026 8:00PM Bill Frisell & Harmony Five featuring Petra Haden, Hank Roberts, Luke Bergman & Tim Angulo Bill Frisell & Harmony 5 Bill Frisell ’s career as a guitarist and composer has spanned more than forty-five years and many celebrated recordings. His catalog has been cited by DownBeat as “the best recorded output of the decade.” Bill Frisell & HARMONY FIVE expands upon 2019’s HARMONY project, blending jazz, traditional Americana, and chamber music; and features Petra Haden on vocals, Hank Roberts on cello and vocals, Luke Bergman on bass and vocals, and Tim Angulo on drums. Bill Frisell “Frisell has had a lot of practice putting high concept into a humble package. Long hailed as one of the most distinctive and original improvising guitarists of our time, he has also earned a reputation for teasing out thematic connections with his music…” – The New York Times Recognized as one of America’s 21 most vital and productive performing artists, Frisell was named an inaugural Doris Duke Artist in 2012. He is also a recipient of grants from United States Artists and Meet the Composer, among others. From 2013 – 2015, Bill was Resident Artistic Director for Jazz at Lincoln Center for their Roots of Americana series, and in 2016, he was a beneficiary of the first FreshGrass Composition commission to preserve and support innovative grassroots music. Upon San Francisco Jazz opening their doors in 2013, he served as one of their Resident Artistic Directors. Bill is also the subject of a documentary film by director Emma Franz, entitled Bill Frisell: A Portrait , which examines his creative process in depth. He has also received an honorary doctorate from the Berklee College of Music. Website Hank Roberts With a career spanning over 50 years, improvisational cellist and composer Hank Roberts ha",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://secure.thefreight.org/15972/15974",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_62b74c0a434a",
              "venue_id": "venue_california_jazz_conservatory",
              "title": "Jazz Jam at Jupiter",
              "event_time": "2026-09-26",
              "venue_name": "CA Jazz Conservatory",
              "event_start": "2026-09-26T19:30:00",
              "event_date": "2026-09-26",
              "venue_address": "2087 Addison St, Berkeley, CA 94704",
              "description": "Jazz jam session",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free",
              "url": "https://concerts.jazzschool.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_jazz_conservatory",
                  "source_name": "CA Jazz Conservatory",
                  "fetched_at": "2026-08-28T12:15:46.788864Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_california_jazz_conservatory|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3e8236620632",
              "venue_id": "venue_sfjazz_miner",
              "title": "Jazz at Lincoln Center Orchestra",
              "event_time": "2026-09-26 11:00 AM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-09-26T11:00:00",
              "event_date": "2026-09-26",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Members Only\n\nLivestream Only",
              "event_types": [
                "livestream",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/athome/fridays-live/jazz-at-lincoln-center-orchestra-w-wynton-marsalis/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_a7659d097bc3",
              "venue_id": "venue_sfjazz_lab",
              "title": "THE ALAYA PROJECT",
              "event_time": "2026-09-26 7:00 PM",
              "venue_name": "SFJAZZ Lab",
              "event_start": "2026-09-26T19:00:00",
              "event_date": "2026-09-26",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "The Oakland-based band exploring the intersection of Carnatic Indian classical music with jazz and funk return to the Joe Henderson Lab with new music and material from their 2022 self-titled debut album. Made up of percussionist Rohan Krishnamurthy , saxophonist Prasant Radhakrishnan , and keyboardist Colin Hogan , the trio was formed in 2017 to perform at an UnderCover Presents concert in Berkeley honoring the 50th Anniversary of the Beatles’ immortal Sgt. Pepper’s Lonely Hearts Club Band , and was the perfect outlet for longtime friends Krisnamurthy and Radhakrishnan to meld their love of jazz with their extensive South Indian classical training. A Kalamazoo, Michigan native, Krishnamurthy is one of the leading lights of Carnatic music in the U.S. and a master of the mridangam — a double-headed drum that is the primary rhythm accompaniment in Carnatic music and is played by Krishnamurthy in this project in conjunction with the Western drum set. Phoenix-born Radhakrishnan is known to SFJAZZ audiences through his dynamic Indo-Jazz trio VidyA and has been a major force in Bay Area jazz since 2005. Hogan is a San Francisco native who came through the prestigious Berkeley High jazz program and works with Tommy Igoe, Jazz Mafia, and his brothers in the Hogan Brothers band.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/the-alaya-project/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_lab|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_9a34f101eca2",
              "venue_id": "venue_sfjazz_miner",
              "title": "Marcus Miller: We Want Miles",
              "event_time": "2026-09-26 7:30 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-09-26T19:30:00",
              "event_date": "2026-09-26",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Among the great electric bassists in the history of the instrument, Marcus Miller is a jazz renaissance man. He was instrumental to Miles Davis’s resurgence in the 1980s and helps us celebrate Miles’s centennial with music from Davis’s landmark 1982 live double album We Want Miles , along with classic Miles compositions spanning from the 1950s right up to his final era of Tutu in 1986 and Amandla in 1989 both of which Marcus Miller composed and produced. He will be joined by other members of Miles Davis’s 1980s comeback band guitarist Mike Stern , saxophonist Bill Evans and percussionist Mino Cinelu . A wildly prolific studio musician and bandleader, Miller and his distinctive bass virtuosity have been heard on well over 500 sessions for a dizzying array of major artists including Dizzy Gillespie, Herbie Hancock, Wayne Shorter, and McCoy Tyner to Paul Simon, Aretha Franklin, and Luther Vandross. He first appeared with Davis on the trumpeter’s 1980 comeback The Man with the Horn and went on to produce and largely compose Davis’s three late 80s albums Tutu (1986), Music from Siesta (1987), and Amandla (1989). 1982’s double live We Want Miles is a document of Davis’s first live performances after his self-imposed six-year retirement, culled from recordings in Boston, New York, and Tokyo and featuring two versions of the now-classic tracks “Jean-Pierre,” “Back Seat Betty,” and the Gershwin standard “My Man’s Gone Now.”",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/marcus-miller-we-want-miles-centennial-celebration/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_b82c2140494c",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Visual Histories Workshop",
              "event_time": "2026-09-26 3:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-09-26T15:00:00",
              "event_date": "2026-09-26",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "Share stories with people outside your generation and create a visual representation of what you learn. This inter-generational program encourages children to share their stories with their grandparents, uncles, aunts or other family members. Or share stories between friends who are of different generations. Local artist Zefania will help participants shape their stories. Supplies provided. \n\nZefania is a native-born San Franciscan, Latina artist, and lifelong believer in the power of creativity to connect us. For more than 20 years, she has made, explored, learned, and grown through the arts—with curiosity as my compass and community at the heart of it all. Zefania’s work is rooted in place, culture, color, and the beautiful unpredictability of making. Zefania believe art can open doors, spark conversation, build bridges, and remind us that we belong to something bigger than ourselves. Still curious. Still creating. Still finding magic in the unexpected.Bring your curiosity there’s always room at the table.\n\nThis event is hosted by the Mission branch of the SFPL",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/workshop-visual-histories-with-zefania-sponsored-by-the-sfpl",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-08-28T14:05:33.197491Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9318ff240c16",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Crate To Canvas Closing Night",
              "event_time": "2026-09-26 7:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-09-26T19:00:00",
              "event_date": "2026-09-26",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "Closing night of the Crate to Canvas art show that is currently on exhibit in our galeria!\n\nThe Big Leagues Rare Soul Collective (TBL) and El Filmero Productions present a unique art installation inspired by the rare soul record collecting scene, celebrating vinyl crate digging culture through a combination of art, music, and film. Experience original artwork and photography from TBL members, and vinyl sets spun from their personal collections.\n\nFeaturing vinyl music sets and/or artwork by: Aveets · TUFF · Discos Olvidados · Space Cholo · Xaztecra · Joshua De Leon · Pisto · Jose Niño · Laughing Boy",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/w1pn17pyqmu0bx6buwx653irrwdyi6",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-08-28T14:05:33.197491Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_769b365a8978",
              "venue_id": "venue_temescal_arts_center",
              "title": "Improvisation Workshop - First Tuesdays",
              "event_time": "2026-09-26T20:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Improvisation is the key - hosted by Lewis Jordan. Open Workshop and Playground in free improvisation. Spontaneously Assembled Small Groups will collaborate. Come to listen, to be heard, to see, to move. Inviting musicians, poets, dancers, to a non-hierarchical setting to improvise together. Spontaneously composing or conducting, we'll be on a quest for fire.",
              "event_types": [
                "workshop",
                "experimental"
              ],
              "price_info": "Donations encouraged",
              "url": "https://www.temescalartcenter.org/tacmusic.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-08-28T14:09:19.773505Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-09-26",
              "run_id": "run_16a4ae4ccea6",
              "run_label": "Improvisation Workshop - First Tuesdays, Sep 1 – Dec 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4b97a0a79650",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-09-26",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-09-26",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_46b932dec770",
              "venue_id": "venue_dawn_club",
              "title": "SONDANGO",
              "event_time": "Saturday, September 26, 2026 8:00 PM 11:59 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "“Foot-tapping hip-shaking songs of love & loss. Based in San Fransisco, roots in Havana, Los Angeles, Mexico City & London.”\n\n\n  \n#block-d76a731bfb6c30ccdf2c {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n\n\n  }\n\n  #block-d76a731bfb6c30ccdf2c .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-d76a731bfb6c30ccdf2c {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-d76a731bfb6c30ccdf2c {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-d76a731bfb6c30ccdf2c {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-d76a731bfb6c30ccdf2c {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-d76a731bfb6c30ccdf2c .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/sondango-latin-wednesdays-epbxa-aa5g9-4nnjz-d739x-by3ty-92kyz-7877n",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-08-28T15:32:50.415811Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1fa8dd525833",
              "venue_id": "venue_the_box_shop",
              "title": "The 32nd Annual Brainwash Movie Festival!",
              "event_time": "2026-09-26T20:00:00",
              "venue_name": "The Box Shop",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "951 Hudson Ave, San Francisco, CA 94124",
              "description": "Experience an eclectic lineup of weird, unusual, and unheralded independent films and shorts from around the world. This long-running festival celebrates creative and out-of-the-box filmmaking with juried screenings and awards.",
              "event_types": [
                "film",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_box_shop",
                  "source_name": "The Box Shop",
                  "fetched_at": "2026-08-28T16:23:50.173664Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_box_shop|2026-09-26",
              "run_id": "run_e7cf230432ed",
              "run_label": "The 32nd Annual Brainwash Movie Festival!, Sep 25 – Sep 26",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_0b0f9c70330d",
              "venue_id": "venue_the_pear_theatre",
              "title": "Private Lives",
              "event_time": "2026-09-26",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "In this sparkling comedy of manners, two former lovers find themselves honeymooning with new spouses in adjoining rooms—only to discover that their passion for each other hasn't dimmed.",
              "event_types": [
                "theater"
              ],
              "price_info": "$46.00 - $48.00",
              "url": "https://www.thepear.org/whats-playing-now",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-08-28T18:26:07.122240Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-09-26",
              "run_id": "run_d1a58de7893a",
              "run_label": "Private Lives, Sep 25 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7e05a2ee4ebc",
              "venue_id": "venue_regency_ballroom",
              "title": "PARCELS",
              "event_time": "Sep 26, 2026 10:00 PM",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-09-26T22:00:00",
              "event_date": "2026-09-26",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Portola After Party — with Velvet Trip",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theregencyballroom.com/events/detail?event_id=1573671",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-08-28T19:21:04.470307Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2c496f08df7c",
              "venue_id": "venue_audio",
              "title": "Max Styler (Portola Week)",
              "event_time": "2026-09-26T22:00:00",
              "venue_name": "Audio",
              "event_start": "2026-09-26T22:00:00",
              "event_date": "2026-09-26",
              "venue_address": "316 11th St, San Francisco, CA 94103",
              "description": "Goldenvoice presents MAX STYLER + Airwolf Paradise live at Audio for Portola Week 2026.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://audiosf.com/event/max-styler-portola-week-09-26-26/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audio",
                  "source_name": "Audio",
                  "fetched_at": "2026-08-28T19:46:29.566846Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audio|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_873fec15f1d6",
              "venue_id": "venue_exploratorium",
              "title": "Daytime Members-Only Hours",
              "event_time": "2026-09-26",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Please consider joining us today ! Members are the backbone of our organization and help ensure the continuity of our mission to create inquiry-based experiences that transform learning worldwide. We can’t wait to see you at the museum.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/member-hours",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-26",
              "run_id": "run_e38dfc952011",
              "run_label": "Daytime Members-Only Hours, Aug 30 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_45666bf0b41d",
              "venue_id": "venue_exploratorium",
              "title": "Engineering Day",
              "event_time": "Sat, Sep 26 2026 • 11am - 4pm",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-26T11:00:00",
              "event_date": "2026-09-26",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Our annual Engineering Day returns! Learn about STEM through interactive activities, hands-on exhibits, and panel discussions.",
              "event_types": [
                "workshop",
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/engineering-day",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c86825c4f816",
              "venue_id": "venue_oasis",
              "title": "Folsom Princess",
              "event_time": "2026-09-26T21:30:00",
              "venue_name": "Oasis",
              "event_start": "2026-09-26T21:30:00",
              "event_date": "2026-09-26",
              "venue_address": "298 11th St, San Francisco, CA 94103",
              "description": "Tito Soto presents Folsom Princess: A disco-pop dance party and drag spectacular featuring Crystal Methyd.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Starts at $23.53",
              "url": "https://www.sfoasis.com/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_oasis",
                  "source_name": "Oasis",
                  "fetched_at": "2026-08-28T21:03:01.054070Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_oasis|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_73a9a08c3ede",
              "venue_id": "venue_the_monkey_house",
              "title": "site",
              "event_time": "09/26/2026",
              "venue_name": "The Monkey House",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "1638 University Avenue, Berkeley, CA",
              "description": "The Monkey House opens its doors for a special in-house gathering and performance. Guests can enjoy the welcoming ambiance of Berkeley's premier intimate listening room.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monkey_house",
                  "source_name": "The Monkey House",
                  "fetched_at": "2026-08-28T21:37:06.591184Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monkey_house|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3e21e7936797",
              "venue_id": "venue_club_fox",
              "title": "THE COLLECTIVE",
              "event_time": "2026-09-26T19:00:00",
              "venue_name": "Club Fox",
              "event_start": "2026-09-26T19:00:00",
              "event_date": "2026-09-26",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Eventbrite - Club Fox presents THE COLLECTIVE w/ Special Guests The Trouble with Monkeys - Saturday, September 26, 2026 at Club Fox, Redwood City, CA. Find event and ticket information.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/the-collective-w-special-guests-the-trouble-with-monkeys-tickets-1998266102705?aff=oddtdtcreator&keep_tld=true",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-08-28T22:45:26.741794Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_613903d2ae18",
              "venue_id": "venue_rhythmix",
              "title": "The Locals: Opening Reception",
              "event_time": "2026-09-26T18:00:00",
              "venue_name": "Rhythmix",
              "event_start": "2026-09-26T18:00:00",
              "event_date": "2026-09-26",
              "venue_address": "2513 Blanding Ave, Alameda, CA 94501",
              "description": "Opening reception for \"The Locals\" exhibit at K Gallery. Exhibit dates listed as September 11 to October 25, 2026.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://www.rhythmix.org/upcoming-exhibits/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rhythmix",
                  "source_name": "Rhythmix",
                  "fetched_at": "2026-08-28T23:14:01.025318Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rhythmix|2026-09-26",
              "run_id": "run_566a8f02098a",
              "run_label": "The Locals: Opening Reception, Sep 11 – Oct 25",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_db9fb46c184a",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-09-26",
              "venue_name": "De Young",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-26",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_dbb48a9ad44c",
              "venue_id": "venue_punch_line",
              "title": "MOHANAD ELSHIEKY",
              "event_time": "Sep 26, 2026 7:00 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-26T19:00:00",
              "event_date": "2026-09-26",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Libyan-born comedian Mohanad Elshieky combines a deceptively laid-back demeanor with whip-smart, incisive commentary on politics and culture.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/mohanad-elshieky-san-francisco-california-09-26-2026/event/1C0064BE9FD3A413",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_619b29ba4d3f",
              "venue_id": "venue_punch_line",
              "title": "MOHANAD ELSHIEKY",
              "event_time": "Sep 26, 2026 9:15 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-26T21:15:00",
              "event_date": "2026-09-26",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Libyan-born comedian Mohanad Elshieky combines a deceptively laid-back demeanor with whip-smart, incisive commentary on politics and culture.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/mohanad-elshieky-san-francisco-california-09-26-2026/event/1C0064BE9FD7A426",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_79b37c52bebb",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "JOANNE MCNALLY: PINOTPHILE",
              "event_time": "Sat Sep 26, 2026 7:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-09-26T19:00:00",
              "event_date": "2026-09-26",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Irish comedy star Joanne McNally returns with her new stand-up tour featuring hilarious stories about life, love, and singlehood.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/joanne-mcnally-pinotphile-san-francisco-california-09-26-2026/event/1C006469D4A10CDA",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c821362ed4b8",
              "venue_id": "venue_shapeshifters",
              "title": "Gravitational Lensing: Feminist Film Dialogues",
              "event_time": "2026-09-26",
              "venue_name": "Shapeshifters",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "Program 17: Family Portraits/Relational Exercises includes a spectrum of diaristic films—from uncanny documentary to autobiographical re-enactments—that manifest different ways filmmakers choose to represent their relationships to family and, more broadly, to home (both literal and conceptual) through cinematic language.",
              "event_types": [
                "film"
              ],
              "price_info": "San Francisco Cinematheque",
              "url": "https://sfcinematheque.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shapeshifters",
                  "source_name": "Shapeshifters",
                  "fetched_at": "2026-08-30T10:04:33.112973Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-09-26",
              "run_id": "run_8afbca984fe1",
              "run_label": "Gravitational Lensing: Feminist Film Dialogues, Sep 9 – Nov 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_caac3099356e",
              "venue_id": "venue_sf_conservatory",
              "title": "Prokofiev's 5th",
              "event_time": "2026-09-26",
              "venue_name": "SF Conservatory of Music",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "50 Oak St, San Francisco, CA 94102",
              "description": "As a member of the SFCM Orchestra , you’ll experience firsthand the advantages of playing in a large ensemble. You’ll also get a complete overview of orchestral repertoire, and that begins with examining both masterworks and lesser-known pieces of every era. The symphony orchestra has a large repertoire, and each stylistic period deserves attention. Do you take to the classical period works of Mozart and Haydn? The grand romantic works of Brahms and Tchaikovsky? How about the 20th-century masterpieces by Aaron Copland and Benjamin Britten? Add to that more recent works by such luminaries as John Adams and Joan Tower, and collaborations with Opera Theatre, and you’re on your way to becoming the well-rounded, informed musician the performing world expects.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://sfcm.edu/experience/performances/edwin-outwater-conducts-prokofievs-5th-sfcm-orchestra/20260926",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_conservatory",
                  "source_name": "SF Conservatory of Music",
                  "fetched_at": "2026-08-31T11:29:33.983801Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_conservatory|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e28f54ebd2e9",
              "venue_id": "venue_presidio_theater",
              "title": "The History of Basque Music",
              "event_time": "SEP 26, 2026",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-09-26T19:30:00",
              "event_date": "2026-09-26",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "Direct from the Basque Country for one night only on the West Coast, this is a rare chance to experience Basque history through a dynamic, documentary-style performance. Pianist Josu Okiñena weaves together narration, live music, and visual storytelling to bring the composers, influences, and identity behind the music vividly to life. He's joined by Garikoitz Mendizabal, whose masterful command of the traditional txistu roots the program in centuries of tradition, and Noelia Ibáñez, whose powerful vocals add a bold, contemporary edge. Together, they create an evening that's immersive, personal, and unforgettable.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.presidiotheatre.org/show-details/the-history-of-basque-musica-living-portrait-of-an-ancient-land",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-08-31T13:00:36.584647Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a8f78acc8e3e",
              "venue_id": "venue_piedmont_center",
              "title": "Oakland Art Association Gallery Show",
              "event_time": "2026-09-26T11:00:00",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-09-26T11:00:00",
              "event_date": "2026-09-26",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-08-31T13:20:32.956554Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-09-26",
              "run_id": "run_06f2ed2f4513",
              "run_label": "Oakland Art Association Gallery Show, Sep 26 – Nov 1",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_69e87917ed6f",
              "venue_id": "venue_piedmont_center",
              "title": "Ezequiel S. Barrera & Carl Blake",
              "event_time": "2026-09-26T18:00:00",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-09-26T18:00:00",
              "event_date": "2026-09-26",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "Program featuring works by Villa-Lobos, Beethoven, Laboa, and Barrera.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "$25 advance tickets",
              "url": "https://ticketsignup.io/Barrera",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-08-31T13:20:32.956554Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d56afdf0b64a",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Riley Green",
              "event_time": "Sat Sep 26, 2026",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "Country artist Riley Green brings his traditional country sound and blue-collar anthems to the Shoreline Amphitheatre on his \"Cowboy As It Gets Tour.\"",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/riley-green-cowboy-as-it-gets-mountain-view-california-09-26-2026/event/1C0064BBE3BD5723",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-08-31T13:50:55.047252Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a2fa6162dc96",
              "venue_id": "venue_yerba_buena_center",
              "title": "GaHee Park: Behind the Curtain",
              "event_time": "2026-09-26",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Park invites us to peek behind the curtain, as she lays claim to her own power as a surrealist painter working across fantasy and intimacy.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/gahee-park-behind-the-curtain/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-26",
              "run_id": "run_5353f80886f6",
              "run_label": "GaHee Park: Behind the Curtain, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_806b505d37dd",
              "venue_id": "venue_yerba_buena_center",
              "title": "Rael San Fratello: Prototypes",
              "event_time": "2026-09-26",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The most comprehensive presentation to date of the renowned Bay Area design studio Rael San Fratello.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/rael-san-fratello-prototypes-and-provocations/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-26",
              "run_id": "run_cd09bf07fb68",
              "run_label": "Rael San Fratello: Prototypes, Sep 25 – Jan 31",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bb7a9c73976f",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dread Scott: The Body Politic",
              "event_time": "2026-09-26",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The exhibition reflects Dread Scott’s longtime commitment to art that confronts political issues and interrogates American patriotism.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dread-scott-the-body-politic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-26",
              "run_id": "run_995f7fbf41ba",
              "run_label": "Dread Scott: The Body Politic, Sep 25 – Jan 31",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7d8fdce6719d",
              "venue_id": "venue_yerba_buena_center",
              "title": "Yourself and Yours",
              "event_time": "Saturday, September 26, 2026, 2 PM",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-26T14:00:00",
              "event_date": "2026-09-26",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "See Hong Sang-soo’s “Yourself and Yours” (2016) as part of a weekly film series exploring voyeurism and theatricality, cocktail charm and social taboos.",
              "event_types": [
                "film"
              ],
              "price_info": "Tickets: $15",
              "url": "https://ybca.org/event/yourself-and-yours-through-an-open-window-film-series/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1460a52fb8d0",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dream",
              "event_time": "2026-09-26",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public art installation commissioned by YBCA and co-sponsored by San Francisco Public Works.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dream-public-art/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-26",
              "run_id": "run_b6a5ba4e8809",
              "run_label": "Dream, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_399734e7e3e8",
              "venue_id": "venue_yerba_buena_center",
              "title": "SoMa Mahal Kita",
              "event_time": "2026-09-26",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A message of love for the SoMa neighborhood and community, inspired by weaving practices in the Phillipines and the colors of the Filipino flag.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/soma-mahal-kita-soma-i-love-you-ciriaco-sayoc/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-26",
              "run_id": "run_0c5141fff335",
              "run_label": "SoMa Mahal Kita, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_001aff285cf7",
              "venue_id": "venue_yerba_buena_center",
              "title": "We Rooted in Flight",
              "event_time": "2026-09-26",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public artwork inviting passerbyers to join in the journey of collective flight",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/we-fly-for-a-liberated-we-we-rooted-in-flight/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-26",
              "run_id": "run_1d34139aedcf",
              "run_label": "We Rooted in Flight, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6a70fa192948",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-09-26T14:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-26T14:00:00",
              "event_date": "2026-09-26",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-26",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_86ed0e012036",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-09-26T18:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-26T18:00:00",
              "event_date": "2026-09-26",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-26",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 2,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_5e96eab33d13",
              "venue_id": "venue_biscuits__blues",
              "title": "The Nick Moss Band feat. Dennis Gruenling",
              "event_time": "2026-09-26T21:00:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-09-26T21:00:00",
              "event_date": "2026-09-26",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "The Nick Moss Band featuring Dennis Gruenling delivers electrifying, old-school blues with a modern edge. Led by acclaimed Chicago guitarist and vocalist Nick Moss and harmonica powerhouse Dennis Gruenling, the award-winning group blends Chicago, Texas, and West Coast blues traditions into a high-energy live experience. Known for fiery musicianship, soulful vocals, and dynamic stage performances, the band has become one of today’s most respected and exciting acts in contemporary blues.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://biscuitsandblues.com/find-a-show/20260926thenickmossbandfeatdennisgruenling",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-08-31T16:25:33.031111Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_0f23330a43f3",
              "venue_id": "venue_chase_center",
              "title": "Premium Suites",
              "event_time": "2026-09-26T19:30:00",
              "venue_name": "Chase Center",
              "event_start": "2026-09-26T19:30:00",
              "event_date": "2026-09-26",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "At Select-A-Suite on Thursday, September 17, 2026, not only will you have the opportunity to reserve your suites before they are released to the public, but attendees can also enjoy complimentary food and beverage tastings throughout the event, network with fans and business professionals, and have the opportunity to capture a photo with the Larry O'Brien Trophies.",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://chasecenter.com/premium-experiences/premium-suites/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-08-31T17:38:13.687686Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-09-26",
              "run_id": "run_bed5be826f7c",
              "run_label": "Premium Suites, Sep 10 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8a75d8c2b6c0",
              "venue_id": "venue_tupelo",
              "title": "Inner-State ‘80’s",
              "event_time": "Saturday September 26th 9:00PM - 1:30AM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-26T21:00:00",
              "event_date": "2026-09-26",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "This high energy 80’s cover band delivers faithful reproductions of all your favorite hits. They’re sure to get you up and shakin’ that ass!",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e8cbb51621a8",
              "venue_id": "venue_rickshaw_stop",
              "title": "EMO NITE at Rickshaw Stop - San Francisco, CA",
              "event_time": "Sat Sep 26 9:00PM",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-09-26T21:00:00",
              "event_date": "2026-09-26",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Saturday, September 26 EMO NITE at Rickshaw Stop - San Francisco CA 9pm doors $20 advance / $22 doors ($1 from every ticket sold will be donated to Emo Nite Gives A F*ck) 21+ sing along to ur favorite songs with all of ur friends when emo nite comes to Rickshaw Stop in San Francisco, CA!! grab those tix before they’re gone and we’ll see u soon 😘 emonite.com/ $1 per ticket transaction sponsors Emo Nite Gives A F*ck. Donations are allocated for worthwhile organizations focusing on: · Mental Health · Harm Reduction · Children & Families · Poverty & Homelessness · Disenfranchised Communities · Terminal Illness",
              "event_types": [
                "dj_party"
              ],
              "price_info": "21+, $22.00",
              "url": "https://wl.seetickets.us/event/emo-nite-at-rickshaw-stop-san-francisco-ca/703856?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-09-02T10:05:07.555428Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5327dce80312",
              "venue_id": "venue_city_lights_theater",
              "title": "Eureka Day",
              "event_time": "2026-09-26T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-09-26T19:30:00",
              "event_date": "2026-09-26",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "Sharp comedy by Jonathan Spector about a progressive Berkeley private school whose board is thrown into conflict during a mumps outbreak. Runs September 24 through October 18, 2026.",
              "event_types": [
                "theater"
              ],
              "price_info": "Single tickets go on sale June 1",
              "url": "https://cltc.org/event/eureka-day/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-09-02T10:09:11.201902Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-09-26",
              "run_id": "run_4a0cceaa9027",
              "run_label": "Eureka Day, Sep 24 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4557c8f33032",
              "venue_id": "venue_cafe_zoe_pizza_guy",
              "title": "Live Music by Craig Anderson",
              "event_time": "2026-09-26T01:00:00",
              "venue_name": "Cafe Zoe",
              "event_start": "2026-09-26T01:00:00",
              "event_date": "2026-09-26",
              "venue_address": "1929 Menalto Ave, Menlo Park, CA 94025",
              "description": "Acoustic folk performance at Neighborhood Pizza Guy & Cafe Zoe.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://neighborhood.pizza/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cafe_zoe_pizza_guy",
                  "source_name": "Cafe Zoe",
                  "fetched_at": "2026-09-02T10:14:27.017935Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cafe_zoe_pizza_guy|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_ba292999fa6d",
              "venue_id": "venue_public_works",
              "title": "Fcukers & Chloé Caillet",
              "event_time": "2026-09-26T22:00:00",
              "venue_name": "Public Works",
              "event_start": "2026-09-26T22:00:00",
              "event_date": "2026-09-26",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "Portola Week event featuring Fcukers (DJ Set), Chloé Caillet, Milli Meng, and Queen Out Loft Takeover at Public Works.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$25+",
              "url": "https://publicsf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-09-02T11:21:34.915442Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_public_works|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_48d98dabc9cd",
              "venue_id": "venue_discretion_brewing",
              "title": "Rivets & Rust",
              "event_time": "2026-09-26T17:30:00",
              "venue_name": "Discretion Brewing",
              "event_start": "2026-09-26T17:30:00",
              "event_date": "2026-09-26",
              "venue_address": "2703 41st Ave Ste A, Soquel, CA 95073",
              "description": "Live Music 5:30-7:30pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_discretion_brewing",
                  "source_name": "Discretion Brewing",
                  "fetched_at": "2026-09-02T11:35:03.120781Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_discretion_brewing|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3a1a9cf1dfc6",
              "venue_id": "venue_madrone_art_bar",
              "title": "Jam Session 🍓🥪🍇🧀",
              "event_time": "September 26 @ 4:00 pm - 6:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-26T16:00:00",
              "event_date": "2026-09-26",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "4:00-6:30pm Sandwiches, Jams & Good Times! Stop by the bar for a tea sandwich and drink pairing! Tea sandwiches: $5 each or 3 for $13. Cash & Venmo accepted!",
              "event_types": [
                "community"
              ],
              "price_info": "$5",
              "url": "https://madroneartbar.com/event/jam-session-%f0%9f%8d%93%f0%9f%a5%aa%f0%9f%8d%87%f0%9f%a7%80-5/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f79d5506ee8f",
              "venue_id": "venue_madrone_art_bar",
              "title": "Garage O’Clock Rock",
              "event_time": "September 26 @ 6:00 pm - 9:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-26T18:00:00",
              "event_date": "2026-09-26",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Garage O’Clock Rock with DJ Scooter Stalin and DJ Grooves McFard spinning 80s, reggae, rocksteady, surf, Hawaiian, oldies, and garage. 6 – 9pm NO COVER",
              "event_types": [
                "dj_party"
              ],
              "price_info": "NO COVER",
              "url": "https://madroneartbar.com/event/garage-oclock-rock/2026-09-26/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_de02c9d51d12",
              "venue_id": "venue_madrone_art_bar",
              "title": "Let’s Go Disco",
              "event_time": "September 26 @ 9:30 pm - 1:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-26T21:30:00",
              "event_date": "2026-09-26",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Saturday September 26 in San Francisco… Welcoming, @Timo._.Lee (nyc) Splitting her roots between Taiwan and Hawaii, Timo spent a decade shaping Honolulu’s underground dance music scene. Now anchored in New York, she has become a fixture in the city's nightlife ecosystem, with regular sets at The Lot Radio and venues like Good Room. She’s also [&hellip;]",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/lets-go-disco-8-2026-01-24-2026-02-28-2026-03-28-2026-04-25-2026-07-25-2026-09-26/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2f53942fa0b3",
              "venue_id": "venue_moes_alley",
              "title": "Duck Island Festival",
              "event_time": "2026-09-26T12:00:00",
              "venue_name": "Moe's Alley",
              "event_start": "2026-09-26T12:00:00",
              "event_date": "2026-09-26",
              "venue_address": "1535 Commercial Way, Santa Cruz, CA 95065",
              "description": "Show: 12:00 PM",
              "event_types": [
                "live_music",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_moes_alley",
                  "source_name": "Moe's Alley",
                  "fetched_at": "2026-09-03T10:23:10.512238Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_moes_alley|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_94aeb9cde349",
              "venue_id": "venue_kuumbwa_jazz",
              "title": "Martha High’s Funky Divas",
              "event_time": "2026-09-26T19:00:00",
              "venue_name": "Kuumbwa Jazz Center",
              "event_start": "2026-09-26T19:00:00",
              "event_date": "2026-09-26",
              "venue_address": "320-2 Cedar St, Santa Cruz, CA 95060",
              "description": "Renowned as James Brown's longtime backing vocalist, soul powerhouse Martha High takes the stage to celebrate the rich legacy of classic funk and R&B. Backed by an electrifying ensemble, she delivers a soulful, hard-hitting tribute to the pioneering women of soul music.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kuumbwa_jazz",
                  "source_name": "Kuumbwa Jazz Center",
                  "fetched_at": "2026-09-03T10:24:11.929813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kuumbwa_jazz|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e829af460b57",
              "venue_id": "venue_kuumbwa_jazz",
              "title": "Martha High’s Funky Divas",
              "event_time": "2026-09-26T21:00:00",
              "venue_name": "Kuumbwa Jazz Center",
              "event_start": "2026-09-26T21:00:00",
              "event_date": "2026-09-26",
              "venue_address": "320-2 Cedar St, Santa Cruz, CA 95060",
              "description": "Renowned as James Brown's longtime backing vocalist, soul powerhouse Martha High takes the stage to celebrate the rich legacy of classic funk and R&B. Backed by an electrifying ensemble, she delivers a soulful, hard-hitting tribute to the pioneering women of soul music.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kuumbwa_jazz",
                  "source_name": "Kuumbwa Jazz Center",
                  "fetched_at": "2026-09-03T10:24:11.929813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kuumbwa_jazz|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3e1bc4ced97f",
              "venue_id": "venue_black_cat",
              "title": "Stacy Dillard & Josh Evans 5tet",
              "event_time": "2026-09-26T19:00:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-26T19:00:00",
              "event_date": "2026-09-26",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $40 , $50 , $60\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n9:30 show: Bar @ 6:00, Doors @ 8:45\n\n\n\n\nHard-charging, deeply expressive modern jazz led by two fearless improvisers with serious New York fire.\n\n\n\n\nSaxophonist Stacy Dillard and trumpeter Josh Evans bring a powerhouse frontline to Black Cat for a four-night run built on swing, edge, and real-time invention. Dillard is known for a rich, commanding tone and a sound that stretches tradition without losing the feeling. Pianist Eric Reed called him “a true improviser,” while Roy Hargrove put it simply: “Stacy is a one-of-a-kind musician.”\n\n\n\n\nEvans brings his own deep fire to the bandstand, with a trumpet voice shaped by the lineage of Jackie McLean, Rashied Ali, Benny Golson, Cedar Walton, Christian McBride, Roy Hargrove, Gregory Porter, T.S. Monk, and many more. Together, Dillard and Evans lead a 5tet made for hard swing, sharp interplay, and the kind of late-night jazz energy that keeps the room on edge.\n\n\n\n\nBand Lineup:\n\nStacy Dillard, Saxophone\n\nJosh Evans, Trumpet\n\nGrant Levin, Piano\n\nDavid Ewell, Bass \n\nJaimeo Brown, Drums",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $40 , $50 , $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/12858/2026-09-26",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b6ea25f4d08e",
              "venue_id": "venue_black_cat",
              "title": "Stacy Dillard & Josh Evans 5tet",
              "event_time": "2026-09-26T21:30:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-26T21:30:00",
              "event_date": "2026-09-26",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $40 , $50 , $60\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n9:30 show: Bar @ 6:00, Doors @ 8:45\n\n\n\n\nHard-charging, deeply expressive modern jazz led by two fearless improvisers with serious New York fire.\n\n\n\n\nSaxophonist Stacy Dillard and trumpeter Josh Evans bring a powerhouse frontline to Black Cat for a four-night run built on swing, edge, and real-time invention. Dillard is known for a rich, commanding tone and a sound that stretches tradition without losing the feeling. Pianist Eric Reed called him “a true improviser,” while Roy Hargrove put it simply: “Stacy is a one-of-a-kind musician.”\n\n\n\n\nEvans brings his own deep fire to the bandstand, with a trumpet voice shaped by the lineage of Jackie McLean, Rashied Ali, Benny Golson, Cedar Walton, Christian McBride, Roy Hargrove, Gregory Porter, T.S. Monk, and many more. Together, Dillard and Evans lead a 5tet made for hard swing, sharp interplay, and the kind of late-night jazz energy that keeps the room on edge.\n\n\n\n\nBand Lineup:\n\nStacy Dillard, Saxophone\n\nJosh Evans, Trumpet\n\nGrant Levin, Piano\n\nDavid Ewell, Bass \n\nJaimeo Brown, Drums",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $40 , $50 , $60",
              "url": "https://blackcatsf.turntabletickets.com/shows/12858/2026-09-26",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a2ee45a28573",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Lavay Smith & Her Red Hot Skillet Lickers",
              "event_time": "Saturday, September 26, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-26T19:00:00",
              "event_date": "2026-09-26",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Saturday, September 26, 2026 @ 7pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/lavay-smith-her-red-hot-skillet-lickers-18/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6175fb4368d5",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Martin Luther McCoy",
              "event_time": "Saturday, September 26, 2026 @ 9pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-26T21:00:00",
              "event_date": "2026-09-26",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Keys Jazz Bistro welcomes San Francisco native and former SF Jazz Collective member, Martin Luther McCoy.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $50 per show",
              "url": "https://keysjazzbistro.com/event/martin-luther-mccoy-3/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a764e5ee2959",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Late Set: Simon Rowe Organ Trio",
              "event_time": "Saturday, September 26, 2026 @ 10:30pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-26T22:30:00",
              "event_date": "2026-09-26",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Saturday, September 26, 2026 @ 10:30pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $20 per show",
              "url": "https://keysjazzbistro.com/event/late-set-simon-rowe-organ-trio-66/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b15dedb1eda7",
              "venue_id": "venue_brick_and_mortar",
              "title": "MAX FRY, AWANNABAE",
              "event_time": "9.26 Show: 9:00PM",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-09-26T21:00:00",
              "event_date": "2026-09-26",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Event Details Goldenvoice Presents Max Fry, aWannabae with aWannabae September 26, 2026 9:00 pm PDT (Doors: 8:00 pm ) Brick and Mortar Music Hall , 1710 Mission Street , San Francisco, CA ( map ) $29.54 Buy Tickets + Google Calendar Max Fry aWannabae JUST ANNOUNCED Felukah — HibisKiss Tour October 28, 2026 Thoughts on Bowling November 27, 2026 BIIRD (Night 2) September 20, 2026 MoneyHillCasino October 11, 2026 Hayden Everett October 29, 2026 Follow us on Instagram Join the Brick & Mortar Newsletter",
              "event_types": [
                "live_music"
              ],
              "price_info": "$29.54",
              "url": "https://www.brickandmortarmusic.com/tm-event/max-fry-awannabae/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-09-03T11:13:51.689688Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f5c6abbee061",
              "venue_id": "venue_pacific_film_archive",
              "title": "Georgian Cinema Now Symposium",
              "event_time": "Sep 26, 2026 11:30 AM–5 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-26T11:30:00",
              "event_date": "2026-09-26",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "This symposium is timed with the launch of BAMPFA’s series Georgian Cinema Now. Presentations by visiting Georgian artists and experts will offer greater context and insights into the current situation for independent filmmakers and journalists working in Georgia today.",
              "event_types": [
                "art",
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://bampfa.org/event/georgian-cinema-now-symposium",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_95bfb7261813",
              "venue_id": "venue_pacific_film_archive",
              "title": "Contemplative Salt Bath",
              "event_time": "Sep 26, 2026 1 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-26T13:00:00",
              "event_date": "2026-09-26",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Artist Beatriz Escobar leads participants through a contemplative salt bath experience, drawing inspiration from her floating practice to invite reflection on alternatives to modernity’s paradigms of determinacy and solutionism.",
              "event_types": [
                "art",
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://bampfa.org/event/contemplative-salt-bath",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0e90d5da267a",
              "venue_id": "venue_pacific_film_archive",
              "title": "Rasha Salti & Natalia Brizuela",
              "event_time": "Sep 26, 2026 5:30 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-26T17:30:00",
              "event_date": "2026-09-26",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Rasha Salti joins cocurator Natalia Brizuela to discuss Palestinian–Chilean solidarity as disobedience in the arts, and wider transnational solidarity and artist networks under dictatorship and occupation.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/conversation-rasha-salti-and-natalia-brizuela",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_77ee8c762286",
              "venue_id": "venue_pacific_film_archive",
              "title": "Crossing",
              "event_time": "Sep 26, 2026 7:30 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-26T19:30:00",
              "event_date": "2026-09-26",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "A Georgian woman heads to Istanbul in search of her estranged trans niece in this elegant, politically resonant feature from Swedish Georgian director Levan Akin.",
              "event_types": [
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/crossing",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f67de5e9b729",
              "venue_id": "venue_4_star_theater",
              "title": "My Neighbor Totoro",
              "event_time": "26 September 2026 10:00 AM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-26T10:00:00",
              "event_date": "2026-09-26",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "This acclaimed animated tale by director Hayao Miyazaki follows schoolgirl Satsuke and her younger sister, Mei, as they settle into an old country house with their father and wait for their mother to recover from an illness in an area hospital. As the sisters explore their new home, they encounter and befriend playful spirits in their house and the nearby forest, most notably the massive cuddly creature known as Totoro.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/neighbor-totoro-sat-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_81ccd78240ee",
              "venue_id": "venue_4_star_theater",
              "title": "Closed for a Private Event",
              "event_time": "26 September 2026 2:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-26T14:00:00",
              "event_date": "2026-09-26",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "CLOSED FOR A PRIVATE EVENT    Curious about hosting your own private event with us? Contact and more details can be found  here .",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/private-event-september-26",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0ee357848a5f",
              "venue_id": "venue_local_edition",
              "title": "The Twist and Disco",
              "event_time": "September 26, 2026 8:30 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-09-26T20:30:00",
              "event_date": "2026-09-26",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Live Performance 8:30-12:30Trevor Pritchett on VocalsTorré on Bass and VocalsHenry Plumb on DrumsJosh Blas on GuitarWith a little bit of brass, and a whole lot of rhythm, the Twist and Disco tell the story of a groove that stirred in Memphis and exploded in Detroit-- bounced off of post-war London to crash at Studio 54. You might hear Barry, Presley, Wonder, Jagger, Withers, Gaye or Gibb; anything that covers the two breakneck decades between the birth of The Backbeat and the rise of Four-on-the-Floor.Dancing isn't mandatory, of course — but it may be unavoidable",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/2026/8/22/torr-amp-band-mgnxt",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-09-03T12:59:31.047351Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_99b572745e0b",
              "venue_id": "venue_cat_club",
              "title": "FUNKYTOWN SF",
              "event_time": "September 26, 2026 9:00 PM",
              "venue_name": "Cat Club",
              "event_start": "2026-09-26T21:00:00",
              "event_date": "2026-09-26",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "70s Funk/Disco vs 80s Pop/New Wave\n——\n9pm-2am",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.sfcatclub.com/calendar/082424-3rbbr-lj8n5-a8mfr-yxgmp-ft6xy-xgb9m-nswdm-37jra-d9l4s",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cat_club",
                  "source_name": "Cat Club",
                  "fetched_at": "2026-09-03T13:24:58.141502Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ba68931fb003",
              "venue_id": "venue_pier_23",
              "title": "ROBSON BATINGA",
              "event_time": "Saturday, September 26, 2026 4:00 PM\n              \n              7:00 PM",
              "venue_name": "Pier 23",
              "event_start": "2026-09-26T16:00:00",
              "event_date": "2026-09-26",
              "venue_address": "23 The Embarcadero,San Francisco, CA 94111",
              "description": "An artist from the Brazilian northeast, with over 40 years of musical experience, singer, composer, multi-instrumentalist, guitarist since childhood, Robson Batinga is a wonderful addition to our beautiful scenery. Join us at Pier 23 Cafe from 4pm-7pm to relax and enjoy Robson’s vibes. We can’t wait to see you!",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.pier23cafe.com/events/2026/6/6/robson-batinga-1-4pm-7nk36",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pier_23",
                  "source_name": "Pier 23",
                  "fetched_at": "2026-09-03T13:40:31.659066Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pier_23|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_66b8325cde0a",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Radio Sofia",
              "event_time": "26 September 2026",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Radio Sofia delivers an instrumental set blending jazz, pop, R&B, and tropicalia world music. Unwind with a glass of wine while taking in their soulful and dynamic performance.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-09-03T13:50:21.930604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7ede6b8b36a5",
              "venue_id": "venue_caravan_lounge",
              "title": "Rachel’s Birthday Show",
              "event_time": "09/26/2026",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "Welcome to The Caravan Lounge THE CARAVAN LOUNGE is a friendly, owner-operated bar located in the heart of downtown San Jose. As well as being one of San Jose’s oldest live music venues, the Caravan provides other fun activities such as karaoke, comedy, burlesque, pool table, and DJ nights. The Caravan is also extremely affordable for those trying to stretch a budget. And let’s not forget the music! All the shows at the Caravan are FREE! Open 7 days a week 2pm – Close “Aside from the obvious draw of affordable libations poured by heavy-handed barkeeps, The Caravan sets itself apart from other no-frills bars as the place to go to see up-and-coming bands. The bar has hosted plenty of local bands’ first shows, and regularly features smaller touring acts. If you’re a music fan always on the lookout for your new favorite group, make sure to pay attention to who is coming to Caravan.” -Metro FEATURED VIDEOS – Go to our YouTube Channel by clicking here to see more… SEPTEMBER 2026 TUES. SEPT 1st- Karaoke with Ronnie Roach WED. SEPT 2nd – The Caravan Lounge Comedy Show hosted by Chelsea Costanza THURS. SEPT 3rd – SWEAT with DJ SNAQ FRI. SEPT 4th – Rebelskamp, Magick Blues Band, TBA SAT. SEPT 5th – Skool Of Sharks TUES. SEPT 8th- Karaoke with Ronnie Roach WED. SEPT 9th – The Caravan Lounge Comedy Show Hosted by Nyoki THURS. SEPT 10th – Shrine Goth DJ Night with Hex Embrace, C_Death, and Owen FRI. SEPT 11th – Circus Of Sin 10 Year Sinnaversary! Hosted By Some Guy SAT. SEPT. 12th – CaveFest II We Love You Curtis Castro! Abysmal Piss, Ominous Ruin, Lost To The Void TUES. SEPT 15th – Karaoke with Ronnie Roach WED. SEPT 16th -The Caravan Lounge Comedy Show Hosted by Ato Walker THURS. SEPT 17th – TBA FRI. SEPT 18th – TBA SAT. SEPT 19th – Facekicker, American Standard, 12 Steps To Nothing TUES. SEPT 22nd – Karaoke with Ronnie Roach WED. SEPT 23rd- The Caravan Lounge Comedy Show hosted by Matt Kennedy THURS. SEPT 24th – Sweethearts DJ Night FRI. SEPT 25th – Ding Mao, Diamantide, Clou",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "FREE",
              "url": "http://s172518151.onlinehome.us/caravan/site/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-09-03T14:20:40.572990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_450ac0e76fa3",
              "venue_id": "venue_comstock_saloon",
              "title": "Black Magic",
              "event_time": "2026-09-26T20:00:00",
              "venue_name": "Comstock Saloon",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "155 Columbus Ave, San Francisco, CA 94133",
              "description": "Live music performance",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_comstock_saloon",
                  "source_name": "Comstock Saloon",
                  "fetched_at": "2026-09-03T14:26:10.425617Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_comstock_saloon|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b69a6fd4dcaf",
              "venue_id": "venue_pono_hawaiian",
              "title": "Ka La'i O Mele Live",
              "event_time": "2026-09-26T18:00:00",
              "venue_name": "Pono Hawaiian Grill",
              "event_start": "2026-09-26T18:00:00",
              "event_date": "2026-09-26",
              "venue_address": "120 Union St, Santa Cruz, CA 95060",
              "description": "Live performance of traditional and contemporary Hawaiian slack key music by Bay Area group Ka La'i O Mele featuring Dave Abrahams.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Free",
              "url": "https://daveabrahams.com",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pono_hawaiian",
                  "source_name": "Pono Hawaiian Grill",
                  "fetched_at": "2026-09-03T14:31:35.285310Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_pono_hawaiian|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_8e5483d449e6",
              "venue_id": "venue_poor_house_bistro",
              "title": "Oscar Ladell",
              "event_time": "2026-09-26T18:00:00",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-09-26T18:00:00",
              "event_date": "2026-09-26",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-09-04T10:11:13.938872Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_21e5c53b181a",
              "venue_id": "venue_sailing_goat",
              "title": "The Mighty Neptunes",
              "event_time": "2026-09-26T17:00:00",
              "venue_name": "Sailing Goat",
              "event_start": "2026-09-26T17:00:00",
              "event_date": "2026-09-26",
              "venue_address": "1900 Stenmark Dr, Richmond, CA 94801",
              "description": "A blend of New Orleans, Memphis, Mississippi, and Chicago blues seasoned with Oakland funk.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Free",
              "url": "https://www.sailinggoatrestaurant.com/event-details/the-mighty-neptunes",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sailing_goat",
                  "source_name": "Sailing Goat",
                  "fetched_at": "2026-09-04T10:13:07.105977Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sailing_goat|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_e59a21a7db27",
              "venue_id": "venue_mvcpa",
              "title": "Flamenco de Jerez",
              "event_time": "September 26 7:00 pm",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-09-26T19:00:00",
              "event_date": "2026-09-26",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "The Flamenco Society\n\nSaturday, September 26 at 7:00 p.m.\n\nExperience the passion and intensity that only flamenco from Jerez can offer, as each artist brings their unique style and energy to the stage. The evening will be a celebration of the rich cultural heritage of Andalusia, where flamenco is not just an art form but a way of life. Feel the rhythm in your soul as the dancers' feet pound the floor with precision and grace, while the singers' voices convey deep emotion and storytelling. The guitarists will captivate you with their intricate melodies and powerful chords, creating an atmosphere that is both intimate and electrifying.\n\nDirect from Spain: Flamenco de Jerez.\nFeaturing: Macarena de Jerez, dance | Carmen Herrera, dance | Jose Mijita, singer | Manuel Vinaza, palmas | Ismael Heredia, guitar\n\nThis performance is 1 hours and 30 minutes long, including one 10 minute intermission, and is appropriate for all ages.\n\nMainStage | Reserved\n\nOrchestra: $75\nBalcony: $68\nDiscounts available for Seniors (62 & over), Students (21 & under), and Youth (12 & under)\n\nTicket price includes $3 Facility Use Fee",
              "event_types": [
                "dance",
                "latin_world",
                "live_music"
              ],
              "price_info": "$75",
              "url": "https://tickets.mvcpa.com/eventperformances.asp?evt=764",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mvcpa",
                  "source_name": "MV Center for the Performing Arts",
                  "fetched_at": "2026-09-04T10:13:59.609171Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mvcpa|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b60845de8145",
              "venue_id": "venue_mvcpa",
              "title": "El viaje de los cantores",
              "event_time": "September 26 7:30 pm",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-09-26T19:30:00",
              "event_date": "2026-09-26",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "Teatro Nahual\n\nSeptember 26 at 7:30 p.m.\nSeptember 27 at 2 p.m\nOctober 3 at 7:30 p.m.\nOctober 4 at 2 p.m.\n\n**Performance in Spanish**\n\nTeatro Nahual presents the theatrical productions “El viaje de los cantores” (“The Journey of the Singers,” written by Hugo Salcedo) and “Circo, maroma y teatro” (“Circus, acrobatics and theatrics,” written by Verónica Meza). The two plays are fused into one. “El viaje de los cantores” is a powerful Mexican play. It narrates a collective story, including testimonies from migrants and family members, as well as fragments of memory, dreams, and desires. While “Circo, maroma y teatro” is interconnected with humor across scenes, it reflects on the social and political situation that Latinx immigrants face in the U.S. today.\n\nDirector: Verónica Meza. Music: Isidro Jiménez. Set Designer: Frances Kao.\n\nThis performance is 1 hour and 20 minutes long, with no intermission, and is recommended for ages 12 and up.\n\n\nTeatro Nahual presenta las producciones teatrales El viaje de los cantores, de Hugo Salcedo, y Circo, maroma y teatro, de Verónica Meza. Ambas obras se entrelazan en una sola puesta en escena. El viaje de los cantores es una poderosa obra del teatro mexicano que narra una historia colectiva a través de los testimonios de personas migrantes y sus familiares, entretejiendo fragmentos de memoria, sueños y anhelos. Por su parte, Circo, maroma y teatro, con un toque de humor presente a lo largo de sus escenas, invita a reflexionar sobre la realidad social y política que enfrentan hoy las comunidades inmigrantes latinas en los Estados Unidos.\n\nDirección: Verónica Meza. Música: Isidro Jiménez. Diseño de escenografía: Frances Kao\n\n\nSecondStage | General Admission | Performance in Spanish\nSeptember 26: $41 Regular | $38 Seniors (64 and over) and Students (21 and under)\nAll other performances: $36 Regular | $34 Seniors (64 and over) and Students (21 and under)\n\nTicket price includes $3 Facility Use Fee",
              "event_types": [
                "theater"
              ],
              "price_info": "$41",
              "url": "https://tickets.mvcpa.com/eventperformances.asp?evt=779",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mvcpa",
                  "source_name": "MV Center for the Performing Arts",
                  "fetched_at": "2026-09-04T10:13:59.609171Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mvcpa|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6f7d7b16e714",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-09-26",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-26",
              "event_date": "2026-09-26",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "San Francisco Playhouse. A beloved puppet takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "Tickets On Sale",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-09-04T10:15:07.852694Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-26",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_dfff9298d118",
              "venue_id": "venue_artists_television_access",
              "title": "Post-Colonial Spectres",
              "event_time": "2026-09-26T20:00:00",
              "venue_name": "ATA",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "992 Valencia St, San Francisco, CA 94110",
              "description": "An in-person presentation by Honduran-American filmmaker Adrian Quetzal Randall featuring an archival speculative cine-essay on the military origins of Central American telecommunications, paired with Tellurian Dream exploring the colonial mythos of the Malabar Radio Antenna.",
              "event_types": [
                "film"
              ],
              "price_info": "$11",
              "url": "http://www.othercinema.com/calendar/index.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_artists_television_access",
                  "source_name": "ATA",
                  "fetched_at": "2026-09-04T10:17:33.463128Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_artists_television_access|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_b65427b3bd83",
              "venue_id": "venue_cafe_du_nord",
              "title": "Rome Streetz",
              "event_time": "9/26/2026 8:00 pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Fergie Baby, $ha Hef",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "Buy Tickets",
              "url": "https://cafedunord.com/tm-event/rome-streetz-sock-it-2-my-pocket-tour/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cafe_du_nord_and_swedish_american_hall",
                  "source_name": "Cafe Du Nord and Swedish American Hall",
                  "fetched_at": "2026-09-04T10:21:43.132381Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_cf1d70bdb076",
              "venue_id": "venue_henflings",
              "title": "AfroBeats Night",
              "event_time": "2026-09-26T20:00:00",
              "venue_name": "Henfling's Tavern",
              "event_start": "2026-09-26T20:00:00",
              "event_date": "2026-09-26",
              "venue_address": "9450 Highway 9, Ben Lomond, CA 95005",
              "description": "DJ Monk Earl spins Afrobeats dance tunes at Henflings Tavern.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Free",
              "url": "https://www.facebook.com/HenflingsBarNGrill/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_henflings",
                  "source_name": "Henfling's Tavern",
                  "fetched_at": "2026-09-04T10:41:15.215331Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_henflings|2026-09-26",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            }
          ]
        },
        "2026-09-27": {
          "date": "2026-09-27",
          "updated_at": "2026-09-04T10:38:52.752625Z",
          "events": [
            {
              "event_id": "evt_603ea430d1b9",
              "venue_id": "venue_golden_gate_theater",
              "title": "Art Garfunkel",
              "event_time": "2026-09-27T19:30:00",
              "venue_name": "Golden Gate Theater",
              "event_start": "2026-09-27T19:30:00",
              "event_date": "2026-09-27",
              "venue_address": "1 Taylor St, San Francisco, CA 94102",
              "description": "Following a widely celebrated appearance during Grammy weekend that captivated audiences and industry leaders alike, Art Garfunkel has announced an upcoming tour that will bring one of the most iconic voices in American music back to stages across the country in a series of magical evenings not to be missed. Art Garfunkel is known and celebrated as the “Voice of Generations” in entertainment history. He is an 8x Grammy Award winner including the Grammy Lifetime Achievement Award. In addition, he is a Rock and Roll Hall of Fame inductee, and Rolling Stone Magazine names him one of 100 Greatest Singers of All Time. As architect and lead singer of Simon & Garfunkel, he shaped modern popular culture with songs such as Bridge Over Troubled Water, The Sound of Silence, and Mrs. Robinson . His voice defines eras and continues to influence artists and audiences worldwide.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Buy tickets",
              "url": "https://us.atgtickets.com/venues/golden-gate-theatre/whats-on/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_golden_gate_theater",
                  "source_name": "Golden Gate Theater",
                  "fetched_at": "2026-04-10T23:56:08.475546Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_sf_theaters",
                  "source_name": "SF Theaters",
                  "fetched_at": "2026-04-11T00:26:11.633115Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_atg_sf",
                  "source_name": "ATG SF",
                  "fetched_at": "2026-04-13T01:58:43.634788Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_golden_gate_theater|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_071b8ac6ffbf",
              "venue_id": "venue_zellerbach",
              "title": "The Australian Ballet: Oscar",
              "event_time": "2026-09-27T15:00:00",
              "venue_name": "Zellerbach Hall",
              "event_start": "2026-09-27T15:00:00",
              "event_date": "2026-09-27",
              "venue_address": "101 Zellerbach Hall, Berkeley, CA 94720",
              "description": "Inspired by the legacy and lore of one of literature's most extraordinary minds, Christopher Wheeldon's visionary ballet blends awe-inspiring choreography with the story of Oscar Wilde. Joby Talbot's lush orchestral score is performed live by the Berkeley Symphony Orchestra.",
              "event_types": [
                "live_music",
                "classical",
                "dance"
              ],
              "price_info": "Tickets start at $60",
              "url": "https://calperformances.org/performances/2026-27/the-australian-ballet-oscar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_berkeley_symphony",
                  "source_name": "Berkeley Symphony",
                  "fetched_at": "2026-05-16T10:38:20.555104Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_zellerbach",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-06-03T11:09:45.996446Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_zellerbach|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d74f9729d7b6",
              "venue_id": "venue_mountain_winery",
              "title": "A.J. Croce Presents CROCE PLAYS CROCE",
              "event_time": "Sep 27, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-27T19:30:00",
              "event_date": "2026-09-27",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "A.J. Croce Presents CROCE PLAYS CROCE Leo Kottke Sunday, September 27 Doors 5:30PM, Show 7:30PM All Ages to Enter, 21 & Over to Drink The Mountain Winery Buy Tickets Event Info No refunds or exchanges. All shows are rain or shine. Children age 3 and older require a ticket. A child under the age of 3 is considered a lap child and does not require a ticket. For directions, dining, parking, or carpool information, please visit www.mountainwinery.com. For information on how to purchase VIP season tickets including suites and box seats, please visit https://www.mountainwinery.com/vip-seating/ Doors open 2 hours prior to the show time. Seating begins 1 hour prior to the show time. Artist Info Acclaimed singer songwriter, piano virtuoso and multi-instrumentalist A.J. Croce is once again taking his celebrated Croce Plays Croce Tour across the country, bringing audiences an unforgettable evening of music that bridges generations and celebrates the enduring power of song. From his earliest performances as a teenager, to his critically acclaimed albums and world tours, A.J. Croce has forged a remarkable career entirely on his own terms. Over the course of three and a half decades and eleven studio albums, he has become known as an acclaimed songwriter, multiinstrumentalist, and electrifying performer, with more than twenty songs reaching Billboard’s Top 40 charts across multiple genres. Celebrated for his ability to bridge styles and eras with effortless grace, Croce moves fluidly through American roots, rock ’n’ roll, blues, jazz, soul, and world music, creating a sound that is as distinctive as it is timeless. Throughout his remarkable career, A.J. has shared the stage with an extraordinary list of musical icons — including Ray Charles, B.B. King, James Brown, Willie Nelson, Lyle Lovett, and Rod Stewart — each collaboration adding another layer to his deep and diverse musical story. Son of the legendary singer songwriter, Jim Croce, A.J purposefully waited thirty years to pe",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1345380",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-06-02T10:55:16.293558Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4c66f2f5ccc0",
              "venue_id": "venue_the_fillmore",
              "title": "Eslabon Armado",
              "event_time": "sep 27 8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-09-27T20:00:00",
              "event_date": "2026-09-27",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "The record-breaking regional Mexican group brings their \"Amor Nocturno Tour\" to the venue. The performance will feature their signature modern sierreño sound, romantic lyrics, and chart-topping hits.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/eslabon-armado-amor-nocturno-san-francisco-california-09-27-2026/event/1C0064C30BA266FA",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-17T10:47:20.580351Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-06-19T10:34:54.116821Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_328dd7eafeea",
              "venue_id": "venue_california_theatre",
              "title": "Don Giovanni - Opera San José",
              "event_time": "2026-09-27T19:30:00",
              "venue_name": "California Theatre",
              "event_start": "2026-09-27T19:30:00",
              "event_date": "2026-09-27",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "Relive the epic adventure on the big screen as Symphony San Jose performs John Williams's iconic, Oscar-winning score live. This special concert event brings the beloved cinematic masterpiece to life with full orchestral accompaniment.",
              "event_types": [
                "live_music",
                "classical",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-06-23T13:09:42.892074Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_symphony_san_jose",
                  "source_name": "Symphony San Jose",
                  "fetched_at": "2026-06-28T03:08:41.619469Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-07-20T11:51:57.471947Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_california_theatre|2026-09-27",
              "run_id": "run_285788e23a8b",
              "run_label": "Don Giovanni - Opera San José, Sep 13 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c67c35ab0a7a",
              "venue_id": "venue_greek_theatre",
              "title": "ERYKAH BADU",
              "event_time": "September 27, 2026 7:00pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-09-27T19:00:00",
              "event_date": "2026-09-27",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.",
              "event_types": [
                "live_music",
                "rnb_soul_funk",
                "hiphop_rap"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thegreekberkeley.com/events/erykah-badu-260927",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-06-23T15:00:51.976512Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-30T18:59:56.104919Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_greek_theatre|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_61126b8ee72b",
              "venue_id": "venue_masonic_hall",
              "title": "Julieta Venegas",
              "event_time": "sep 27 8pm",
              "venue_name": "Masonic Hall",
              "event_start": "2026-09-27T20:00:00",
              "event_date": "2026-09-27",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Celebrated Mexican singer-songwriter Julieta Venegas brings her \"Norteña Tour\" to the Masonic Hall, showcasing her beloved catalog of Latin pop and indie hits. The performance highlights her signature accordion playing and poetic songwriting.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "Tickets from $59.75",
              "url": "https://www.ticketmaster.com/julieta-venegas-nortena-tour-2026-san-francisco-california-09-27-2026/event/1C0060A9E2A82937",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-25T10:40:49.247198Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-06-28T15:59:17.587512Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_masonic_hall|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6a5bfdd60216",
              "venue_id": "venue_regency_ballroom",
              "title": "Bravo The Bagchaser, Peysoh, dj Trill",
              "event_time": "sep 27 8pm",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-09-27T20:00:00",
              "event_date": "2026-09-27",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "These cookies enable us and our advertising partners to serve you with relevant targeted advertisements based on your interests and profiles held by us or our advertising partners and ad networks. You might see these advertisements on our sites or on other sites you visit. These technologies may collect information about you on our site, as well as third-party sites, and these technologies may be used to associate the information collected across sites and contexts. If you disable these technologies, you will still see ads, but they may be less relevant.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theregencyballroom.com/events/detail?event_id=1520023",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-24T10:42:11.416886Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-07-28T16:02:20.062979Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_c6f4144562eb",
              "venue_id": "venue_ivy_room",
              "title": "Angela Laflamme & Bela Ruino",
              "event_time": "Sunday Sep 27 6:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-27T18:00:00",
              "event_date": "2026-09-27",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "ivy room presents - genre - blues, goth, rock, dark-cabaret, noir-pop",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/193485",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-08-15T10:22:49.486130Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a8aa45a29b01",
              "venue_id": "venue_924_gilman",
              "title": "Gilman Benefit",
              "event_time": "sep 27 7pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-09-27T19:00:00",
              "event_date": "2026-09-27",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "A fundraising concert event featuring live music to support the volunteer-run 924 Gilman collective.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20/$25",
              "url": "http://maps.google.com/?q=$$20/$25",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-09-02T11:13:59.237531Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_1bdb45382113",
              "venue_id": "venue_the_warfield",
              "title": "Lucki, Sk8star",
              "event_time": "sep 27 8pm",
              "venue_name": "The Warfield",
              "event_start": "2026-09-27T20:00:00",
              "event_date": "2026-09-27",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "6+; no ins/outs",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_warfield|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_94474e4a7707",
              "venue_id": "venue_great_american_music_hall",
              "title": "Melt-Banana",
              "event_time": "sep 27 8pm",
              "venue_name": "Great American",
              "event_start": "2026-09-27T20:00:00",
              "event_date": "2026-09-27",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "all ages; mosh pit warning",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$28/$32",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_cc73f063f0be",
              "venue_id": "venue_4_star_theater",
              "title": "Eraser, Blue Zero",
              "event_time": "sep 27 8pm",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-27T20:00:00",
              "event_date": "2026-09-27",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "The Bay Area has long been a fertile landscape for arty DIY rock innovators to fashion together some of the best music to come out of the US- the local musicians pushing the boundaries of pop and counterculture aesthetics. In the middle of this creative oasis you’ll find multi-instrumentalist songwriter Chris Natividad making iridescent waves with his many projects including Marbled Eye, Public Interest, Aluminum, and now- Blue Zero. What started as a few outlier demos cultivated in Chris’ studio has now fully bloomed into a live band featuring members Lauren Melton of SUCKER and Rick Altieri of Blue Ocean, and a forthcoming LP titled Colder Shade Blue. The songs on the record harmoniously tow the line of warm and meditative artrock and fuzzy, damaged grunge a là Lily’s, Sonic Youth, and My Bloody Valentine. While Blue Zero pays homage to their predecessors, the music is wholly unique with its mesmerizing big hooks and blown-out radiating psychedelic atmosphere- a tonal yin yang.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/live-music-fog-lamp-eraser",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_36b835add783",
              "venue_id": "venue_pier_80",
              "title": "Portola Music Festival",
              "event_time": "sep 27 1pm",
              "venue_name": "Pier 80",
              "event_start": "2026-09-27T13:00:00",
              "event_date": "2026-09-27",
              "venue_address": "401 Cesar Chavez St, San Francisco, CA 94124",
              "description": "21+; Portola Music Destival; no ins/outs",
              "event_types": [
                "dj_party",
                "electronic",
                "festival",
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_pier_80|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_255540993f9f",
              "venue_id": "venue_z_space",
              "title": "King Lear",
              "event_time": "September 27 @ 7:00 pm - 10:00 pm",
              "venue_name": "Z Space",
              "event_start": "2026-09-27T19:00:00",
              "event_date": "2026-09-27",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "Directed by Michael Socrates Moran Music composed by Paul Dresher Oakland Theater Project and New Performance Traditions are thrilled to present their most ambitious co-production to date: a bold, music-infused […]",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://dresherensemble.org/event/king-lear-by-william-shakespeare/2026-09-27/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-08-17T14:41:50.422468Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_paul_dresher_ensemble",
                  "source_name": "Paul Dresher Ensemble",
                  "fetched_at": "2026-08-26T10:26:36.842099Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_z_space|2026-09-27",
              "run_id": "run_e3a81a6d4f91",
              "run_label": "King Lear, Sep 25 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_24ac5e0f8107",
              "venue_id": "venue_the_independent",
              "title": "HOT CHIP DJ SET",
              "event_time": "9/27/2026 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-27T21:00:00",
              "event_date": "2026-09-27",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List Hot Chip DJ Set Sun, Sep 27 Doors: 9:00 pm | Show: 9:00 pm 18 and up Please note - there is a delivery delay set for 2 weeks prior to show. Buy Tickets Share + Google Calendar Related Events The Emo Night Tour Sep 5 Buy Tickets Cut Chemist Sep 19 Buy Tickets Artists Hot Chip DJ Set Back to Event List Upcoming Events Wax + DJ Hoppa Fri Aug 28 Brenn! Sat Aug 29 Tonic Walter Fri Sep 4 The Emo Night Tour Sat Sep 5 PawPaw Rod Tue Sep 8 Kevin Atwater Wed Sep 9 Rules Thu Sep 10 Arlo Fri Sep 11 BL3SS – 360 Set – North American Tour 2026 Sat Sep 12 Towa Bird Sun Sep 13 The Tear Garden (The Legendary Pink Dots & cEvin Key) Tue Sep 15 Mustard Service Thu Sep 17",
              "event_types": [
                "dj_party"
              ],
              "price_info": "ON SALE 8.20",
              "url": "https://www.theindependentsf.com/tm-event/hot-chip-dj-set/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-08-20T10:31:03.790732Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_053b6de71fa1",
              "venue_id": "venue_the_monarch",
              "title": "Silva Bumpa",
              "event_time": "27 September 2026 10:00 PM",
              "venue_name": "The Monarch",
              "event_start": "2026-09-27T22:00:00",
              "event_date": "2026-09-27",
              "venue_address": "101 6th St, San Francisco, CA 94103",
              "description": "Silva Bumpa's sounds combine UK bass grit with the singalong bounce of club classics, bottling mid-noughties bassline.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Buy Ticket",
              "url": "https://www.eventbrite.com/e/silva-bumpa-tickets-1998116550390",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monarch",
                  "source_name": "The Monarch",
                  "fetched_at": "2026-08-20T12:12:16.271150Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monarch|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d37610d6e9dd",
              "venue_id": "venue_sap_center",
              "title": "Yandel - Sinfónico USA Tour 2026",
              "event_time": "2026-09-27T20:00:00",
              "venue_name": "SAP Center",
              "event_start": "2026-09-27T20:00:00",
              "event_date": "2026-09-27",
              "venue_address": "525 W Santa Clara St, San Jose, CA 95113",
              "description": "Reggaeton superstar Yandel brings his Sinfónico USA Tour 2026 to SAP Center.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.sapcenter.com/events/detail/yandel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sap_center",
                  "source_name": "SAP Center",
                  "fetched_at": "2026-08-20T12:59:28.269789Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sap_center|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_f5578bd1958b",
              "venue_id": "venue_the_riptide",
              "title": "Sunday Supper Sessions",
              "event_time": "Sunday, September 27 7:30 PM - 10:30 PM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-27T19:30:00",
              "event_date": "2026-09-27",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "About The Sunday Supper Sessions:\nThe Sunday Supper Sessions is a monthly concert series hosted by Charlie Kaupp (of The Treacherous French) at The Riptide in San Francisco every fourth Sunday of the month from 7:30-10pm. The series is intended to showcase a new pair (or trio) of musical acts each month. Acts span all genres and styles, but are focused on solo, duos, and trios with small stage footprints.\n\nStarting August 2026, we'll have The Pony Express pop-up selling food out front starting at 5, until they run out.\n\nAll events are free, but they are also 21+ inside (sorry kids!)",
              "event_types": [
                "live_music"
              ],
              "price_info": "free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5bc69b96d37e",
              "venue_id": "venue_catalyst_sc",
              "title": "Sleep",
              "event_time": "Sep 27, 2026 Doors: 7 pm Show: 8 pm",
              "venue_name": "The Catalyst",
              "event_start": "2026-09-27T19:00:00",
              "event_date": "2026-09-27",
              "venue_address": "1011 Pacific Ave, Santa Cruz, CA 95060",
              "description": "(((folkYEAH!))) Presents",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://catalystclub.com/event/sleep/the-catalyst/santa-cruz-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_catalyst_sc",
                  "source_name": "The Catalyst",
                  "fetched_at": "2026-08-21T16:29:43.952279Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_catalyst_sc|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1ea7d6c268a8",
              "venue_id": "venue_valley_center",
              "title": "Berlioz, Suk & Mozart",
              "event_time": "2026-09-27T15:00:00",
              "venue_name": "Valley Center for Performing Arts",
              "event_start": "2026-09-27T15:00:00",
              "event_date": "2026-09-27",
              "venue_address": "3500 Mountain Blvd, Oakland, CA 94602",
              "description": "The Prometheus Symphony Orchestra opens its season with Hector Berlioz's La Damnation de Faust Suite, Op. 24, Joseph Suk's Fantastické Scherzo, Op. 25, and Wolfgang Amadeus Mozart's Adagio and Fugue in C Minor, K. 546.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Free (donations accepted; tickets required)",
              "url": "https://www.prometheussymphony.org/current/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_prometheus_symphony",
                  "source_name": "Prometheus Symphony",
                  "fetched_at": "2026-08-22T10:56:53.860286Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_valley_center|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_93ef38c88021",
              "venue_id": "venue_crepe_place",
              "title": "Grateful Sunday with Matt Hartle",
              "event_time": "2026-09-27",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-27T20:00:00",
              "event_date": "2026-09-27",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "https://thecrepeplace.com/shows-list/grateful-sunday-with-matt-hartle-and-the-hartle-gold-band-6-to-9pm-on-the-garden-stage-10-at-the-door",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e70efc0cbe6d",
              "venue_id": "venue_abbott_square",
              "title": "SALSA BY THE SEA AFTERPARTY",
              "event_time": "Sunday, September 27, 2026 6:00 PM - 9:00 PM",
              "venue_name": "Abbott Square Market",
              "event_start": "2026-09-27T18:00:00",
              "event_date": "2026-09-27",
              "venue_address": "725 Front St, Santa Cruz, CA 95060",
              "description": "Every Sunday evening join us for the Salsa by The Sea Afterparty. Featuring various local DJ’s.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.abbottsquaremarket.com/events/salsa-by-the-sea-afterparty-1-jb89k-k8j3p-5ace6-sm7rs-83agk-bl58g",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_abbott_square",
                  "source_name": "Abbott Square Market",
                  "fetched_at": "2026-08-22T12:39:51.694804Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_abbott_square|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4e5f67603118",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Sibelius, Higdon, and Bartók",
              "event_time": "SUNDAY SEP 27\n4:00 PM",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-27T16:00:00",
              "event_date": "2026-09-27",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Sunday Sep 27\n    4:30 PM                                            \n\n                                                \n                                                    Intermission Reception\n                                                   \n                                                                                                     \n                                                2026/27 Season, Donor Events \n                                                Thank you $1000+ donor and VIP supporters! Please join us for a Donor Reception in the Encore Room, 3rd floor, Lesher Center for the Arts. Grab drinks to-go in the 30 minutes before the show, and mingle with Symphony VIPs at intermission.\n                                                Details",
              "event_types": [
                "classical",
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.californiasymphony.org/shows/sibelius-higdon-and-bartok/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_california_symphony",
                  "source_name": "California Symphony",
                  "fetched_at": "2026-08-22T13:32:57.699464Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_c08a77de65fe",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "40th Anniversary Opening Dinner",
              "event_time": "SUNDAY SEP 27\n6:00 PM",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-27T18:00:00",
              "event_date": "2026-09-27",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "Sunday Sep 27\n    6:00 PM                                            \n\n                                                \n                                                    40th Anniversary Season Opening Celebration Dinner\n                                                   \n                                                     \n                                                          \n\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\t\n\t\t\n\t\n                                                                                                     \n                                                 \n                                                A Special Event Benefitting the California Symphony\n                                                Details",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.californiasymphony.org/shows/season-opening-dinner/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_california_symphony",
                  "source_name": "California Symphony",
                  "fetched_at": "2026-08-22T13:32:57.699464Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_5aa7a8c67581",
              "venue_id": "venue_act_theater",
              "title": "Alfred Hitchcock's North by Northwest",
              "event_time": "2026-09-27",
              "venue_name": "ACT Theater",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "\"I am thrilled, excited and perhaps a little apprehensive to bring the iconic North by Northwest home to the US! I just hope that American audiences will love it as much as our British audiences did. What I am not apprehensive about is bringing its message; one of nations coming together in peace and friendship to make the world a better place. I think we can all raise a glass to that! I am also itching to return to A.C.T. and San Francisco, a piece of my heart will always remain in California and I cannot wait to return to your beautiful theatre, vivid audience and magic state.\" —Emma Rice",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-08-22T13:54:28.481304Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_act_theater|2026-09-27",
              "run_id": "run_8f5d72a961cd",
              "run_label": "Alfred Hitchcock's North by Northwest, Sep 22 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_b5dc7cc0408f",
              "venue_id": "venue_verdi_club",
              "title": "IHeartMambo",
              "event_time": "2026-09-27T19:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-09-27T19:00:00",
              "event_date": "2026-09-27",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance",
                "community"
              ],
              "price_info": "",
              "url": "https://www.verdiclub.net/events-calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-08-22T14:55:24.428239Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_verdi_club|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7ac9d1fc5ee7",
              "venue_id": "venue_dance_mission",
              "title": "Encounter",
              "event_time": "2026-09-27 2026-09-26",
              "venue_name": "Dance Mission Theater",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "3316 24th St, San Francisco, CA 94110",
              "description": "A dynamic dance theater production created by Aparna Sindhoor, Anil Natyaveda, and S M Raju blending classical Indian dance, martial arts, and storytelling.",
              "event_types": [
                "dance",
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dance_mission",
                  "source_name": "Dance Mission Theater",
                  "fetched_at": "2026-08-22T15:02:23.569813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_dance_mission|2026-09-27",
              "run_id": "run_e9aecba7c663",
              "run_label": "Sindhoor Natya – Navarasa presents ENCOUNTER, Sep 25 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bac95ec757cd",
              "venue_id": "venue_sc_beach_boardwalk",
              "title": "Fiesta en la Playa",
              "event_time": "2026-09-27",
              "venue_name": "Santa Cruz Beach Boardwalk",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "400 Beach St, Santa Cruz, CA 95060",
              "description": "Come celebrate the vibrant traditions of the Latino community all weekend long with mariachi, folklórico dancers, a free beach concert on Saturday, and Salsa by the Sea on Sunday.",
              "event_types": [
                "live_music",
                "dance",
                "community",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sc_beach_boardwalk",
                  "source_name": "Santa Cruz Beach Boardwalk",
                  "fetched_at": "2026-08-22T16:30:12.819028Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sc_beach_boardwalk|2026-09-27",
              "run_id": "run_3a050a0291ec",
              "run_label": "Fiesta en la Playa, Sep 26 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9c58cd1ca09d",
              "venue_id": "venue_park_hall_ben_lomond",
              "title": "The Addams Family",
              "event_time": "2026-09-27",
              "venue_name": "Park Hall",
              "event_start": "2026-09-27T20:00:00",
              "event_date": "2026-09-27",
              "venue_address": "9400 Mill St, Ben Lomond, CA 95005",
              "description": "The Addams Family theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://mctshows.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_park_hall_ben_lomond",
                  "source_name": "Park Hall",
                  "fetched_at": "2026-08-22T19:38:45.882590Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_park_hall_ben_lomond|2026-09-27",
              "run_id": "run_8d42d89c5c45",
              "run_label": "The Addams Family, Sep 18 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_776e071ea5e5",
              "venue_id": "venue_park_hall_ben_lomond",
              "title": "Rumors",
              "event_time": "2026-09-27T14:00:00",
              "venue_name": "Park Hall",
              "event_start": "2026-09-27T14:00:00",
              "event_date": "2026-09-27",
              "venue_address": "9400 Mill St, Ben Lomond, CA 95005",
              "description": "A comedy by Neil Simon, directed by Marnae Taylor. Charley, the deputy mayor of New York, and his wife Myra Brock, on the evening of their tenth wedding anniversary, had an elegant dinner party which goes histrically wrong. Four couples arrive expecting a night of sophistication—only to discover the host has had a terrible mishap and his wife is missing. Desperate to cover up the scandal, they spin wilder and wilder stories, turning confusion into chaos as rumors fly faster than champagne corks. With a niche fit, a whiplash, mitigated jealousy, a recurring back spasm, comedy ensues. Brimming with razor-sharp wit, slapstick mishaps, and Simon's trademark charm, Rumors is a laugh-out-loud comedy that proves the truth may be the funniest thing of all.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "",
              "url": "https://mctshows.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_park_hall_ben_lomond",
                  "source_name": "Park Hall",
                  "fetched_at": "2026-08-22T19:38:45.882590Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_park_hall_ben_lomond|2026-09-27",
              "run_id": "run_b17f8875ebd5",
              "run_label": "Rumors, Sep 18 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_29ec34c73095",
              "venue_id": "venue_halcyon",
              "title": "Rated X & Nocturnal Extreme",
              "event_time": "2026/09/27 Sun: Sep 27 (10pm-4am)",
              "venue_name": "Halcyon",
              "event_start": "2026-09-27T22:00:00",
              "event_date": "2026-09-27",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "circuit house, tech house",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$96.60-117.84",
              "url": "https://wl.eventim.us/event/2-party-pass-RATED-X-and-Nocturnal-Extreme/700997?afflky=KyMartinezEvents",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_47ef5a9a12f2",
              "venue_id": "venue_beauregard_vineyards",
              "title": "Fall Wine Club Pickup Party",
              "event_time": "2026-09-27 Sunday, September 27, 2026",
              "venue_name": "Beauregard Vineyards",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "10 Pine Flat Rd, Santa Cruz, CA 95060",
              "description": "Celebrate the autumn season with fellow members while picking up your seasonal wine allocation and enjoying tastings among the redwoods.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_beauregard_vineyards",
                  "source_name": "Beauregard Vineyards",
                  "fetched_at": "2026-08-22T22:01:13.013350Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_beauregard_vineyards|2026-09-27",
              "run_id": "run_19d93cdde59e",
              "run_label": "Fall Wine Club Pickup Party, Sep 26 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ba90e84d75d9",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Remedy 7",
              "event_time": "Sunday September 27\n          2026 2:00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-27T14:00:00",
              "event_date": "2026-09-27",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Friends of Tim Benetti and Bottom Of The Hill  present... - Rock",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20",
              "url": "http://www.bottomofthehill.com/20260927.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-08-24T10:19:28.171858Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3a8f8c35e720",
              "venue_id": "venue_orpheum_theater",
              "title": "BLUEY'S BIG PLAY",
              "event_time": "Sep 27, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "This delightful theatrical adaptation of the Emmy Award-winning children's television series features brilliantly created puppets and an original story by creator Joe Brumm. Families can join Bluey and her family in their first live stage show packed with music and laughter.",
              "event_types": [
                "theater"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/blueys-big-play-27-september-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-08-24T10:43:17.229727Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_013952b850e6",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Little Shop of Horrors",
              "event_time": "2026-09-27",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Book & Lyrics by Howard Ashman, Music by Alan Menken. Based on the film by Roger Corman, Screenplay by Charles Griffith. Directed by Ben Villegas Randle, Musical Direction by Jad Bernardo, Choreography by Leslie Waggoner",
              "event_types": [
                "theater",
                "live_music"
              ],
              "price_info": "",
              "url": "https://nctcsf.org/event/little-shop/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-08-26T11:06:39.262369Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-09-27",
              "run_id": "run_5315ef200ae4",
              "run_label": "Little Shop of Horrors, Sep 12 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_96a1aa6f731c",
              "venue_id": "venue_guild_theatre",
              "title": "Samantha Fish",
              "event_time": "SEP\n27\n8:00 PM",
              "venue_name": "Guild Theatre",
              "event_start": "2026-09-27T20:00:00",
              "event_date": "2026-09-27",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "DOORS OPEN: 7:00 PM • SHOW: 8:00 PM",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.guildtheatre.com/shows/samantha-fish-28-sep",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-08-28T10:40:15.787828Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_guild_theatre|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fcfb11314597",
              "venue_id": "venue_the_freight__salvage",
              "title": "Maestro Nayan Ghosh & Ishaan Ghosh",
              "event_time": "2026-09-27T18:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-27T18:00:00",
              "event_date": "2026-09-27",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Login View Cart Time remaining: 00:00 Activate Code Your cart has expired Your order contained expired items and your shopping cart has been emptied. Close Details Sunday, September 27, 2026 7:00PM Maestro Nayan Ghosh and Ishaan Ghosh \"Synergy\" 2026 Maestro Nayan Ghosh Pandit Nayan Ghosh Born in 1956, Pandit Nayan Ghosh is an artist with a unique musical dimension. He is acclaimed worldwide for being the only maestro with a superlative command on two diverse instruments – the tabla and the sitar. Artistic brilliance, rich repertoire and a magnificence of tone are the hallmarks of his performances. Having received intensive and extensive training in tabla, sitar and vocal from his illustrious father, the renowned tabla maestro and guru, Padmabhushan Pt. Nikhil Ghosh, Nayan Ghosh is respected among musicians and loved by discerning listeners alike for his innate artistry and emotive musical depth in his performances. He also received invaluable guidance from his father’s guru, the ‘Mt. Everest of Tabla’ Ustad Ahmed Jan Thirakwa. Nayan’s elder uncle was the legendary and pioneer flautist Pandit Pannalal Ghosh, the ‘Father of North Indian classical flute’. Since the 1990’s he has also received additional guidance in sitar from the eminent sarod maestro Pandit Buddhadev Dasgupta. Recognised in India as an eminent tabla soloist, known for his authentic and traditional Tabla Baaj, Nayan Ghosh has offered eloquent accompaniments to stalwarts like Pandit Ravi Shankar, Ustad Vilayat Khan, Pandit Nikhil Banerjee, Pandit Jasraj, Pandit Shivkumar Sharma, Ustad Amjad Ali Khan, Ustad Salamat Ali Khan, Pandit Buddhadev Dasgupta, Ustad Munnawar Ali Khan, Ustad Rais Khan and a galaxy of eminent instrumentalists and vocalists. He has recorded with well-known labels like RAGA Records and India Archive Music of New York, BOL Records of San Francisco, ARION of France and other recording companies in India and abroad. Nayan Ghosh is also the recipient of the Achievement Award 1998, at the",
              "event_types": [
                "live_music",
                "indian_classical"
              ],
              "price_info": "$39/$44\n(INCLUDES ALL FEES)",
              "url": "https://secure.thefreight.org/16020/16021",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9008301b4a67",
              "venue_id": "venue_sfjazz_lab",
              "title": "THE ALAYA PROJECT",
              "event_time": "2026-09-27 6:00 PM",
              "venue_name": "SFJAZZ Lab",
              "event_start": "2026-09-27T18:00:00",
              "event_date": "2026-09-27",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "The Oakland-based band exploring the intersection of Carnatic Indian classical music with jazz and funk return to the Joe Henderson Lab with new music and material from their 2022 self-titled debut album. Made up of percussionist Rohan Krishnamurthy , saxophonist Prasant Radhakrishnan , and keyboardist Colin Hogan , the trio was formed in 2017 to perform at an UnderCover Presents concert in Berkeley honoring the 50th Anniversary of the Beatles’ immortal Sgt. Pepper’s Lonely Hearts Club Band , and was the perfect outlet for longtime friends Krisnamurthy and Radhakrishnan to meld their love of jazz with their extensive South Indian classical training. A Kalamazoo, Michigan native, Krishnamurthy is one of the leading lights of Carnatic music in the U.S. and a master of the mridangam — a double-headed drum that is the primary rhythm accompaniment in Carnatic music and is played by Krishnamurthy in this project in conjunction with the Western drum set. Phoenix-born Radhakrishnan is known to SFJAZZ audiences through his dynamic Indo-Jazz trio VidyA and has been a major force in Bay Area jazz since 2005. Hogan is a San Francisco native who came through the prestigious Berkeley High jazz program and works with Tommy Igoe, Jazz Mafia, and his brothers in the Hogan Brothers band.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/the-alaya-project/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_lab|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_4909070eaccc",
              "venue_id": "venue_sfjazz_miner",
              "title": "Marcus Miller: We Want Miles",
              "event_time": "2026-09-27 7:00 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-09-27T19:00:00",
              "event_date": "2026-09-27",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Among the great electric bassists in the history of the instrument, Marcus Miller is a jazz renaissance man. He was instrumental to Miles Davis’s resurgence in the 1980s and helps us celebrate Miles’s centennial with music from Davis’s landmark 1982 live double album We Want Miles , along with classic Miles compositions spanning from the 1950s right up to his final era of Tutu in 1986 and Amandla in 1989 both of which Marcus Miller composed and produced. He will be joined by other members of Miles Davis’s 1980s comeback band guitarist Mike Stern , saxophonist Bill Evans and percussionist Mino Cinelu . A wildly prolific studio musician and bandleader, Miller and his distinctive bass virtuosity have been heard on well over 500 sessions for a dizzying array of major artists including Dizzy Gillespie, Herbie Hancock, Wayne Shorter, and McCoy Tyner to Paul Simon, Aretha Franklin, and Luther Vandross. He first appeared with Davis on the trumpeter’s 1980 comeback The Man with the Horn and went on to produce and largely compose Davis’s three late 80s albums Tutu (1986), Music from Siesta (1987), and Amandla (1989). 1982’s double live We Want Miles is a document of Davis’s first live performances after his self-imposed six-year retirement, culled from recordings in Boston, New York, and Tokyo and featuring two versions of the now-classic tracks “Jean-Pierre,” “Back Seat Betty,” and the Gershwin standard “My Man’s Gone Now.”",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/marcus-miller-we-want-miles-centennial-celebration/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_8d8cc4ee6148",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Bay Area Queer Open Mic",
              "event_time": "2026-09-27 6:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-09-27T18:00:00",
              "event_date": "2026-09-27",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "A welcoming space for queer musicians and songwriters to share their work, connect, and build community. Performers can sign up online in advance, join as walk-ins, or be featured as a monthly Featured Artist.\n\n\nToan is an independent musician and songwriter whose work blends evocative lyricism with genre-fluid soundscapes. With a growing discography that spans introspective singles, lush demos, and collaborative tracks, Toan crafts music that invites listeners into emotional and sonic depth — balancing intimacy with expansive production.",
              "event_types": [
                "live_music",
                "community"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/4al6bw7cf7s5e88c7ncg893jzbpatx",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-08-28T14:05:33.197491Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d8e3a1a22e18",
              "venue_id": "venue_temescal_arts_center",
              "title": "Improvisation Workshop - First Tuesdays",
              "event_time": "2026-09-27T20:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-09-27T20:00:00",
              "event_date": "2026-09-27",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Improvisation is the key - hosted by Lewis Jordan. Open Workshop and Playground in free improvisation. Spontaneously Assembled Small Groups will collaborate. Come to listen, to be heard, to see, to move. Inviting musicians, poets, dancers, to a non-hierarchical setting to improvise together. Spontaneously composing or conducting, we'll be on a quest for fire.",
              "event_types": [
                "workshop",
                "experimental"
              ],
              "price_info": "Donations encouraged",
              "url": "https://www.temescalartcenter.org/tacmusic.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-08-28T14:09:19.773505Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-09-27",
              "run_id": "run_16a4ae4ccea6",
              "run_label": "Improvisation Workshop - First Tuesdays, Sep 1 – Dec 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2d37e4564eab",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-09-27",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-09-27",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e0ed6ed029fc",
              "venue_id": "venue_odc_theater",
              "title": "Fall for Art: ODC at di Rosa",
              "event_time": "9/27 11:00AM",
              "venue_name": "ODC Theater",
              "event_start": "2026-09-27T11:00:00",
              "event_date": "2026-09-27",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "ODC's annual fundraising event takes place at the di Rosa Center for Contemporary Art in Napa, bringing together art, nature, and movement. Guests will enjoy site-specific dance performances by ODC/Dance and the ODC Dance Jam, followed by an outdoor farm-to-table luncheon and a live auction.",
              "event_types": [
                "art",
                "festival"
              ],
              "price_info": "",
              "url": "https://odc.dance/ffa",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-08-28T16:07:20.992529Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cb85a69d97e0",
              "venue_id": "venue_sfmoma",
              "title": "Crochet Jam",
              "event_time": "Sunday, Sep 27, 2026 | 10 a.m.–1 p.m.",
              "venue_name": "SFMoma",
              "event_start": "2026-09-27T10:00:00",
              "event_date": "2026-09-27",
              "venue_address": "151 Third St, San Francisco, CA 94103",
              "description": "Ramekon O’Arwisters started Crochet Jam in 2012. His community art event is rooted in a cherished childhood memory that’s steeped in the African American tradition of weaving in a calm and nonjudgmental environment without rules or limitations. O’Arwisters’s presentation In Between is currently on view in the Koret Education Center at SFMOMA. He was an artist-in-residence at the de Young Museum, the Djerassi Resident Artists Program, and the Vermont Studio Center. Grants and awards include Artadia, the San Francisco Foundation, the San Francisco Arts Commission Cultural Equity Program, the Eureka Fellow awarded by the Fleishhacker Foundation, and a Pollack-Krasner Foundation Grant. His work has been featured in the LA Times, San Francisco Chronicle, 7×7 Magazine, Artnet, San Francisco Examiner, and Brian Boucher’s Daily Dispatch . Founded in 1976 by Anne Marie Theilen and based in San Francisco’s Bayview neighborhood, SCRAP works at the intersection of the arts, arts education, and the environment. SCRAP’s mission is to make the materials and methods of art making accessible to everyone, helping people transform everyday objects into creative projects that fuel the human spirit, support community vibrancy, and reinforce environmental awareness. At the time of its founding, Theilen oversaw a program that placed professional artists in schools. Unfortunately, there was no budget for materials, so the artists struggled to find supplies. Meanwhile, many local businesses were filling landfills with perfectly usable materials like paper with incorrect logos, fabric samples, industrial discards, and product overruns. Recognizing an opportunity to solve two problems with one solution, Theilen founded SCRAP in 1976. She teamed up with Ruth Asawa, who became the organization’s first board president. Each year, SCRAP’s programs serve over 33,000 people — all while diverting over 200 tons of waste from landfills.",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.sfmoma.org/event/family-studio-crochet-jam-with-ramekon-oarwisters/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sfmoma",
                  "source_name": "SFMoma",
                  "fetched_at": "2026-08-28T16:39:30.693329Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfmoma|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_57581e297c1e",
              "venue_id": "venue_the_pear_theatre",
              "title": "Private Lives",
              "event_time": "2026-09-27",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "In this sparkling comedy of manners, two former lovers find themselves honeymooning with new spouses in adjoining rooms—only to discover that their passion for each other hasn't dimmed.",
              "event_types": [
                "theater"
              ],
              "price_info": "$46.00 - $48.00",
              "url": "https://www.thepear.org/whats-playing-now",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-08-28T18:26:07.122240Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-09-27",
              "run_id": "run_d1a58de7893a",
              "run_label": "Private Lives, Sep 25 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a80d13199440",
              "venue_id": "venue_audio",
              "title": "AZZECCA (Portola Week)",
              "event_time": "2026-09-27T22:00:00",
              "venue_name": "Audio",
              "event_start": "2026-09-27T22:00:00",
              "event_date": "2026-09-27",
              "venue_address": "316 11th St, San Francisco, CA 94103",
              "description": "Goldenvoice presents AZZECCA live at Audio for Portola Week 2026.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://audiosf.com/event/azzecca-portola-week-09-27-26/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audio",
                  "source_name": "Audio",
                  "fetched_at": "2026-08-28T19:46:29.566846Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audio|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_3cd54749f8f5",
              "venue_id": "venue_exploratorium",
              "title": "Daytime Members-Only Hours",
              "event_time": "2026-09-27",
              "venue_name": "Exploratorium",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "Pier 15, San Francisco, CA 94111",
              "description": "Please consider joining us today ! Members are the backbone of our organization and help ensure the continuity of our mission to create inquiry-based experiences that transform learning worldwide. We can’t wait to see you at the museum.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.exploratorium.edu/visit/calendar/member-hours",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_exploratorium",
                  "source_name": "Exploratorium",
                  "fetched_at": "2026-08-28T20:59:56.326527Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_exploratorium|2026-09-27",
              "run_id": "run_e38dfc952011",
              "run_label": "Daytime Members-Only Hours, Aug 30 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1cd803023cc6",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "Amy Grant",
              "event_time": "2026-09-27T20:00:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-09-27T20:00:00",
              "event_date": "2026-09-27",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "Concert performance by multi-Grammy-winning singer-songwriter Amy Grant with special guest Franni Cash.",
              "event_types": [
                "live_music"
              ],
              "price_info": "From $76",
              "url": "https://www.palaceoffinearts.org/event/amy-grant/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-08-28T21:32:02.715078Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_422990f81d5d",
              "venue_id": "venue_the_monkey_house",
              "title": "WYS",
              "event_time": "09/27/2026",
              "venue_name": "The Monkey House",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "1638 University Avenue, Berkeley, CA",
              "description": "Join performers and listeners for 'What's Your Story' (WYS) at The Monkey House. The event brings people together for an engaging evening centered on personal narratives and live expression.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monkey_house",
                  "source_name": "The Monkey House",
                  "fetched_at": "2026-08-28T21:37:06.591184Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monkey_house|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fb277975cbc5",
              "venue_id": "venue_levis_stadium",
              "title": "ARIZONA CARDINALS VS. SAN FRANCISCO 49ERS",
              "event_time": "2026-09-27T13:05:00",
              "venue_name": "Levis Stadium",
              "event_start": "2026-09-27T13:05:00",
              "event_date": "2026-09-27",
              "venue_address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
              "description": "The San Francisco 49ers host division rivals the Arizona Cardinals in a high-stakes NFC West NFL clash at Levi's Stadium.",
              "event_types": [
                "sports"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://levisstadium.com/event/cardinals-vs-49ers-week-3-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_levis_stadium",
                  "source_name": "Levis Stadium",
                  "fetched_at": "2026-08-28T23:07:52.237656Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_levis_stadium|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ed58bc5a77e0",
              "venue_id": "venue_rhythmix",
              "title": "The Locals: Opening Reception",
              "event_time": "2026-09-27T18:00:00",
              "venue_name": "Rhythmix",
              "event_start": "2026-09-27T18:00:00",
              "event_date": "2026-09-27",
              "venue_address": "2513 Blanding Ave, Alameda, CA 94501",
              "description": "Opening reception for \"The Locals\" exhibit at K Gallery. Exhibit dates listed as September 11 to October 25, 2026.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://www.rhythmix.org/upcoming-exhibits/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rhythmix",
                  "source_name": "Rhythmix",
                  "fetched_at": "2026-08-28T23:14:01.025318Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rhythmix|2026-09-27",
              "run_id": "run_566a8f02098a",
              "run_label": "The Locals: Opening Reception, Sep 11 – Oct 25",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_93975003b821",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-09-27",
              "venue_name": "De Young",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-27",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_54032649ca8d",
              "venue_id": "venue_punch_line",
              "title": "YOUR NEXT COMIC - A NEW FACES SHOWCASE",
              "event_time": "Sep 27, 2026 4:00 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-27T16:00:00",
              "event_date": "2026-09-27",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "A comedy showcase spotlighting a fresh roster of up-and-coming stand-up talents performing their best material.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/your-next-comic-a-new-faces-san-francisco-california-09-27-2026/event/1C0064FBEA737A97",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b4db93c936c4",
              "venue_id": "venue_punch_line",
              "title": "S. F. COMEDY SHOWCASE",
              "event_time": "Sep 27, 2026 7:00 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-27T19:00:00",
              "event_date": "2026-09-27",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "This long-running weekly showcase at the Punch Line features a dynamic lineup of the San Francisco Bay Area's best up-and-coming and established stand-up comedians.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/s-f-comedy-showcase-san-francisco-california-09-27-2026/event/1C0064BDE96E1E5F",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_25122f4de324",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "Really Funny Comedians",
              "event_time": "Sun Sep 27, 2026 7:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-09-27T19:00:00",
              "event_date": "2026-09-27",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "A lineup of top-tier local and touring stand-up comedians take the stage for a night of non-stop laughs at Cobb's Comedy Club.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/really-funny-comedians-who-happen-to-san-francisco-california-09-27-2026/event/1C0064FC027E3E07",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1a03196a43e0",
              "venue_id": "venue_shapeshifters",
              "title": "Gravitational Lensing: Feminist Film Dialogues",
              "event_time": "2026-09-27",
              "venue_name": "Shapeshifters",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "Program 17: Family Portraits/Relational Exercises includes a spectrum of diaristic films—from uncanny documentary to autobiographical re-enactments—that manifest different ways filmmakers choose to represent their relationships to family and, more broadly, to home (both literal and conceptual) through cinematic language.",
              "event_types": [
                "film"
              ],
              "price_info": "San Francisco Cinematheque",
              "url": "https://sfcinematheque.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shapeshifters",
                  "source_name": "Shapeshifters",
                  "fetched_at": "2026-08-30T10:04:33.112973Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-09-27",
              "run_id": "run_8afbca984fe1",
              "run_label": "Gravitational Lensing: Feminist Film Dialogues, Sep 9 – Nov 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ff4f60be5406",
              "venue_id": "venue_yoshis",
              "title": "ISAIAH COLLIER: ‘COLLIER PLAYS COLTRANE’",
              "event_time": "September 27, 2026 - 7:00 PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-27T19:00:00",
              "event_date": "2026-09-27",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "ONE OF THE MOST EXCITING VOICES IN CONTEMPORARY JAZZ",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$39 - $79",
              "url": "https://yoshis.com/events/buy-tickets/isaiah-collier/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_02f4d18f9b14",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "MODERN LOVE THE DAVID BOWIE EXPERIENCE",
              "event_time": "Sun Sep 27 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-27T19:00:00",
              "event_date": "2026-09-27",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "An Evening of The Music of David Bowie",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "21+, $20.00",
              "url": "https://wl.seetickets.us/event/modern-love-the-david-bowie-experience/698810?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-08-31T12:12:52.447528Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_667d2e8936bf",
              "venue_id": "venue_the_mighty",
              "title": "SG Lewis",
              "event_time": "Sun 27th September 10:00 PM",
              "venue_name": "The Great Northern",
              "event_start": "2026-09-27T22:00:00",
              "event_date": "2026-09-27",
              "venue_address": "119 Utah St, San Francisco, CA 94103",
              "description": "Goldenvoice presents: SG Lewis at the Great Northern for Portola Week 2026!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Buy Ticket",
              "url": "https://www.eventbrite.com/e/sg-lewis-the-great-northern-tickets-1998321213543",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_mighty",
                  "source_name": "The Great Northern",
                  "fetched_at": "2026-08-31T12:31:19.853580Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_mighty|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c2d109e226c9",
              "venue_id": "venue_presidio_theater",
              "title": "Selected Shorts: A Touch of Magic",
              "event_time": "SEP 27, 2026",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-09-27T19:30:00",
              "event_date": "2026-09-27",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "It’s story time . . . with a twist! Captivating short stories by both established and emerging writers take on new life when they are performed by stars of stage and screen in this riveting live lit experience. Don’t miss the hit public radio series and podcast in person for an evening of funny, moving, and unforgettable performances of great short stories by great actors. Selected Shorts is broadcast on over 150 radio stations and more than 100,000 downloads a week—now you can be front and center for the live experience.",
              "event_types": [
                "literary"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.presidiotheatre.org/show-details/selected-shorts-a-touch-of-magic",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-08-31T13:00:36.584647Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0e28e21a015b",
              "venue_id": "venue_piedmont_center",
              "title": "Oakland Art Association Gallery Show",
              "event_time": "2026-09-27T11:00:00",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-09-27T11:00:00",
              "event_date": "2026-09-27",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-08-31T13:20:32.956554Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-09-27",
              "run_id": "run_06f2ed2f4513",
              "run_label": "Oakland Art Association Gallery Show, Sep 26 – Nov 1",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3a8d8330cf32",
              "venue_id": "venue_piedmont_center",
              "title": "Resident Artist Showcase",
              "event_time": "2026-09-27T19:30:00",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-09-27T19:30:00",
              "event_date": "2026-09-27",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "Resident Artist Program showcase featuring Daniel Cilli, Marielle LeRoux, Rachel Nelson, Ricardo Olaya, Spencer Greene, and Liam Daley.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://ticketsignup.io/FestivalOpera",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-08-31T13:20:32.956554Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5a4a763c9ad5",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Celebrating German Culture",
              "event_time": "2026-09-27T13:00:00",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-09-27T13:00:00",
              "event_date": "2026-09-27",
              "venue_address": "San Francisco, CA 94118",
              "description": "The Golden Gate Park Band closes out the summer with a celebration of German culture in the Bay Area as part of SF German Day.",
              "event_types": [
                "classical",
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://sfrecpark.org/calendar.aspx?EID=17155",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-08-31T13:28:15.005369Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_7aada59928a1",
              "venue_id": "venue_california_theatre",
              "title": "Don Giovanni – Opera San José",
              "event_time": "Sep 27, 2026 @ 2:00pm",
              "venue_name": "California Theatre",
              "event_start": "2026-09-27T14:00:00",
              "event_date": "2026-09-27",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "| Today's Show: 2pm |  | Performances: Sept. 13-18 |\n \nBack after twelve years, Opera San José presents a new production of Don Giovanni, Mozart’s dark psychological thriller. Seduction, rebellion and…",
              "event_types": [
                "theater",
                "classical",
                "live_music"
              ],
              "price_info": "",
              "url": "https://events.timely.fun/jc0x91t0/event/78443818",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-08-31T13:56:21.266463Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_california_theatre|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5755fe9d1de2",
              "venue_id": "venue_boom_boom_room",
              "title": "Tea Pot Logic",
              "event_time": "2026-09-27T18:30:00",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-09-27T18:30:00",
              "event_date": "2026-09-27",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "Date: Thursday Night, September 24th Doors: 7:00PM Show: 8:30PM going ’til 1:30AM Tix Price: ~ No Cover Charge/ Admission Gratis ~ ** TEA POT LOGIC ** _______________ TEA POT LOGIC Teapot Logic is a Bay Area groove quartet who deliver a deep blend of funk, soul, jazz, and rock. With tight interplay and fearless improvisation, they move seamlessly between inventive originals and fresh takes on funk legends like James Brown, Grant Green, Herbie Hancock, and The Meters. Not only do they deliver deep instrumental grooves, they also mix in vocal-driven tunes from J.J. Cale, Jimmy Cliff, and the Jerry Garcia Band—bringing a soulful, familiar sound that keeps you dancing. At the heart of Teapot Logic’s sound is the natural chemistry between its four members: guitarist Michael Gleason, keyboardist Jaime Cintado, bassist Corbett Robinson, and drummer and vocalist Mo Sardella. Together, they move effortlessly from high-energy funk to deep, exploratory jams, keeping dancers moving, heads nodding, and jam fans fully locked in. Teapot Logic is psyched to hit the stage again at the Boom Boom Room—a spot with real history and a reputation for hosting some of the best funk, blues, and groove driven live music in the city. For a band built around deep pocket and feel, it’s exactly the place to lock into the groove and deliver a funky dance party. BAND MEMBER INFO: Mo Sardella — Drums/Vocals Micheal Gleason — Guitar Jaime Cintado — Keyboards Corbett Robinson — Bass Amazing show: _______________ ~ No Cover Charge/ Admission Gratis ~",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://boomboomroom.com/event/tea-pot-logic-funky-badass-no-cover-charge-3/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-08-31T14:05:05.078255Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_741a6d9a5835",
              "venue_id": "venue_boom_boom_room",
              "title": "Tea Pot Logic",
              "event_time": "2026-09-27T20:30:00",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-09-27T20:30:00",
              "event_date": "2026-09-27",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "Date: Thursday Night, September 24th Doors: 7:00PM Show: 8:30PM going ’til 1:30AM Tix Price: ~ No Cover Charge/ Admission Gratis ~ ** TEA POT LOGIC ** _______________ TEA POT LOGIC Teapot Logic is a Bay Area groove quartet who deliver a deep blend of funk, soul, jazz, and rock. With tight interplay and fearless improvisation, they move seamlessly between inventive originals and fresh takes on funk legends like James Brown, Grant Green, Herbie Hancock, and The Meters. Not only do they deliver deep instrumental grooves, they also mix in vocal-driven tunes from J.J. Cale, Jimmy Cliff, and the Jerry Garcia Band—bringing a soulful, familiar sound that keeps you dancing. At the heart of Teapot Logic’s sound is the natural chemistry between its four members: guitarist Michael Gleason, keyboardist Jaime Cintado, bassist Corbett Robinson, and drummer and vocalist Mo Sardella. Together, they move effortlessly from high-energy funk to deep, exploratory jams, keeping dancers moving, heads nodding, and jam fans fully locked in. Teapot Logic is psyched to hit the stage again at the Boom Boom Room—a spot with real history and a reputation for hosting some of the best funk, blues, and groove driven live music in the city. For a band built around deep pocket and feel, it’s exactly the place to lock into the groove and deliver a funky dance party. BAND MEMBER INFO: Mo Sardella — Drums/Vocals Micheal Gleason — Guitar Jaime Cintado — Keyboards Corbett Robinson — Bass Amazing show: _______________ ~ No Cover Charge/ Admission Gratis ~",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://boomboomroom.com/event/tea-pot-logic-funky-badass-no-cover-charge-3/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-08-31T14:05:05.078255Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e0aed35cb1ef",
              "venue_id": "venue_dna_lounge",
              "title": "BROOKE CANDY + VIOLET CHACHKI",
              "event_time": "Sun Sep 27",
              "venue_name": "DNA Lounge",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "Brooke Candy + Violet Chachki!\n\tTechno, Hard Techno, House, Hiphop, Pop! Folsom Street Faire\n\tAfter Party! Brooke Candy is an icon of underground music, fashion,\n\tand queer art, known for her sex-positive pop persona and bold,\n\tfuturistic style. After breaking out in Grimes' \"Genesis\"\n\tvideo, she went on to collaborate with artists including Charli XCX,\n\tSia, Diplo, Lizzo, Pussy Riot, SOPHIE, and Mykki Blanco. Beyond\n\tmusic, Candy has worked across fashion, visual art, and tattooing,\n\tcollaborating with institutions like the Brooklyn Museum and MOCA\n\tand brands including MAC Cosmetics and Diesel.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.dnalounge.com/calendar/2026/09-27.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dna_lounge",
                  "source_name": "DNA Lounge",
                  "fetched_at": "2026-08-31T14:15:19.938818Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2c6e55722e94",
              "venue_id": "venue_yerba_buena_center",
              "title": "GaHee Park: Behind the Curtain",
              "event_time": "2026-09-27",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Park invites us to peek behind the curtain, as she lays claim to her own power as a surrealist painter working across fantasy and intimacy.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/gahee-park-behind-the-curtain/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-27",
              "run_id": "run_5353f80886f6",
              "run_label": "GaHee Park: Behind the Curtain, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f54a19ea0f49",
              "venue_id": "venue_yerba_buena_center",
              "title": "Rael San Fratello: Prototypes",
              "event_time": "2026-09-27",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The most comprehensive presentation to date of the renowned Bay Area design studio Rael San Fratello.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/rael-san-fratello-prototypes-and-provocations/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-27",
              "run_id": "run_cd09bf07fb68",
              "run_label": "Rael San Fratello: Prototypes, Sep 25 – Jan 31",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a35df66182f2",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dread Scott: The Body Politic",
              "event_time": "2026-09-27",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The exhibition reflects Dread Scott’s longtime commitment to art that confronts political issues and interrogates American patriotism.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dread-scott-the-body-politic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-27",
              "run_id": "run_995f7fbf41ba",
              "run_label": "Dread Scott: The Body Politic, Sep 25 – Jan 31",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_94ae858670da",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dream",
              "event_time": "2026-09-27",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public art installation commissioned by YBCA and co-sponsored by San Francisco Public Works.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dream-public-art/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-27",
              "run_id": "run_b6a5ba4e8809",
              "run_label": "Dream, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1621f4347f6a",
              "venue_id": "venue_yerba_buena_center",
              "title": "SoMa Mahal Kita",
              "event_time": "2026-09-27",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A message of love for the SoMa neighborhood and community, inspired by weaving practices in the Phillipines and the colors of the Filipino flag.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/soma-mahal-kita-soma-i-love-you-ciriaco-sayoc/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-27",
              "run_id": "run_0c5141fff335",
              "run_label": "SoMa Mahal Kita, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2d9630db246a",
              "venue_id": "venue_yerba_buena_center",
              "title": "We Rooted in Flight",
              "event_time": "2026-09-27",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public artwork inviting passerbyers to join in the journey of collective flight",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/we-fly-for-a-liberated-we-we-rooted-in-flight/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-27",
              "run_id": "run_1d34139aedcf",
              "run_label": "We Rooted in Flight, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_be7ac2eea757",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-09-27T14:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-27T14:00:00",
              "event_date": "2026-09-27",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-27",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_342cf77ada29",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-09-27T18:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-27T18:00:00",
              "event_date": "2026-09-27",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-27",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 2,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_023c8002af4a",
              "venue_id": "venue_chase_center",
              "title": "Premium Suites",
              "event_time": "2026-09-27",
              "venue_name": "Chase Center",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "At Select-A-Suite on Thursday, September 17, 2026, not only will you have the opportunity to reserve your suites before they are released to the public, but attendees can also enjoy complimentary food and beverage tastings throughout the event, network with fans and business professionals, and have the opportunity to capture a photo with the Larry O'Brien Trophies.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://chasecenter.com/premium-experiences/premium-suites/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-08-31T17:38:13.687686Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-09-27",
              "run_id": "run_bed5be826f7c",
              "run_label": "Premium Suites, Sep 10 – Sep 27",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c1307f803e62",
              "venue_id": "venue_tupelo",
              "title": "Sunday Artist Series",
              "event_time": "Sunday September 27th 8:00PM - 12:00AM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-27T20:00:00",
              "event_date": "2026-09-27",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "A weekly live music dance party throw down hosted by Shawn Stein with an all-pro house band and different guest vocalists each week. This is the perfect way to cap off your weekend!",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_58c0f85c393f",
              "venue_id": "venue_city_lights_theater",
              "title": "Eureka Day",
              "event_time": "2026-09-27T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-09-27T19:30:00",
              "event_date": "2026-09-27",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "Sharp comedy by Jonathan Spector about a progressive Berkeley private school whose board is thrown into conflict during a mumps outbreak. Runs September 24 through October 18, 2026.",
              "event_types": [
                "theater"
              ],
              "price_info": "Single tickets go on sale June 1",
              "url": "https://cltc.org/event/eureka-day/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-09-02T10:09:11.201902Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-09-27",
              "run_id": "run_4a0cceaa9027",
              "run_label": "Eureka Day, Sep 24 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fae2d4e63c61",
              "venue_id": "venue_public_works",
              "title": "Overmono & Ben UFO",
              "event_time": "2026-09-27T22:00:00",
              "venue_name": "Public Works",
              "event_start": "2026-09-27T22:00:00",
              "event_date": "2026-09-27",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "Overmono (DJ Set) and Ben UFO with Kaytree and Erika b2b sfcowboy, presented by Goldenvoice.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$30+",
              "url": "https://www.axs.com/events/overmono-dj-set-ben-ufo-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-09-02T11:21:34.915442Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_public_works|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_30aaf2189a55",
              "venue_id": "venue_the_midway",
              "title": "Fatboy Slim",
              "event_time": "09/27/2026 10:00 PM",
              "venue_name": "The Midway",
              "event_start": "2026-09-27T22:00:00",
              "event_date": "2026-09-27",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "888 GARAGE ∙ INDOORS",
              "event_types": [
                "dj_party"
              ],
              "price_info": "LAST CHANCE",
              "url": "https://www.tixr.com/groups/midwaysfgv/events/goldenvoice-presents-fatboy-slim-203565",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-09-02T11:30:22.920988Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_aabce651a946",
              "venue_id": "venue_the_midway",
              "title": "Horsegirl, VTSS, Mgna Crrrta, Two Shell",
              "event_time": "09/27/2026 10:00 PM",
              "venue_name": "The Midway",
              "event_start": "2026-09-27T22:00:00",
              "event_date": "2026-09-27",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "RIDE ∙ INDOORS",
              "event_types": [
                "dj_party"
              ],
              "price_info": "TICKETS",
              "url": "https://www.tixr.com/groups/midwaysfgv/events/goldenvoice-presents-horsegiirl-vtss-mgna-crrrta-two-shell-203629",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-09-02T11:30:22.920988Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c7753cb8d00c",
              "venue_id": "venue_discretion_brewing",
              "title": "Heather/Nelsen Duo",
              "event_time": "2026-09-27",
              "venue_name": "Discretion Brewing",
              "event_start": "2026-09-27T17:30:00",
              "event_date": "2026-09-27",
              "venue_address": "2703 41st Ave Ste A, Soquel, CA 95073",
              "description": "Live Music 3-5pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_discretion_brewing",
                  "source_name": "Discretion Brewing",
                  "fetched_at": "2026-09-02T11:35:03.120781Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_discretion_brewing|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_696c688df3f7",
              "venue_id": "venue_madrone_art_bar",
              "title": "Monthly Drag Show",
              "event_time": "September 27 @ 6:00 pm - 8:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-27T18:00:00",
              "event_date": "2026-09-27",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Madrone x Oasis Arts Doors at 5pm, Show at 6pm More details to come!",
              "event_types": [
                "dance",
                "theater",
                "community"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/drag-show-madrone-x-oasis-arts/2026-09-27/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_064d870e4146",
              "venue_id": "venue_madrone_art_bar",
              "title": "SUNDAY B3 SESSIONS",
              "event_time": "September 27 @ 9:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-27T21:00:00",
              "event_date": "2026-09-27",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Sunday B3 Sessions Hosted by Adam Shulman and Mike Olmos Swinging soul jazz with a jam session to follow 9pm-Close No Cover",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No Cover",
              "url": "https://madroneartbar.com/event/spikes-open-mic-sunday-b3-sessions-2025-11-23/2026-09-27/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_103080fb51f0",
              "venue_id": "venue_black_cat",
              "title": "Stacy Dillard & Josh Evans 5tet",
              "event_time": "2026-09-27T19:00:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-27T19:00:00",
              "event_date": "2026-09-27",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n9:15 show: Bar @ 6:00, Doors @ 8:30\n\n\n\n\nHard-charging, deeply expressive modern jazz led by two fearless improvisers with serious New York fire.\n\n\n\n\nSaxophonist Stacy Dillard and trumpeter Josh Evans bring a powerhouse frontline to Black Cat for a four-night run built on swing, edge, and real-time invention. Dillard is known for a rich, commanding tone and a sound that stretches tradition without losing the feeling. Pianist Eric Reed called him “a true improviser,” while Roy Hargrove put it simply: “Stacy is a one-of-a-kind musician.”\n\n\n\n\nEvans brings his own deep fire to the bandstand, with a trumpet voice shaped by the lineage of Jackie McLean, Rashied Ali, Benny Golson, Cedar Walton, Christian McBride, Roy Hargrove, Gregory Porter, T.S. Monk, and many more. Together, Dillard and Evans lead a 5tet made for hard swing, sharp interplay, and the kind of late-night jazz energy that keeps the room on edge.\n\n\n\n\nBand Lineup:\n\nStacy Dillard, Saxophone\n\nJosh Evans, Trumpet\n\nGrant Levin, Piano\n\nDavid Ewell, Bass \n\nJaimeo Brown, Drums",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $30 , $40 , $50",
              "url": "https://blackcatsf.turntabletickets.com/shows/12859/2026-09-27",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d536274d4c6d",
              "venue_id": "venue_black_cat",
              "title": "Stacy Dillard & Josh Evans 5tet",
              "event_time": "2026-09-27T21:15:00",
              "venue_name": "Black Cat",
              "event_start": "2026-09-27T21:15:00",
              "event_date": "2026-09-27",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n9:15 show: Bar @ 6:00, Doors @ 8:30\n\n\n\n\nHard-charging, deeply expressive modern jazz led by two fearless improvisers with serious New York fire.\n\n\n\n\nSaxophonist Stacy Dillard and trumpeter Josh Evans bring a powerhouse frontline to Black Cat for a four-night run built on swing, edge, and real-time invention. Dillard is known for a rich, commanding tone and a sound that stretches tradition without losing the feeling. Pianist Eric Reed called him “a true improviser,” while Roy Hargrove put it simply: “Stacy is a one-of-a-kind musician.”\n\n\n\n\nEvans brings his own deep fire to the bandstand, with a trumpet voice shaped by the lineage of Jackie McLean, Rashied Ali, Benny Golson, Cedar Walton, Christian McBride, Roy Hargrove, Gregory Porter, T.S. Monk, and many more. Together, Dillard and Evans lead a 5tet made for hard swing, sharp interplay, and the kind of late-night jazz energy that keeps the room on edge.\n\n\n\n\nBand Lineup:\n\nStacy Dillard, Saxophone\n\nJosh Evans, Trumpet\n\nGrant Levin, Piano\n\nDavid Ewell, Bass \n\nJaimeo Brown, Drums",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $30 , $40 , $50",
              "url": "https://blackcatsf.turntabletickets.com/shows/12859/2026-09-27",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_771cfce1cb95",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "“Emily Day & Cosmo Alleycats”",
              "event_time": "Sunday, September 27, 2026 @ 5pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-27T17:00:00",
              "event_date": "2026-09-27",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "The group, Led by jazz vocalist Emily Day, “one of the major singers in her field” (Scott Yanow), endears audiences with their inviting musicality and playful improvisation, making quick converts of the jazz-curious while still nodding to serious aficionados.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/emily-day-cosmo-alleycats-7/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_12d4f8f0b41e",
              "venue_id": "venue_brick_and_mortar",
              "title": "GUARDIN W/ KENNEDYXOXO, FIJIMAR",
              "event_time": "9.27 Show: 8:30PM",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-09-27T20:30:00",
              "event_date": "2026-09-27",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Event Details Sean Healy Presents guardin w/ kennedyxoxo, Fijimar with Kennedyxoxo , Fijimar September 27, 2026 8:30 pm PDT (Doors: 7:30 pm ) Brick and Mortar Music Hall , 1710 Mission Street , San Francisco, CA ( map ) $20.06 - $26.74 Buy Tickets + Google Calendar GUARDIN Guardin is an alternative singer songwriter from Western New York whose music has inspired countless others through his honest lyrics and creative endeavors. Guardin has toured around the country as a headliner and co-headliner and in support of Oliver Francis, Gnash, Wicca Phase, Guccihighwaters, Lund, and Sewerperson. Kennedyxoxo Fijimar JUST ANNOUNCED Geordie Kieffer December 06, 2026 RC AVENUE October 04, 2026 Dani Offline — Lover's Discourse Live October 13, 2026 Denise Julia November 14, 2026 AZ Chike November 05, 2026 Follow us on Instagram Join the Brick & Mortar Newsletter",
              "event_types": [
                "live_music"
              ],
              "price_info": "$20.06 - $26.74",
              "url": "https://www.brickandmortarmusic.com/tm-event/guardin-w-kennedyxoxo-fijimar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-09-03T11:13:51.689688Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_821e5aac9540",
              "venue_id": "venue_bach_dds",
              "title": "Jorge Luis Pacheco Trio",
              "event_time": "Sun, 9/27/2026 @ 4:30 PM",
              "venue_name": "Bach Dancing",
              "event_start": "2026-09-27T16:30:00",
              "event_date": "2026-09-27",
              "venue_address": "311 Mirada Road, Half Moon Bay, CA 94019",
              "description": "bw + bsl && x + aw - ah / 2 - cw >= bsl) {\n                c.style.left = x + aw - ah / 2 - cw;\n            } else {\n                c.style.left = x + ah / 2;\n            }\n            if (y + ch + ah / 2 > bh + bst && y + ah / 2 - ch >= bst) {\n                c.style.top = y + ah / 2 - ch;\n            } else {\n                c.style.top = y + ah / 2;\n            }\n            c.style.visibility = \"visible\";\n            }\n            }\n            }\n\n            function msoCommentHide(com_id) {\n                if (msoBrowserCheck()) {\n                    c = document.all(com_id);\n                    if (null != c && null == c.length) {\n                        c.style.visibility = \"hidden\";\n                        c.style.left = -1000;\n                        c.style.top = -1000;\n                    }\n                }\n            }\n\n            function msoBrowserCheck() {\n                ms = navigator.appVersion.indexOf(\"MSIE\");\n                vers = navigator.appVersion.substring(ms + 5, ms + 6);\n                ie4 = (ms > 0) && (parseInt(vers) >= 4);\n                return ie4;\n            }\n            if (msoBrowserCheck()) {\n                document.styleSheets.dynCom.addRule(\".msocomanchor\", \"background: infobackground\");\n                document.styleSheets.dynCom.addRule(\".msocomoff\", \"display: none\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"visibility: hidden\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"position: absolute\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"top: -1000\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"left: -1000\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"width: 33%\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"background: infobackground\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"color: infotext\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"border-top: 1pt solid threedlightshadow\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"border-right: 2pt solid threedshadow\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"border-bottom: 2pt solid threedshadow\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"border-left: 1pt solid threedlightshadow\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"padding: 3pt 3pt 3pt 3pt\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"z-index: 100\");\n            }\n            // -->\n        \n    \n    Sponsored by Bonnie RattnerHailing from Havana, Cuba, Jorge\n        Luis Pacheco is one of the leading pianists and composers of the new\n    generation of jazz in Cuba. Winner of the Montreux Jazz Piano Solo Competition\n    in Switzerland, Pacheco is a fiery young pianist with “flying hands.” His music\n    is a confluence of Cuban jazz and Afro-Cuban music, American jazz, and\n    classical music with a measure of contemporary pop and soul.\n\n \n\nPacheco was the 2017 winner of the\n    JoJAzz Award in Havana and won the Best Solo and Performance Award in the “Made\n    in New York” Jazz Competition in New York City the same year with his original\n    composition “Con el Pache me Voy.” Pacheco has a master’s degree in composition\n    from the Instituto Superior de Arte de La Habana.\n\n \n\nHe has collaborated with Wynton\n    Marsalis and the JLCO, Arturo O’Farrill, and Lenny White, as well as leading\n    Cuban artists such as Alexander Abreu, Isaac Delgado, Gonzalo Rubalcaba,\n    Amadito Valdés and Teté Caturla (Buena Vista Social Club); among others.\n    Pacheco is a passionate, extravagant, and electrifying entertainer on stage and\n    captivates audiences with his heartfelt performances and electric energy.\n\n\n\nJorge Luis Pacheco – Piano;  Gerson Lazo-Quiroga – Bass;  Reinier Mendoza – Drums\nArtist Website here\nVideo 1\nVideo 2",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$50/$40 Adults;$23/$12 Student",
              "url": "https://plugin.vbotickets.com/v5.0/event.asp?eid=202281&s=f940c74f-f780-4fcb-ac4c-a97565f2a7ec",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bach_dds",
                  "source_name": "Bach Dancing",
                  "fetched_at": "2026-09-03T11:57:58.328412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bach_dds|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8dbe1d78c145",
              "venue_id": "venue_stookeys_blue_room",
              "title": "CROONERS: Lavender Cabaret",
              "event_time": "Sun, Sep 27 at 7:00-8:30pm",
              "venue_name": "Stookey's Blue Room",
              "event_start": "2026-09-27T19:00:00",
              "event_date": "2026-09-27",
              "venue_address": "1523 Sutter St, San Francisco, CA 94109",
              "description": "1st Show: 7:00-8:30pm\n\nTicket link for the 7pm show ONLY",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.stookeysblueroom.com/event-details/crooners-a-live-sing-lavender-cabaret-7pm-7",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stookeys_blue_room",
                  "source_name": "Stookey's Blue Room",
                  "fetched_at": "2026-09-03T12:18:49.462512Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stookeys_blue_room|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_aecc76ff95f6",
              "venue_id": "venue_stookeys_blue_room",
              "title": "CROONERS: Lavender Cabaret",
              "event_time": "Sun, Sep 27 at 9pm",
              "venue_name": "Stookey's Blue Room",
              "event_start": "2026-09-27T21:00:00",
              "event_date": "2026-09-27",
              "venue_address": "1523 Sutter St, San Francisco, CA 94109",
              "description": "Tickets for the 2nd show starting at 9pm only!",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.stookeysblueroom.com/event-details/crooners-a-live-sing-lavender-cabaret-9pm-7",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stookeys_blue_room",
                  "source_name": "Stookey's Blue Room",
                  "fetched_at": "2026-09-03T12:18:49.462512Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stookeys_blue_room|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fa646484ea03",
              "venue_id": "venue_pacific_film_archive",
              "title": "Wrenching News Workshop",
              "event_time": "Sep 27, 2026 1 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-27T13:00:00",
              "event_date": "2026-09-27",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Join artist Julia Goodman in creating Wrenching News, a collaborative artwork featured in Maren Hassinger: Living Moving Growing, through the process of twisting and knotting newspapers according to Hassinger’s specifications.",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://bampfa.org/event/wrenching-news-workshops",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3f8ac834f76d",
              "venue_id": "venue_pacific_film_archive",
              "title": "English Teacher & Bakhmaro 2050",
              "event_time": "Sep 27, 2026 1:30 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-27T13:30:00",
              "event_date": "2026-09-27",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "These two creative documentaries that ruminate on issues facing Georgian society are both set far from city life. English Teacher presents the challenges of the “linguistic revolution” initiative, while Bakhmaro 2050 is a meditation on the encroaching commercial development in a mountainous resort town.",
              "event_types": [
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/english-teacher-and-bakhmaro-2050",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7d6c354d6f31",
              "venue_id": "venue_pacific_film_archive",
              "title": "Exhibition Tour: Maren Hassinger",
              "event_time": "Sep 27, 2026 2 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-27T14:00:00",
              "event_date": "2026-09-27",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Graduate students from the Departments of African American and African Diaspora Studies and History of Art offer exhibition tours on selected Wednesdays at 12:15 PM, Sundays at 2 PM, and Free First Thursdays at 1:15 PM.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://bampfa.org/event/exhibition-tour-maren-hassinger-living-moving-growing",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ee8a6f8ff41a",
              "venue_id": "venue_pacific_film_archive",
              "title": "An Incomplete Day in the History of Georgia",
              "event_time": "Sep 27, 2026 4:30 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-27T16:30:00",
              "event_date": "2026-09-27",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Archival video documentation from a 1993 parliamentary session related to the introduction of the Georgian coupon, a national currency to replace the Russian ruble, offers a history lesson in the sometimes fleeting nature of democracy.",
              "event_types": [
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/incomplete-day-history-georgia-100693",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7e2c70604725",
              "venue_id": "venue_4_star_theater",
              "title": "My Neighbor Totoro",
              "event_time": "27 September 2026 10:00 AM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-09-27T10:00:00",
              "event_date": "2026-09-27",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "This acclaimed animated tale by director Hayao Miyazaki follows schoolgirl Satsuke and her younger sister, Mei, as they settle into an old country house with their father and wait for their mother to recover from an illness in an area hospital. As the sisters explore their new home, they encounter and befriend playful spirits in their house and the nearby forest, most notably the massive cuddly creature known as Totoro.",
              "event_types": [
                "film"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/neighbor-totoro-sun-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-09-03T12:23:17.119871Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_4_star_theater|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ba1c53ff9c04",
              "venue_id": "venue_cat_club",
              "title": "Folsom Sunday",
              "event_time": "September 27, 2026 9:00 PM",
              "venue_name": "Cat Club",
              "event_start": "2026-09-27T21:00:00",
              "event_date": "2026-09-27",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "Cat Club Presents Folsom Sundays",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://www.sfcatclub.com/calendar/sgzbsw3ltzjngjx-8yj6x-hzsr2-8tx5a-xes37",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cat_club",
                  "source_name": "Cat Club",
                  "fetched_at": "2026-09-03T13:24:58.141502Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1245a4e45fbf",
              "venue_id": "venue_pier_23",
              "title": "BLUES JAM",
              "event_time": "Sunday, September 27, 2026 4:00 PM\n              \n              7:00 PM",
              "venue_name": "Pier 23",
              "event_start": "2026-09-27T16:00:00",
              "event_date": "2026-09-27",
              "venue_address": "23 The Embarcadero,San Francisco, CA 94111",
              "description": "Join us for a raucous afternoon filled with jammin’ blues sounds brought to you by the inimitable blues drummer Sean Donoghue .  Professional musicians & budding artists are welcome to jump in to the musical fray. We are supporting local talent on all levels. Grab a drink, a bite and be ready to dance. Bring your friends, we can’t wait to see you.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.pier23cafe.com/events/2026/8/30/sunday-blus-jam-4kmsg-lghfw",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pier_23",
                  "source_name": "Pier 23",
                  "fetched_at": "2026-09-03T13:40:31.659066Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pier_23|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9a5608f0419f",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Twango SF",
              "event_time": "27 September 2026",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Twango SF plays vibrant gypsy jazz and hot swing in the enduring style of Django Reinhardt. Enjoy an evening of acoustic guitar swing paired with wine and small bites.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-09-03T13:50:21.930604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_85bac855c5b5",
              "venue_id": "venue_henry_j_kaiser",
              "title": "Yeng Constantino: Biyaheng Bente",
              "event_time": "September 27 6:00 PM",
              "venue_name": "Henry J Kaiser Center",
              "event_start": "2026-09-27T18:00:00",
              "event_date": "2026-09-27",
              "venue_address": "10 10th St, Oakland, CA 94607",
              "description": "Come to our Oakland event space and immerse yourself in captivating performances from today’s artists, performers, and thought leaders at our upcoming events.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.thehenryj.org/events/yeng-constantino-biyaheng-bente-20th-anniversary-concert",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_henry_j_kaiser",
                  "source_name": "Henry J Kaiser Center",
                  "fetched_at": "2026-09-03T13:59:14.778279Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_henry_j_kaiser|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_29bdfd73f7b0",
              "venue_id": "venue_caravan_lounge",
              "title": "Sofa Music Fair",
              "event_time": "09/27/2026",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "Welcome to The Caravan Lounge THE CARAVAN LOUNGE is a friendly, owner-operated bar located in the heart of downtown San Jose. As well as being one of San Jose’s oldest live music venues, the Caravan provides other fun activities such as karaoke, comedy, burlesque, pool table, and DJ nights. The Caravan is also extremely affordable for those trying to stretch a budget. And let’s not forget the music! All the shows at the Caravan are FREE! Open 7 days a week 2pm – Close “Aside from the obvious draw of affordable libations poured by heavy-handed barkeeps, The Caravan sets itself apart from other no-frills bars as the place to go to see up-and-coming bands. The bar has hosted plenty of local bands’ first shows, and regularly features smaller touring acts. If you’re a music fan always on the lookout for your new favorite group, make sure to pay attention to who is coming to Caravan.” -Metro FEATURED VIDEOS – Go to our YouTube Channel by clicking here to see more… SEPTEMBER 2026 TUES. SEPT 1st- Karaoke with Ronnie Roach WED. SEPT 2nd – The Caravan Lounge Comedy Show hosted by Chelsea Costanza THURS. SEPT 3rd – SWEAT with DJ SNAQ FRI. SEPT 4th – Rebelskamp, Magick Blues Band, TBA SAT. SEPT 5th – Skool Of Sharks TUES. SEPT 8th- Karaoke with Ronnie Roach WED. SEPT 9th – The Caravan Lounge Comedy Show Hosted by Nyoki THURS. SEPT 10th – Shrine Goth DJ Night with Hex Embrace, C_Death, and Owen FRI. SEPT 11th – Circus Of Sin 10 Year Sinnaversary! Hosted By Some Guy SAT. SEPT. 12th – CaveFest II We Love You Curtis Castro! Abysmal Piss, Ominous Ruin, Lost To The Void TUES. SEPT 15th – Karaoke with Ronnie Roach WED. SEPT 16th -The Caravan Lounge Comedy Show Hosted by Ato Walker THURS. SEPT 17th – TBA FRI. SEPT 18th – TBA SAT. SEPT 19th – Facekicker, American Standard, 12 Steps To Nothing TUES. SEPT 22nd – Karaoke with Ronnie Roach WED. SEPT 23rd- The Caravan Lounge Comedy Show hosted by Matt Kennedy THURS. SEPT 24th – Sweethearts DJ Night FRI. SEPT 25th – Ding Mao, Diamantide, Clou",
              "event_types": [
                "festival",
                "live_music"
              ],
              "price_info": "FREE",
              "url": "http://s172518151.onlinehome.us/caravan/site/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-09-03T14:20:40.572990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_784239ff84f5",
              "venue_id": "venue_poor_house_bistro",
              "title": "Rey & Renwick Trio",
              "event_time": "2026-09-27T16:00:00",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-09-27T16:00:00",
              "event_date": "2026-09-27",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-09-04T10:11:13.938872Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2cf5ffd99442",
              "venue_id": "venue_sailing_goat",
              "title": "Marco & the Polos",
              "event_time": "2026-09-27T17:00:00",
              "venue_name": "Sailing Goat",
              "event_start": "2026-09-27T17:00:00",
              "event_date": "2026-09-27",
              "venue_address": "1900 Stenmark Dr, Richmond, CA 94801",
              "description": "Americana-tinged originals to blues and rock classics performed by Bay Area acoustic group Marco & the Polos.",
              "event_types": [
                "live_music",
                "folk",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://www.sailinggoatrestaurant.com/event-details/marco-the-polos",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sailing_goat",
                  "source_name": "Sailing Goat",
                  "fetched_at": "2026-09-04T10:13:07.105977Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sailing_goat|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_90f52f89cb4e",
              "venue_id": "venue_mvcpa",
              "title": "El viaje de los cantores",
              "event_time": "Sunday, September 27, 2026 2:00  PM",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-09-27T14:00:00",
              "event_date": "2026-09-27",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "Teatro Nahual September 26 at 7:30 p.m. September 27 at 2 p.m October 3 at 7:30 p.m. October 4 at 2 p.m. **Performance in Spanish** Teatro Nahual presents the theatrical productions “ El viaje de los cantores ” (“ The Journey of the Singers ,” written by Hugo Salcedo) and “ Circo, maroma y teatro ” (“ Circus, acrobatics and theatrics ,” written by Verónica Meza). The two plays are fused into one. “ El viaje de los cantores ” is a powerful Mexican play. It narrates a collective story, including testimonies from migrants and family members, as well as fragments of memory, dreams, and desires. While “ Circo, maroma y teatro ” is interconnected with humor across scenes, it reflects on the social and political situation that Latinx immigrants face in the U.S. today. Director: Verónica Meza. Music: Isidro Jiménez. Set Designer: Frances Kao. This performance is 1 hour and 20 minutes long, with no intermission, and is recommended for ages 12 and up. Teatro Nahual presenta las producciones teatrales El viaje de los cantores , de Hugo Salcedo, y Circo, maroma y teatro , de Verónica Meza. Ambas obras se entrelazan en una sola puesta en escena. El viaje de los cantores es una poderosa obra del teatro mexicano que narra una historia colectiva a través de los testimonios de personas migrantes y sus familiares, entretejiendo fragmentos de memoria, sueños y anhelos. Por su parte, Circo, maroma y teatro , con un toque de humor presente a lo largo de sus escenas, invita a reflexionar sobre la realidad social y política que enfrentan hoy las comunidades inmigrantes latinas en los Estados Unidos. Dirección: Verónica Meza. Música: Isidro Jiménez. Diseño de escenografía: Frances Kao SecondStage | General Admission | Performance in Spanish September 26: $41 Regular | $38 Seniors (64 and over) and Students (21 and under) All other performances: $36 Regular | $34 Seniors (64 and over) and Students (21 and under) Ticket price includes $3 Facility Use Fee",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://tickets.mvcpa.com/eventperformances.asp?evt=779",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mvcpa",
                  "source_name": "MV Center for the Performing Arts",
                  "fetched_at": "2026-09-04T10:13:59.609171Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mvcpa|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_729e49d179b6",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-09-27",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-27",
              "event_date": "2026-09-27",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "San Francisco Playhouse. A beloved puppet takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "Tickets On Sale",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-09-04T10:15:07.852694Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-27",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a327317c0e6a",
              "venue_id": "venue_cafe_du_nord",
              "title": "Joon",
              "event_time": "9/27/2026 8:00 pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-09-27T20:00:00",
              "event_date": "2026-09-27",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Live Nation Presents: Joon (SOLD OUT) Sun, Sep 27 Doors: 7:00 pm | Show: 8:00 pm Tickets: waitlist All Ages Joon is captivating North American and Southeast Asian audiences with emotional pop sentimentality and a nostalgic band production reminiscent of The1975 and LANY. VIP with General Admission One (1) General Admission ticket Meet & Greet with Joon Exclusive acoustic performance and Q&A with Joon One (1) Signed Commemorative Laminate and Lanyard Early venue entry (where available) VIP Package is subject to change For any event that is listed as 18 or 21 and over, ANY ticket holder unable to present valid identification indicating that they are of age will not be admitted to this event, and will not be eligible for a refund. Any event listed as All Ages, means 6 years of age or older. ALL tickets are standing room only unless otherwise specified. If you need special accommodations, contact info@cafedunord.com. Support acts are subject to change without refund. Professional Cameras are not allowed without prior approval. Professional Camera defined as detachable lens or of professional grade as determined by the venue staff. When in doubt, just email us ahead of the show! We might be able to get you a Photo Pass depending on Artist’s approval. Artists Joon Video Joon is a Korean-American indie-pop artist based in Los Angeles with <500K monthly listeners on Spotify . His breakout self-produced single “with ease” took off on TikTok with over 400K posts, captivating North American and Southeast Asian audiences with emotional pop sentimentality and a nostalgic band production reminiscent of The1975 and LANY. Joon toured with bixby on the 2024 Desire Tour, selling out 500-cap rooms across 13 cities in the U.S. and performed at Head In The Clouds 2025 with bixby . Joon then went on to sell out his first headline show at The Moroccan Lounge (LA) in two minutes, his second at Baby’s All Right (NY) during Thanksgiving week, and most recently sold out The Echo (LA) where he",
              "event_types": [
                "live_music"
              ],
              "price_info": "waitlist",
              "url": "https://cafedunord.com/tm-event/joon/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cafe_du_nord_and_swedish_american_hall",
                  "source_name": "Cafe Du Nord and Swedish American Hall",
                  "fetched_at": "2026-09-04T10:21:43.132381Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_a23ae30ef484",
              "venue_id": "venue_belle_cora",
              "title": "Lara Louise",
              "event_time": "2026-09-27T18:00:00",
              "venue_name": "Belle Cora",
              "event_start": "2026-09-27T18:00:00",
              "event_date": "2026-09-27",
              "venue_address": "565 Green St, San Francisco, CA 94133",
              "description": "Dutch-born vocalist and guitarist Lara Louise performs a tasteful variety of jazz, folk, and bossa nova classics with her unique, sultry voice.",
              "event_types": [
                "live_music",
                "jazz",
                "folk",
                "latin_world"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/lara-louise/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_belle_cora",
                  "source_name": "Belle Cora",
                  "fetched_at": "2026-09-04T10:27:58.918702Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_belle_cora|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_9e7b988c4abb",
              "venue_id": "venue_specs",
              "title": "Valeriana Q & The Swingin’ Gatos",
              "event_time": "Sunday, September 27, 2026 7:30 PM - 10:30 PM",
              "venue_name": "Specs' Twelve Adler Museum Cafe",
              "event_start": "2026-09-27T19:30:00",
              "event_date": "2026-09-27",
              "venue_address": "12 William Saroyan Pl, San Francisco, CA 94133",
              "description": "Wonderful Bay Area based vocalist and performer Valeriana Quevedo returns to Specs with her band for an evening of jazz, Latin, blues and songs from the Great American Songbook.",
              "event_types": [
                "live_music",
                "jazz",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.specsbarsf.com/events/valeriana-quevedo-band",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_specs",
                  "source_name": "Specs' Twelve Adler Museum Cafe",
                  "fetched_at": "2026-09-04T10:38:49.428018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_specs|2026-09-27",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-09-28": {
          "date": "2026-09-28",
          "updated_at": "2026-09-04T10:38:52.763688Z",
          "events": [
            {
              "event_id": "evt_0da4450e9efb",
              "venue_id": "venue_war_memorial_opera_house",
              "title": "Rock Orchestra by Candlelight",
              "event_time": "Mon, Sep 28, 2026",
              "venue_name": "War Memorial Opera House",
              "event_start": "2026-09-28",
              "event_date": "2026-09-28",
              "venue_address": "301 Van Ness Ave, San Francisco, CA 94102",
              "description": "After mesmerizing audiences across Europe and the UK, The Rock Orchestra by Candlelight is set to electrify the USA once again. Prepare for a spellbinding spectacle that infuses iconic rock and metal anthems with a hauntingly beautiful energy. In ethereal candlelit settings, this band of 14 classical musicians unleash effortlessly enchanting melodies alongside powerful walls of distortion. Witness the unexpected union of classical music and metal. Performing the music of iconic bands including: Metallica, AC/DC, Rolling Stones, Rage Against The Machine, My Chemical Romance, Linkin' Park, SOAD, Guns N Roses, Evanescence, Papa Roach, The Cranberries and more!",
              "event_types": [
                "live_music",
                "rock",
                "classical"
              ],
              "price_info": "More info",
              "url": "https://us.atgtickets.com/events/rock-orchestra/war-memorial-opera-house/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sf_theaters",
                  "source_name": "SF Theaters",
                  "fetched_at": "2026-04-16T09:15:27.725138Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_atg_sf",
                  "source_name": "ATG SF",
                  "fetched_at": "2026-04-16T09:55:49.860603Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_war_memorial_opera_house|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_65ff4c34a0ad",
              "venue_id": "venue_castro_theater",
              "title": "ALDOUS HARDING",
              "event_time": "September 28, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-28T20:00:00",
              "event_date": "2026-09-28",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Sam Burton’s last album, Dear Departed , arose from a time of rebirth. In the last few years, Burton basically started over. There’s a freedom in leaving everything behind, and Burton embarked on a wandering phase. Along the way, he was writing songs. Following his 2020 debut I Can Go With You , Dear Departed was something of a reintroduction after a period of transition and transformation. He joined up with producer Jonathan Wilson to craft a more intricate, layered sound that recalled the lived-in yet immediate singer-songwriter albums of the ‘60s and ‘70s. Wilson helped Burton achieve a sound that didn’t descend into retro pastiche, but rather became an evocative echo, a dream of the past. From the production to the performances to Burton’s core compositions, there’s a timelessness across Burton’s catalog, exploring themes of love, loss, and personal transformation.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/aldous-harding-260928",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-06T11:49:34.527189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_62fe6f8a02d9",
              "venue_id": "venue_bing_concert_hall",
              "title": "An Intimate Evening With Molly Tuttle",
              "event_time": "2026-09-28 7:30 PM",
              "venue_name": "Bing Hall",
              "event_start": "2026-09-28T19:30:00",
              "event_date": "2026-09-28",
              "venue_address": "327 Lasuen St, Stanford, CA 94305",
              "description": "Grammy Award–winning bluegrass musician Molly Tuttle honors tradition while stretching its boundaries, blending pop, country, rock, and flat-picking.",
              "event_types": [],
              "price_info": "TBA",
              "url": "https://live.stanford.edu/events/26-27season/bing-concert-hall/molly-tuttle/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-05-29T06:03:05.530074Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_bing_concert_hall",
                  "source_name": "Bing Hall",
                  "fetched_at": "2026-06-27T21:07:38.192549Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bing_concert_hall|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_843b2c1286bb",
              "venue_id": "venue_the_warfield",
              "title": "Lucki, Sk8star",
              "event_time": "sep 28 8pm",
              "venue_name": "The Warfield",
              "event_start": "2026-09-28T20:00:00",
              "event_date": "2026-09-28",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "The Bad* Influence Tour",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.thewarfieldtheatre.com/events/detail/1464613",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T21:39:26.952332Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-06-03T13:05:04.702211Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_warfield|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cb3c4011bb06",
              "venue_id": "venue_masonic_hall",
              "title": "Social Distortion",
              "event_time": "sep 28 7:30pm",
              "venue_name": "Masonic Hall",
              "event_start": "2026-09-28T19:30:00",
              "event_date": "2026-09-28",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Legendary punk rock band Social Distortion delivers a high-energy performance filled with their classic, rebellious anthems at the Masonic Hall. The show brings their signature blend of punk, rockabilly, and blues to the stage.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$75.75",
              "url": "https://www.ticketmaster.com/social-distortion-tickets-san-francisco-california-09-28-2026/event/1C006095B5B82A9D",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-10T10:33:42.275715Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-06-14T10:34:09.356091Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_masonic_hall|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c1735173b242",
              "venue_id": "venue_mojo_lounge",
              "title": "Johnny's Lounge Open Mic",
              "event_time": "2026-09-28T20:00:00",
              "venue_name": "Mojo Lounge",
              "event_start": "2026-09-28T20:00:00",
              "event_date": "2026-09-28",
              "venue_address": "3714 Peralta Blvd, Fremont, CA 94536",
              "description": "Johnny's Lounge Open Mic (at the former Mojo Lounge). If you ever wanted to try comedy and check out the Bay Area's upcoming talent, come on out to this local watering hole in Fremont! Hosted by Alex Torres.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Free",
              "url": "https://www.meetup.com/south-bay-comedy-showcases/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mojo_lounge",
                  "source_name": "Mojo Lounge",
                  "fetched_at": "2026-06-16T11:13:49.827449Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mojo_lounge|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_d24152a29b93",
              "venue_id": "venue_bimbos_365",
              "title": "Tokyo Tea Room",
              "event_time": "sep 28 8pm",
              "venue_name": "Bimbos 365",
              "event_start": "2026-09-28T20:00:00",
              "event_date": "2026-09-28",
              "venue_address": "1025 Columbus Ave, San Francisco, CA 94133",
              "description": "Another Planet presents the Feel Forever Tour featuring Tokyo Tea Room with Beach Vacation.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://bimbos365club.com/tm-event/tokyo-tea-room/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-17T10:47:20.580351Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_bimbos_365",
                  "source_name": "Bimbos 365",
                  "fetched_at": "2026-06-19T13:57:23.431504Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bimbos_365|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b1bae030e693",
              "venue_id": "venue_toms_place",
              "title": "Devin Gray (perc) and Lorin Benedict (voice)",
              "event_time": "mon sep 28, 2026 8:00 PM",
              "venue_name": "Tom's Place",
              "event_start": "2026-09-28T20:00:00",
              "event_date": "2026-09-28",
              "venue_address": "3133 Deakin St, Berkeley",
              "description": "This intimate performance at Tom's Place features an improvised duo collaboration between drummer Devin Gray on percussion and vocalist Lorin Benedict. The two musicians will explore a range of adventurous, hard-to-classify contemporary art music.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "",
              "url": "http://www.bayimproviser.com/EventView.aspx?e=xxxxx",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_toms_place",
                  "source_name": "Tom's Place",
                  "fetched_at": "2026-07-20T10:11:41.249656Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_toms_place_presents",
                  "source_name": "Tom's Place Presents",
                  "fetched_at": "2026-07-22T01:11:52.141643Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_toms_place|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_529e5c3cd690",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Stephan Jenkins",
              "event_time": "Monday September 28\n          2026 7:00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-28T19:00:00",
              "event_date": "2026-09-28",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "(a solo acoustic set) - pop rock, queer emo-pop",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20",
              "url": "http://www.bottomofthehill.com/20260928.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-08-09T10:54:41.013216Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9cb57a1580c5",
              "venue_id": "venue_great_american_music_hall",
              "title": "Inayah",
              "event_time": "sep 28 8pm",
              "venue_name": "Great American",
              "event_start": "2026-09-28T20:00:00",
              "event_date": "2026-09-28",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "all ages",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$25/$30",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_e80b9a5f1d0a",
              "venue_id": "venue_the_riptide",
              "title": "Open Mic by Charlie Kaupp",
              "event_time": "September 28 7:00 PM - September 29 12:00 AM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-28T19:00:00",
              "event_date": "2026-09-28",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "Best of The Bay Award Winning Charlie Kaupp's Riptide Open Mic !\n\nThe Riptide Wants to Hear Ya Sing! In person! Inside the bar!\n\n\nOpen Mic Night returns to The Riptide in person, every Monday night. Sign up in the bar starting at 7pm. Music starts at 8 and goes until 11pm.\n\n\n\nRules and format:\n\n\n\n• You get two songs or 10 minutes, whichever comes first\n• This is a music-only open mic, so no spoken word, comedy, poetry, dramatic readings, etc (unless you put it to music)\n• All genres, covers, and originals are accepted and encouraged\n• Since it's in a bar, it's a 21+ event. Sorry kids!\n• Sign-ups are first-come, first-served, but you can pick your slot\n• Come early and have a drink, stick around late and support the other performers\n• You may bring your own mic and your own instrument if you choose, or RESPECTFULLY use our house mics, guitar, or piano.",
              "event_types": [
                "live_music"
              ],
              "price_info": "cover",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_90853db4177f",
              "venue_id": "venue_mabuhay_gardens",
              "title": "ZINGGFLOWER MONDAYS",
              "event_time": "2026-09-28 6:30 PM",
              "venue_name": "The Mab",
              "event_start": "2026-09-28T18:30:00",
              "event_date": "2026-09-28",
              "venue_address": "443 Broadway, San Francisco, CA 94133",
              "description": "GamperDrums brings an all-star band to The Mab for blues and beyond—funk, soul, jazz, and San Francisco psychedelia—continuing the fearless musical exploration inspired by Drew Zingg.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://alerttheglobe.com/custom/Chris_Gamper",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mabuhay_gardens",
                  "source_name": "The Mab",
                  "fetched_at": "2026-08-22T11:20:57.510347Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mabuhay_gardens|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_079c14b654d0",
              "venue_id": "venue_crepe_place",
              "title": "Family Jam",
              "event_time": "2026-09-28",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-28T20:00:00",
              "event_date": "2026-09-28",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "FREE",
              "url": "https://thecrepeplace.com/shows-list/family-jam-monday-march-16-from-6-9pm-free",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a34aab9ef467",
              "venue_id": "venue_abbott_square",
              "title": "COMEDY NIGHT",
              "event_time": "Monday, September 28, 2026 7:00 PM - 9:00 PM",
              "venue_name": "Abbott Square Market",
              "event_start": "2026-09-28T19:00:00",
              "event_date": "2026-09-28",
              "venue_address": "725 Front St, Santa Cruz, CA 95060",
              "description": "Come hang out in the garden and have some laughs, EVERY MONDAY NIGHT.\n\nFeaturing comedians from all over the Bay Area and beyond.",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "https://www.abbottsquaremarket.com/events/yxy2temjm5rphl6xxk5cfchb7a47mj-rskts-a2lpf-zp9fd-b4lzk-nhrfr",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_abbott_square",
                  "source_name": "Abbott Square Market",
                  "fetched_at": "2026-08-22T12:39:51.694804Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_abbott_square|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0e91ffc16f78",
              "venue_id": "venue_act_theater",
              "title": "Alfred Hitchcock's North by Northwest",
              "event_time": "2026-09-28",
              "venue_name": "ACT Theater",
              "event_start": "2026-09-28",
              "event_date": "2026-09-28",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "\"I am thrilled, excited and perhaps a little apprehensive to bring the iconic North by Northwest home to the US! I just hope that American audiences will love it as much as our British audiences did. What I am not apprehensive about is bringing its message; one of nations coming together in peace and friendship to make the world a better place. I think we can all raise a glass to that! I am also itching to return to A.C.T. and San Francisco, a piece of my heart will always remain in California and I cannot wait to return to your beautiful theatre, vivid audience and magic state.\" —Emma Rice",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-08-22T13:54:28.481304Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_act_theater|2026-09-28",
              "run_id": "run_8f5d72a961cd",
              "run_label": "Alfred Hitchcock's North by Northwest, Sep 22 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_e17643fcf78e",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Love Notes",
              "event_time": "2026-09-28",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-28",
              "event_date": "2026-09-28",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-28",
              "run_id": "run_1ea648ade196",
              "run_label": "Love Notes, Aug 22 – Oct 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_b095675f8fb9",
              "venue_id": "venue_bookshop_santa_cruz",
              "title": "JOSEPH FINK, THE NUDGE",
              "event_time": "Mon, 9/28/2026 7:00pm - 8:00pm",
              "venue_name": "Bookshop Santa Cruz",
              "event_start": "2026-09-28T19:00:00",
              "event_date": "2026-09-28",
              "venue_address": "1520 Pacific Ave, Santa Cruz, CA 95060",
              "description": "FREE IN-STORE EVENT: Bookshop Santa Cruz welcomes New York Times bestselling author Joseph Fink (Welcome to Night Vale, Alice Isn't Dead) for a reading and signing of The Nudge, a new horror novell...",
              "event_types": [
                "literary"
              ],
              "price_info": "",
              "url": "https://bookshopsantacruz.com/joseph-fink",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bookshop_santa_cruz",
                  "source_name": "Bookshop Santa Cruz",
                  "fetched_at": "2026-08-27T22:11:24.045604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bookshop_santa_cruz|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_701bcec65a11",
              "venue_id": "venue_the_freight__salvage",
              "title": "Bobby McFerrin: Circlesongs",
              "event_time": "2026-09-28T11:30:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-28T11:30:00",
              "event_date": "2026-09-28",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Account Login Cart Time remaining: 00:00 Enter Promo Code Promo Code (Optional) Activate Code Promo Code View Cart 0 Your cart has expired Your order contained expired items and your shopping cart has been emptied. Close Enter Promo Code Bobby McFerrin and MOTION: Circlesongs, Monday, September 28, 2026 12:00PM Event Summary Monday, September 28, 2026 12:00PM Bobby McFerrin and MOTION: Circlesongs Bobby McFerrin and Motion 10-time Grammy-winner Bobby McFerrin 's mission is to get the world singing. So, he's singing with MOTION almost every Monday afternoon right here at The Freight to welcome even more voices into the circle! Join Bobby and Bay Area’s MOTION featuring Bryan Dyer, David Worm , and Destani Wolf . They will lead Circlesongs at noon and encourage everyone to bring a spirit of adventure, curiosity, trust, and joy. Let it free your voice. Find your place in the circle. “You get people together and get them singing, and you instantly knock down all the walls – the creeds, the gender, age and race differences, everything. You’re all one at that point, lifting your voices.” – Bobby McFerrin Read More Hide Additional Options View Full Calendar Please Note: Donor discount applied at checkout. Interested in donating? Click here. Tickets: $40.00 (includes fees) Doors: 11:30AM; Show: 12:00PM Please Note: Donor discount applied at checkout. Interested in donating? Click here. Tickets: $40.00 (includes fees) Doors: 11:30AM; Show: 12:00PM Select your tickets Available Groups Select Other Sold Out! General Admission Please select a group to display sections. Choose an available section to see ticket options Quantity for General Admission General Admission $35.00 ticket + $5.00 fees Price Quantity 0 1 2 3 4 5 6 7 8 9 10 Quantity General Admission Price Quantity 0 1 2 3 4 5 6 7 8 9 10 Additional information Americans with Disabilities Act Accessible Seating Accessible seating is only to be reserved for guests with disabilities and their companions. By purchasing access",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$40\n(INCLUDES ALL FEES)",
              "url": "https://secure.thefreight.org/15627/16136",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_60502f618f9b",
              "venue_id": "venue_the_freight__salvage",
              "title": "Country Bluegrass Jam",
              "event_time": "2026-09-28T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-09-28T19:00:00",
              "event_date": "2026-09-28",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Account Login Cart Time remaining: 00:00 Enter Promo Code Promo Code (Optional) Activate Code Promo Code View Cart 0 Your cart has expired Your order contained expired items and your shopping cart has been emptied. Close Enter Promo Code Community Mondays: Country Bluegrass Jam with Richard Brandenburg, September 28, 2026 7:30PM Event Summary From September 14, 2026 7:30PM to December 7, 2026 7:30PM 2026 CM: Fall Read More Hide Traditional country, folk and bluegrass music is alive and thriving at The Freight! The Bluegrass/Country Jam is one of the longest-running jam sessions in the Bay Area, and this popular monthly drop-in jam is a great way to begin playing and singing traditional bluegrass and country songs at comfortable tempos in a supportive, fun, and relaxed setting. Players of all ages and skill levels are welcome! It’s the perfect environment to deepen and broaden your song list through playing and singing the great repertoire of country and bluegrass songs, while the simple rules of jam etiquette create a safe environment for everyone. The beautiful melodies, harmonies and simple chord patterns are easy to play and learn by ear, and with the support of a friendly circle of jammers, you’ll become part of the now-vast community of folks who have made the wonderful tradition of jamming a part of their musical life! This is a jam for traditional acoustic string band instruments: voice, guitar, banjo, mandolin, fiddle, dobro and upright bass. You should be able to play basic chords smoothly on your instrument. Players are welcome to bring tape recorders and songbooks. Guitar and banjo players should bring a capo! Testimonials: • Thanks for leading the group with your patience and humor. I've learned a lot, become more comfortable playing with others, and have greatly expanded my list of songs/tunes. • Thanks for your ongoing patience with those of us who continue to put the \"slow\" in \"slow jam!\" • You were so patient, helpful, and friendly yesterday and I ca",
              "event_types": [
                "community",
                "folk",
                "live_music"
              ],
              "price_info": "SLIDING SCALE: $5.00+",
              "url": "https://secure.thefreight.org/16027/16029",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_12574227ade9",
              "venue_id": "venue_dawn_club",
              "title": "SILVER BELL JAZZ BAND",
              "event_time": "Monday, September 28, 2026 8:00 PM 11:00 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-09-28T20:00:00",
              "event_date": "2026-09-28",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Silver Bell Jazz Band inspires dancers and listeners all over the Bay Area. The band specializes in ragtime, blues, swing, and dixieland from the early 20th century. They’re known for their authenticity and dedication to the craft as well as their foot-tapping energy.\n\n\n  \n#block-ccdc6ab838502efad1b0 {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n\n\n  }\n\n  #block-ccdc6ab838502efad1b0 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-ccdc6ab838502efad1b0 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-ccdc6ab838502efad1b0 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-ccdc6ab838502efad1b0 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-ccdc6ab838502efad1b0 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-ccdc6ab838502efad1b0 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/silver-bell-jazz-band-k238gj-49-rmt9a-62p4y-nxrh8-t5b22-b5jpk-84976",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-08-28T15:32:50.415811Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4831707c8a93",
              "venue_id": "venue_yoshis",
              "title": "Fred Wesley's New JBs & Martha High",
              "event_time": "September 28, 2026 - 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-28T19:30:00",
              "event_date": "2026-09-28",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "TAKE ADVANTAGE OF 25% OFF THIS SHOW. CODE:SUMMER25 OFFER VALID FOR ONLINE PURCHASES ONLY I OFFER EXPIRES MON, JUN 29 AT 11:59PM PST LIMITED DISCOUNTED TICKETS AVAILABLE",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$44 - $89",
              "url": "https://yoshis.com/events/buy-tickets/martha-high-the-funky-divas-w-fred-wesley-and-the-new-jbs/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f4e8829fa2af",
              "venue_id": "venue_ivy_room",
              "title": "Happy Hour",
              "event_time": "Sep 28 4:00 PM",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-28T16:00:00",
              "event_date": "2026-09-28",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "Happy Hour - No Fuss, just good times! EVERY MONDAY! Mon Sep 28 Minimum age: 21 and over Show time: 4:00 PM Doors open: 4:00 PM Free Description 🍻 Mondays Are For Happy Hour Starting this July, we are officially throwing open the doors every Monday at 4:00 PM for a good old-fashioned happy hour. No stage production, no fuss—just good drinks, excellent company, and Chaos behind the bar holding down the vibe. From now on, when you think of Mondays, think of us. Mondays are for Hangin' Out. Hope to see you all very soon!",
              "event_types": [
                "community"
              ],
              "price_info": "FREE",
              "url": "https://www.ivyroom.com/#/events/194934",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-08-31T11:55:01.170393Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_00bc22bf07f4",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC NIGHT",
              "event_time": "Mon Sep 28 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-28T19:00:00",
              "event_date": "2026-09-28",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "A legendary Monday night tradition at the Hotel Utah Saloon, this open mic is a cornerstone of San Francisco's singer-songwriter community. Local and visiting artists sign up via a random drawing to perform a song on the historic stage.",
              "event_types": [
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/OPEN-MIC-NIGHT/690191?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-08-31T12:12:52.447528Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_319c64723ef2",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-09-28T14:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-28T14:00:00",
              "event_date": "2026-09-28",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-28",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_1382a64c03cc",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-09-28T18:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-28T18:00:00",
              "event_date": "2026-09-28",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-28",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 2,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_e50556c84c40",
              "venue_id": "venue_tupelo",
              "title": "THE San Francisco Invitational Jam",
              "event_time": "Monday September 28th 9:00PM - 1:00AM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-28T21:00:00",
              "event_date": "2026-09-28",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "Hosted by Andrew Coutti and Young Blake on drums and bass,, this is the definitive Jam in San Francisco. Each week there will be a different special guest vocalist, as well as myriad other exceptional local talent popping in no doubt. Talk to either host before the gig if you're interested in performing. We take this shit seriously though, so bring your chops :)",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2a244bf6d22e",
              "venue_id": "venue_madrone_art_bar",
              "title": "Motown on Mondays",
              "event_time": "September 28 @ 7:00 pm - 1:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-28T19:00:00",
              "event_date": "2026-09-28",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "It’s only Monday if you treat it like one! DJ Gordo Cabeza and weekly guests play originals, exclusive remixes and close relatives of your favorite Motown songs. The most talked about night in town! Starting at 7pm. Doors 4pm – 2am / 21 & up w/ID $5 cover after 8pm",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$5 cover",
              "url": "https://madroneartbar.com/event/motown-on-mondays-79-2025-12-01-2026-04-27/2026-09-28/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8329a393305e",
              "venue_id": "venue_piedmont_piano_company",
              "title": "Art Lande, Günter Wehinger, Tim Wendel",
              "event_time": "2026-09-28T19:00:00",
              "venue_name": "Piedmont Piano Co",
              "event_start": "2026-09-28T19:00:00",
              "event_date": "2026-09-28",
              "venue_address": "1728 San Pablo Ave, Oakland, CA 94612",
              "description": "The trio featuring Art Lande (piano), Günter Wehinger (flute), and Tim Wendel (guitar) masterfully explores improvisation, composition, and subtle interaction, pulling from jazz, modern classical, and world music without residing in any identity for too long.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$25 in advance / $30 at the door",
              "url": "https://piedmontpiano.com/calendar/2026/9/28/lande-wehinger-wendel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_piano_company",
                  "source_name": "Piedmont Piano Co",
                  "fetched_at": "2026-09-03T10:22:09.546608Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_piedmont_piano_company|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_b954ddd2428c",
              "venue_id": "venue_brick_and_mortar",
              "title": "PHORA",
              "event_time": "9.28 Show: 8:00PM",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-09-28T20:00:00",
              "event_date": "2026-09-28",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Event Details Brick & Mortar Music Hall Presents Phora September 28, 2026 8:00 pm PDT (Doors: 7:00 pm ) Brick and Mortar Music Hall , 1710 Mission Street , San Francisco, CA ( map ) $0.00 Sold Out + Google Calendar First come first serve day of the show. RSVP REQUIRED! Phora JUST ANNOUNCED Geordie Kieffer December 06, 2026 RC AVENUE October 04, 2026 Dani Offline — Lover's Discourse Live October 13, 2026 Denise Julia November 14, 2026 AZ Chike November 05, 2026 Follow us on Instagram Join the Brick & Mortar Newsletter",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$0.00",
              "url": "https://www.brickandmortarmusic.com/tm-event/phora/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-09-03T11:13:51.689688Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fbfe7abe3e85",
              "venue_id": "venue_stookeys_blue_room",
              "title": "SWITCH/BOARD! Raid on Parkside",
              "event_time": "Mon, Sep 28 at 7-8:30pm",
              "venue_name": "Stookey's Blue Room",
              "event_start": "2026-09-28T19:00:00",
              "event_date": "2026-09-28",
              "venue_address": "1523 Sutter St, San Francisco, CA 94109",
              "description": "Showtime 7-8:30pm\nFollowed by a 9pm screening of the film that inspired the plot!",
              "event_types": [
                "theater",
                "film"
              ],
              "price_info": "",
              "url": "https://www.stookeysblueroom.com/event-details/fancypants-presents-switch-board-raid-on-parkside-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stookeys_blue_room",
                  "source_name": "Stookey's Blue Room",
                  "fetched_at": "2026-09-03T12:18:49.462512Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stookeys_blue_room|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e12aa0c80be3",
              "venue_id": "venue_local_edition",
              "title": "Le Jazz Hot Quartet",
              "event_time": "September 28, 2026 8:00 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-09-28T20:00:00",
              "event_date": "2026-09-28",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "This ensemble of accomplished and versatile musicians celebrates the music of Django Reinhardt and Stephane Grappelli’s pioneering Quintette du Hot Club de France. The HCSF borrows the instrumentation of violin, bass, and guitars from the original Hot Club while breathing new life into the music with innovative arrangements of classic tunes and original compositions from the group’s superb lead guitarist, Paul Mehling. With a swinging rhythm section, the group never fails to surprise and delight.Paul PAZZO Mehling- Solo Guitar, Vocals, LeaderIsabelle Fontaine- Rhythm Guitar, VocalsEvan Zeppo Price- ViolinDexter DeWi Williams- String Bass",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/sww2t44gg6yypae-agl3s-k5tht-pyx2s-bd34e-zpyka-l75ee-6azc4-bybg8",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-09-03T12:59:31.047351Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_362bdcecbc16",
              "venue_id": "venue_pier_23",
              "title": "MAHJONG MONDAYS",
              "event_time": "Monday, September 28, 2026 4:00 PM\n              \n              7:00 PM",
              "venue_name": "Pier 23",
              "event_start": "2026-09-28T16:00:00",
              "event_date": "2026-09-28",
              "venue_address": "23 The Embarcadero,San Francisco, CA 94111",
              "description": "Join us on Monday 4-7pm for Social Play! Bring a friend and your Mahjong set (or use one of ours). Whether you're a seasoned player or new to the game, everyone is welcome! Enjoy our spectacular views, yummy food and wide range of specialty cocktails. As my favorite teacher, Dinna Davis, inspires: “Let’s Mahj On!”",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://www.pier23cafe.com/events/2026/8/10/mahjong-mondays-4-7pm-n7zzj-3xmyt",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pier_23",
                  "source_name": "Pier 23",
                  "fetched_at": "2026-09-03T13:40:31.659066Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pier_23|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2ee53a88f693",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Flavio Souza",
              "event_time": "28 September 2026",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-28",
              "event_date": "2026-09-28",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Multi-instrumentalist Flavio Souza brings a versatile repertoire of blues, pop, and jazz to the wine bar stage. Settle in for an evening of smooth live melodies alongside your favorite pour.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-09-03T13:50:21.930604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_09c836d54d3b",
              "venue_id": "venue_henry_j_kaiser",
              "title": "How We Get Free: 25th Anniversary Event",
              "event_time": "September 28 7:00 PM",
              "venue_name": "Henry J Kaiser Center",
              "event_start": "2026-09-28T19:00:00",
              "event_date": "2026-09-28",
              "venue_address": "10 10th St, Oakland, CA 94607",
              "description": "A commemorative event hosted by Haymarket Books featuring a panel conversation with celebrated activist Angela Y. Davis and scholar Keeanga-Yamahtta Taylor exploring Black feminist legacy.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.thehenryj.org/events/how-we-get-free-a-haymarket-books-25th-anniversary-event-with-angela-y-davis-keeanga-yamahtta-taylor-sarah-haley-and-ula-y-taylor",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_henry_j_kaiser",
                  "source_name": "Henry J Kaiser Center",
                  "fetched_at": "2026-09-03T13:59:14.778279Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_henry_j_kaiser|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d26497647cbf",
              "venue_id": "venue_hillside_club",
              "title": "Etude Club Concert",
              "event_time": "Sep 28, 2026, 1:00 PM – 2:30 PM",
              "venue_name": "Hillside Club",
              "event_start": "2026-09-28T13:00:00",
              "event_date": "2026-09-28",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "Monthly meeting of the Etude Club includes a live performance of classical music",
              "event_types": [
                "live_music",
                "classical",
                "community"
              ],
              "price_info": "",
              "url": "https://www.hillsideclub.org/event-details/etude-club-concert-september",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-09-04T10:10:10.864332Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hillside_club|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_217b4adbee95",
              "venue_id": "venue_specs",
              "title": "Deanna Marsigliese’s Sip n' Sketch!",
              "event_time": "Monday, September 28, 2026 6:30 PM - 8:30 PM",
              "venue_name": "Specs' Twelve Adler Museum Cafe",
              "event_start": "2026-09-28T18:30:00",
              "event_date": "2026-09-28",
              "venue_address": "12 William Saroyan Pl, San Francisco, CA 94133",
              "description": "Sip n’ Sketch drawing class hosted by Pixar’s animation art director Deanna Marsigliese! All levels welcome\n\nBYO materials | $5-10 suggested donation \n\nDeanna Marsigliese is a Canadian born Animation Art Director & Illustrator living in San Francisco, CA.\n\nSpecializing in storytelling through character design, Deanna has worked at Pixar Animation Studios since 2012. Her credits include Soul (2020), Onward (2020), Toy Story 4 (2019), Incredibles 2 (2018), Bao (2018), Inside Out (2015) & The Good Dinosaur (2013).\n\nShe is currently art directing on an original feature entitled Luca, set to release in 2021.\n\nPast clients include Laika, Sony Pictures, Universal Feature, Walt Disney Feature, Reel FX, Disney TV, Nickelodeon, Cartoon Network & PBS Kids, among others.\n\nDeanna delivers panel talks & leads workshops world-wide, having been hosted by SXSW, D23, ILM, Leaders London, Pixelatl, CTNX & The Walt Disney Family Museum.\n\nDeanna is a vintage fashion enthusiast with a penchant for large costume jewels. When in need of inspiration, she loves to travel the world at length with a surprisingly small backpack.",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "$5-10 suggested donation",
              "url": "https://www.specsbarsf.com/events/sip-n-sketch-6jhrz-3rk6n-wpn5s-as786",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_specs",
                  "source_name": "Specs' Twelve Adler Museum Cafe",
                  "fetched_at": "2026-09-04T10:38:49.428018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_specs|2026-09-28",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-09-29": {
          "date": "2026-09-29",
          "updated_at": "2026-09-04T10:39:45.248894Z",
          "events": [
            {
              "event_id": "evt_3044a49968c8",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Social Distortion, Descendants, Chats",
              "event_time": "Sep 29 2026 7pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-09-29T19:00:00",
              "event_date": "2026-09-29",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Born To Kill World Tour - Descendents The Chats",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$78.60",
              "url": "https://thefoxoakland.com/events/social-distortion-260929",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-08T14:57:38.344888Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_07c074df404c",
              "venue_id": "venue_the_independent",
              "title": "WAY DYNAMIC",
              "event_time": "9.29 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-29T20:00:00",
              "event_date": "2026-09-29",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List Way Dynamic Slippers Tue, Sep 29 Doors: 7:30 pm | Show: 8:00 pm All Ages Please note - there is a delivery delay set for 2 weeks prior to show. Buy Tickets Share + Google Calendar Related Events FOUR SQUARE VOL. 2 – A HIP-HOP VIDEO GAME LIVE THEATRE EXPERIENCE Aug 14 Buy Tickets Krooked Kings Aug 15 Buy Tickets Artists Way Dynamic Way Dynamic, the solo project of Melbourne’s Dylan Young, will soon release internationally Massive Shoe – a third album that’s playful and understated, luminous and textured. Massive Shoe is minimalist folk-pop, art rock and baroque pop, produced and largely played by Young, who moonlights in Melbourne’s beloved Cool Sounds and Good Morning and has played drums with Snowy Band and Kankawa Nagarra. It’s tempting to only compare these timeless songs to those of yesteryear, but there’s a sensibility, a turn of phrase, that feels deeply contemporary: it’s telling that Waxahatchee’s Katie Crutchfield described “Miffed It” as her “favourite song in a VERY long time”, and Katie and MJ Lenderman have both taken Way Dynamic on tour. At the same time, Sir Elton John said that he “just cannot stop listening” to “Ibiza”. Young’s songs don’t shy away from sentiment, or equally from silliness: on any given song he might evoke a cruisy trip through hell or earnestly lament a miscommunication. Whether the journey is to space or along the Seine, we’re very much along for the ride. Slippers Back to Event List Upcoming Events FOUR SQUARE VOL. 2 – A HIP-HOP VIDEO GAME LIVE THEATRE EXPERIENCE Fri Aug 14 Krooked Kings Sat Aug 15 Angine de Poitrine Wed Aug 19 G Flip Thu Aug 20 Niina Soleil Fri Aug 21 Pearl & The Oysters Sat Aug 22 Son Rompe Pera Thu Aug 27 Wax + DJ Hoppa Fri Aug 28 Brenn! Sat Aug 29 Tonic Walter Fri Sep 4 The Emo Night Tour Sat Sep 5 PawPaw Rod Tue Sep 8",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/way-dynamic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-06-04T10:57:29.269475Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-10T10:33:42.275715Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_independent|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d5a5a950b72b",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "The Quiet Men",
              "event_time": "Tuesday September 29 2026 8:00PM doors -- music at 8:30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-29T20:00:00",
              "event_date": "2026-09-29",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Tuesday September 29 2026\n  8:00PM doors -- music at 8:30PM\n  •••  21 AND OVER\n$15\n$19.81 in advance [15 face value + 4.81 service fee]\nThe Quiet Men \n Irish-style folk rock\nGreg Hoy & the Boys \n punk/R&B/blues indie rock\nFast & Vengefully \n Irish tunes",
              "event_types": [],
              "price_info": "$15",
              "url": "http://www.bottomofthehill.com/20260929.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-06-04T11:24:06.802385Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-10T10:33:42.275715Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f4dd75027728",
              "venue_id": "venue_august_hall",
              "title": "Ethan Regan, Harf.",
              "event_time": "sep 29 8pm",
              "venue_name": "August Hall",
              "event_start": "2026-09-29T20:00:00",
              "event_date": "2026-09-29",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35.70",
              "url": "https://www.augusthallsf.com/tm-event/ethan-regan/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-17T10:47:20.580351Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-06-23T15:07:42.574467Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_77cb7514a4a3",
              "venue_id": "venue_rickshaw_stop",
              "title": "BRIAN FALLON & THE PAINKILLERS",
              "event_time": "Tue Sep 29 8:00PM",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-09-29T20:00:00",
              "event_date": "2026-09-29",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Supporting Talent: Tim Barry",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "All Ages, $40.00-$45.00",
              "url": "https://wl.seetickets.us/event/brian-fallon-and-the-painkillers/695727?afflky=RickshawStop",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-06-23T11:13:14.201694Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-25T10:40:49.247198Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cb7e472db9ef",
              "venue_id": "venue_regency_ballroom",
              "title": "Cupcakke",
              "event_time": "sep 29 8pm",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-09-29T20:00:00",
              "event_date": "2026-09-29",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "These cookies enable us and our advertising partners to serve you with relevant targeted advertisements based on your interests and profiles held by us or our advertising partners and ad networks. You might see these advertisements on our sites or on other sites you visit. These technologies may collect information about you on our site, as well as third-party sites, and these technologies may be used to associate the information collected across sites and contexts. If you disable these technologies, you will still see ads, but they may be less relevant.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theregencyballroom.com/events/detail?event_id=1541578",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-08-13T10:47:46.409905Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_731518a1882c",
              "venue_id": "venue_ivy_room",
              "title": "Thelma and the Sleaze",
              "event_time": "Tuesday Sep 29 7:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-09-29T19:00:00",
              "event_date": "2026-09-29",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "ivy room presents - genre - rock n' roll",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/193991",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-08-15T10:22:49.486130Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_ivy_room|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7676ce8b05c1",
              "venue_id": "venue_great_american_music_hall",
              "title": "Chanel Beads, Mechatok, Urika's Bedroom",
              "event_time": "sep 29 8pm",
              "venue_name": "Great American",
              "event_start": "2026-09-29T20:00:00",
              "event_date": "2026-09-29",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "all ages",
              "event_types": [
                "electronic",
                "live_music"
              ],
              "price_info": "$23/$25",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_7944ad8d8917",
              "venue_id": "venue_the_chapel",
              "title": "Sophie Truax, Sasha Cee",
              "event_time": "sep 29 8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-09-29T20:00:00",
              "event_date": "2026-09-29",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "5+",
              "event_types": [
                "folk",
                "live_music"
              ],
              "price_info": "$28/$32",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_chapel|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_09d7af052503",
              "venue_id": "venue_the_warfield",
              "title": "Badbadnotgood",
              "event_time": "sep 29 7pm",
              "venue_name": "The Warfield",
              "event_start": "2026-09-29T19:00:00",
              "event_date": "2026-09-29",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "21+; KAlW 85th anniversary Benefit",
              "event_types": [
                "dj_party",
                "hiphop_rap",
                "jazz",
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_warfield|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_d2163eb0cec3",
              "venue_id": "venue_the_riptide",
              "title": "Eileen's Punk Rock and Schlock Karaoke",
              "event_time": "September 29 9:30 PM - September 30 12:30 AM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-29T21:30:00",
              "event_date": "2026-09-29",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_de420a443d4b",
              "venue_id": "venue_rio_theatre_sc",
              "title": "Aldous Harding",
              "event_time": "2026-09-29",
              "venue_name": "Rio Theatre",
              "event_start": "2026-09-29T20:00:00",
              "event_date": "2026-09-29",
              "venue_address": "1205 Soquel Ave, Santa Cruz, CA 95062",
              "description": "plus:: Sam Burton\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n  \n\n\n\n\n\n\n  Show time: 8:00 PM, doors 7:00 PMTickets: $33Advance tickets: www.eventbrite.comEvent website: www.aldousharding.comEvent website: www.folkyeah.com",
              "event_types": [
                "folk",
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.riotheatre.com/events-2/2026/9/29/aldousharding",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rio_theatre_sc",
                  "source_name": "Rio Theatre",
                  "fetched_at": "2026-08-22T11:37:08.858495Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rio_theatre_sc|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4585efd04222",
              "venue_id": "venue_crepe_place",
              "title": "Jazz on the Rocks",
              "event_time": "2026-09-29",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-29T20:00:00",
              "event_date": "2026-09-29",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "",
              "event_types": [
                "live_music",
                "jazz",
                "rock"
              ],
              "price_info": "FREE",
              "url": "https://thecrepeplace.com/shows-list/4b5sf6ktets5hscz9ha442kacsx5y9-r8779-2hpb2-wjk9t-5j98t",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_01aab7721fbf",
              "venue_id": "venue_act_theater",
              "title": "Alfred Hitchcock's North by Northwest",
              "event_time": "2026-09-29",
              "venue_name": "ACT Theater",
              "event_start": "2026-09-29",
              "event_date": "2026-09-29",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "\"I am thrilled, excited and perhaps a little apprehensive to bring the iconic North by Northwest home to the US! I just hope that American audiences will love it as much as our British audiences did. What I am not apprehensive about is bringing its message; one of nations coming together in peace and friendship to make the world a better place. I think we can all raise a glass to that! I am also itching to return to A.C.T. and San Francisco, a piece of my heart will always remain in California and I cannot wait to return to your beautiful theatre, vivid audience and magic state.\" —Emma Rice",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-08-22T13:54:28.481304Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_act_theater|2026-09-29",
              "run_id": "run_8f5d72a961cd",
              "run_label": "Alfred Hitchcock's North by Northwest, Sep 22 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_5162706aeefd",
              "venue_id": "venue_verdi_club",
              "title": "The Woodchopper's Ball",
              "event_time": "2026-09-29T21:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-09-29T21:00:00",
              "event_date": "2026-09-29",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance",
                "community"
              ],
              "price_info": "",
              "url": "https://www.verdiclub.net/events-calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-08-22T14:55:24.428239Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_verdi_club|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_18d6d2070fc2",
              "venue_id": "venue_ugly_mug",
              "title": "Gráinne Hunt with Jules Stewart",
              "event_time": "9/29/2026",
              "venue_name": "The Ugly Mug",
              "event_start": "2026-09-29T19:30:00",
              "event_date": "2026-09-29",
              "venue_address": "4640 Soquel Dr, Soquel, CA 95073",
              "description": "Bi-Continental Queer Folk Duo\n\nGRÁINNE HUNT WITH JULES STEWART",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$20",
              "url": "https://www.cafeugly.com/live-music-the-mug/2026/9/30/grainne-hunt-and-jules-stewart",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ugly_mug",
                  "source_name": "The Ugly Mug",
                  "fetched_at": "2026-08-22T15:59:35.063177Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ugly_mug|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0be982cafd0e",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Love Notes",
              "event_time": "2026-09-29",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-29",
              "event_date": "2026-09-29",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-29",
              "run_id": "run_1ea648ade196",
              "run_label": "Love Notes, Aug 22 – Oct 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_ca0b75e19ffa",
              "venue_id": "venue_kuumbwa_jazz",
              "title": "Kuumbwa Center: Téada Concert",
              "event_time": "2026-09-29 September 29 @ 7:30 pm - 9:30 pm",
              "venue_name": "Kuumbwa Jazz Center",
              "event_start": "2026-09-29T19:30:00",
              "event_date": "2026-09-29",
              "venue_address": "320-2 Cedar St, Santa Cruz, CA 95060",
              "description": "One of Ireland's premier traditional music ensembles brings centuries-old Celtic melodies to life with raw vitality and dynamic arrangements. The band showcases master musicianship across traditional instruments, from fiddle and flute to bodhrán and accordion.",
              "event_types": [
                "folk",
                "live_music"
              ],
              "price_info": "$15.25 – $31.25",
              "url": "https://www.santacruz.org/upcoming-event/kuumbwa-center-teada-concert/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_visit_santa_cruz_county",
                  "source_name": "Visit Santa Cruz County",
                  "fetched_at": "2026-08-22T18:34:05.859446Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_kuumbwa_jazz",
                  "source_name": "Kuumbwa Jazz Center",
                  "fetched_at": "2026-09-03T10:24:11.929813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kuumbwa_jazz|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_b649eda3144a",
              "venue_id": "venue_guild_theatre",
              "title": "Candlebox",
              "event_time": "SEP\n29\n8:00 PM",
              "venue_name": "Guild Theatre",
              "event_start": "2026-09-29T20:00:00",
              "event_date": "2026-09-29",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "DOORS OPEN: 7:00 PM • SHOW: 8:00 PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.guildtheatre.com/shows/candlebox-29-sep",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-08-28T10:40:15.787828Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_guild_theatre|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_65b4d00da737",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-09-29",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-09-29",
              "event_date": "2026-09-29",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-09-29",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a16258242c3c",
              "venue_id": "venue_dawn_club",
              "title": "EMILY DAY SWINGTET",
              "event_time": "Tuesday, September 29, 2026 8:00 PM 11:00 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-09-29T20:00:00",
              "event_date": "2026-09-29",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Jazz vocalist, arranger and songwriter Emily Day has been performing jazz since the age of 16. As “one of the major singers in her field” (Scott Yanow, Syncopated Times), Emily's voice carries the history of American music. On stage, she combines her deep knowledge of jazz with her whiskey-tinged timber and vocal acrobatics — simultaneously wild and precise.She currently leads the San Francisco-based swing band Cosmo Alleycats, a group that celebrates the Great American Songbook and the bygone style of songwriting endemic to it. Before relocating to San Francisco in 2012, Emily taught for several years at New England colleges and Universities. She holds a BFA in Jazz Voice from The New School in New York and an MA in Popular Music Studies from the University of Liverpool in England. \n\n\n  \n#block-c14522d6b26267dd23a3 {\n    \n    \n    \n  }\n\n  #block-c14522d6b26267dd23a3 .sqs-html-content {\n    \n    }\n\n  #block-c14522d6b26267dd23a3 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n\n\n\n  \n  \n\n  \n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-c14522d6b26267dd23a3 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-c14522d6b26267dd23a3 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/emily-day-ww28p-rky3a-9x5fd",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-08-28T15:32:50.415811Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fb056e13587f",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-09-29",
              "venue_name": "De Young",
              "event_start": "2026-09-29",
              "event_date": "2026-09-29",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-29",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_993215bcaf5c",
              "venue_id": "venue_david_brower_center",
              "title": "WACD Annual Meeting",
              "event_time": "2026-09-29T08:00:00",
              "venue_name": "David Brower Center",
              "event_start": "2026-09-29T08:00:00",
              "event_date": "2026-09-29",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-08-29T00:08:40.517051Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-09-29",
              "run_id": "run_2e2822ad5e4f",
              "run_label": "WACD Annual Meeting, Sep 29 – Sep 30",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_9fc05e2c548a",
              "venue_id": "venue_rootstock_arts",
              "title": "Rohan Upamaka",
              "event_time": "Tue, 29 Sep 2026\n6:00 PM (PDT)",
              "venue_name": "Rootstock Arts",
              "event_start": "2026-09-29T18:00:00",
              "event_date": "2026-09-29",
              "venue_address": "5741 Telegraph Ave, Oakland, CA",
              "description": "RootStock Arts is hosting a Weekly Raga Concert + Jam Session at 5741 Telegraph Ave in Oakland . Running 6:00 PM to 9:00 PM on Tuesdays in September , this all-ages, alcohol-free community event features a two-set lineup each week. The 1st Set ($10+ sliding scale/donation) highlights a rotating featured act. September 29th features: Rohan Upamaka Following the opening performance, the 2nd Set transitions into an Open, Raga-friendly Classical Jam Session , inviting musicians and classical music enthusiasts of all levels to participate and collaborate.",
              "event_types": [
                "live_music",
                "indian_classical"
              ],
              "price_info": "",
              "url": "https://www.viewcy.com/event/weekly_raga_concert__6",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rootstock_arts",
                  "source_name": "Rootstock Arts",
                  "fetched_at": "2026-08-29T00:16:02.821734Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rootstock_arts|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6403e797ef1a",
              "venue_id": "venue_punch_line",
              "title": "JOE KLOCEK & FRIENDS",
              "event_time": "Sep 29, 2026 7:30 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-29T19:30:00",
              "event_date": "2026-09-29",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Join veteran stand-up comedian Joe Klocek, known for his appearances on Comedy Central and NBC's Last Comic Standing, for a night of sharp storytelling and crowd work. This showcase at the Punch Line features Klocek headlining alongside a lineup of talented guest comedians.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/joe-klocek-friends-san-francisco-california-09-29-2026/event/1C0064E6D15A2310",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1fa2505c499a",
              "venue_id": "venue_yoshis",
              "title": "SPYRO GYRA",
              "event_time": "September 29, 2026 - 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-09-29T19:30:00",
              "event_date": "2026-09-29",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "CONTEMPORARY JAZZ ICONS",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$44 - $84",
              "url": "https://yoshis.com/events/buy-tickets/spyro-gyra-6/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e26c85ac79c0",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue Sep 29 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-09-29T19:00:00",
              "event_date": "2026-09-29",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "Hotel Utah's weekly Open Bluegrass Jam! Tuesday nights from about 7pm onwards. It’s free, open to the public and all are welcome to play and / or listen. So come out and take part in the Bay Area’s bluegrass scene as we continue to rebuild after covid - We jam until we are done (but not past 10:30 as we have day jobs too). Come join this good time at the Hotel Utah.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690216?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-08-31T12:12:52.447528Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_15546f90686d",
              "venue_id": "venue_tupelo",
              "title": "DJ Purple Karaoke",
              "event_time": "Tuesday September 29th 9:00PM - 1:00AM",
              "venue_name": "Tupelo",
              "event_start": "2026-09-29T21:00:00",
              "event_date": "2026-09-29",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "DJ Purple is BACK! Since COVID imploded our world, we have gotten more calls wondering when Karaoke w/ DJ Purple was returning than anything else, and we sell a lot of ribs! Go get your vaccination shots, drink some tea with honey, and belt out your best songs with your friends. Fog machine standard.",
              "event_types": [
                "dj_party",
                "community"
              ],
              "price_info": "",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d9f79189ff30",
              "venue_id": "venue_f8",
              "title": "INTERZONE: Darkwave Tuesdays",
              "event_time": "2026-09-29T21:00:00",
              "venue_name": "F8",
              "event_start": "2026-09-29T21:00:00",
              "event_date": "2026-09-29",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "Weekly darkwave and EBM dance night featuring guest DJs Rafael Fierro and Sneakerz alongside resident Hex Embrace.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$5 (Free before 10:00 PM)",
              "url": "https://ra.co/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-09-02T10:39:00.610887Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_f8|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_ff3bafb67b99",
              "venue_id": "venue_madrone_art_bar",
              "title": "LIVE MODEL TUESDAY SKETCH",
              "event_time": "September 29 @ 6:30 pm - 8:30 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-29T18:30:00",
              "event_date": "2026-09-29",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "LIVE MODEL TUESDAY SKETCH hosted by Sketchboard Co. $15 fee to draw the model Every Tuesday 6:30 to 8:30 PM with live music by Twango Bring your own materials No Photos Please Respect the Models",
              "event_types": [
                "live_music",
                "folk",
                "workshop",
                "art"
              ],
              "price_info": "$15 fee",
              "url": "https://madroneartbar.com/event/livemodelsketch-2026-06-23/2026-09-29/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1170a6bd2043",
              "venue_id": "venue_madrone_art_bar",
              "title": "Karaoke",
              "event_time": "September 29 @ 9:30 pm - 12:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-29T21:30:00",
              "event_date": "2026-09-29",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "KARAOKE With host Lauren Yellow Music starts at 9:30pm",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/glitter-tears-karaoke-18-2026-02-04-2026-02-04-2026-04-07-2026-04-21/2026-09-29/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cc816a739be0",
              "venue_id": "venue_ccrma",
              "title": "Morton Feldman Centenary Concert II",
              "event_time": "Tue, 09/29/2026 - 7:30pm - 9:00pm",
              "venue_name": "CCRMA",
              "event_start": "2026-09-29T19:30:00",
              "event_date": "2026-09-29",
              "venue_address": "660 Lomita Dr, Stanford, CA 94305",
              "description": "The BlackBox Ensemble of New York City performs music of American composer Morton Feldman. The program will also include four new compositions by Stanford Graduate composers Lemon Guo, Calvin Van Zytveld, Celeste Betancur and Brian Brown, which respond to Feldman’s work, especially his unique experiments in the organization and perception of time through sound.",
              "event_types": [
                "live_music",
                "classical",
                "experimental"
              ],
              "price_info": "FREE",
              "url": "https://ccrma.stanford.edu/events/morton-feldman-centenary-concert-ii-stopping-time-how-music-alters-time-perception",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ccrma",
                  "source_name": "CCRMA",
                  "fetched_at": "2026-09-03T10:21:09.754643Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ccrma|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_244a71452d5d",
              "venue_id": "venue_piedmont_piano_company",
              "title": "Joey Alexander",
              "event_time": "2026-09-29T20:00:00",
              "venue_name": "Piedmont Piano Co",
              "event_start": "2026-09-29T20:00:00",
              "event_date": "2026-09-29",
              "venue_address": "1728 San Pablo Ave, Oakland, CA 94612",
              "description": "Jazz Piano Masters Series: Joey Alexander, solo, performing music from his album \"Celestial Keeper.\"",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "General Admission: $35 in advance / $40 at the door",
              "url": "https://piedmontpiano.com/calendar/2026/9/29/joey-alexander",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_piano_company",
                  "source_name": "Piedmont Piano Co",
                  "fetched_at": "2026-09-03T10:22:09.546608Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_piedmont_piano_company|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_780367d29ff8",
              "venue_id": "venue_local_edition",
              "title": "The Local Edition Jazz Orchestra",
              "event_time": "September 29, 2026 8:00 PM",
              "venue_name": "Local Edition",
              "event_start": "2026-09-29T20:00:00",
              "event_date": "2026-09-29",
              "venue_address": "691 Market St, San Francisco, CA 94105",
              "description": "Live every Tuesday exclusively at Local Edition! The Local Edition Jazz Orchestra is a diverse group of long-time friends that have played alongside one another for years. The ensemble ranges from having as little as 8 to as many as 18 participants performing with occasional guest singers such as Billy Valentine, Bud E. Luv (aka Bobby Vickers), and Tom Scott.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.localeditionsf.com/music-calendar/kwazn5t9r7ak59x-h3dwl-7hzkw-awb8n-7my9y-xbp55-lecjc-ayh5z-nn75p-82brr-yenxa-3apc9-ltjtp-t4pb2-7ww2b-ncbzf-3bayn-msa2a",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_local_edition",
                  "source_name": "Local Edition",
                  "fetched_at": "2026-09-03T12:59:31.047351Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_local_edition|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a967954b968f",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Happy Hour",
              "event_time": "29 September 2026",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-29",
              "event_date": "2026-09-29",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Take advantage of Etcetera Wine Bar's happy hour specials on select drinks and light fare. It offers a relaxed neighborhood setting to unwind after work or kick off an evening of live music.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-09-03T13:50:21.930604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_70386bb84b87",
              "venue_id": "venue_caravan_lounge",
              "title": "Karaoke with Ronnie Roach",
              "event_time": "09/29/2026",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-09-29",
              "event_date": "2026-09-29",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "Welcome to The Caravan Lounge THE CARAVAN LOUNGE is a friendly, owner-operated bar located in the heart of downtown San Jose. As well as being one of San Jose’s oldest live music venues, the Caravan provides other fun activities such as karaoke, comedy, burlesque, pool table, and DJ nights. The Caravan is also extremely affordable for those trying to stretch a budget. And let’s not forget the music! All the shows at the Caravan are FREE! Open 7 days a week 2pm – Close “Aside from the obvious draw of affordable libations poured by heavy-handed barkeeps, The Caravan sets itself apart from other no-frills bars as the place to go to see up-and-coming bands. The bar has hosted plenty of local bands’ first shows, and regularly features smaller touring acts. If you’re a music fan always on the lookout for your new favorite group, make sure to pay attention to who is coming to Caravan.” -Metro FEATURED VIDEOS – Go to our YouTube Channel by clicking here to see more… SEPTEMBER 2026 TUES. SEPT 1st- Karaoke with Ronnie Roach WED. SEPT 2nd – The Caravan Lounge Comedy Show hosted by Chelsea Costanza THURS. SEPT 3rd – SWEAT with DJ SNAQ FRI. SEPT 4th – Rebelskamp, Magick Blues Band, TBA SAT. SEPT 5th – Skool Of Sharks TUES. SEPT 8th- Karaoke with Ronnie Roach WED. SEPT 9th – The Caravan Lounge Comedy Show Hosted by Nyoki THURS. SEPT 10th – Shrine Goth DJ Night with Hex Embrace, C_Death, and Owen FRI. SEPT 11th – Circus Of Sin 10 Year Sinnaversary! Hosted By Some Guy SAT. SEPT. 12th – CaveFest II We Love You Curtis Castro! Abysmal Piss, Ominous Ruin, Lost To The Void TUES. SEPT 15th – Karaoke with Ronnie Roach WED. SEPT 16th -The Caravan Lounge Comedy Show Hosted by Ato Walker THURS. SEPT 17th – TBA FRI. SEPT 18th – TBA SAT. SEPT 19th – Facekicker, American Standard, 12 Steps To Nothing TUES. SEPT 22nd – Karaoke with Ronnie Roach WED. SEPT 23rd- The Caravan Lounge Comedy Show hosted by Matt Kennedy THURS. SEPT 24th – Sweethearts DJ Night FRI. SEPT 25th – Ding Mao, Diamantide, Clou",
              "event_types": [
                "community"
              ],
              "price_info": "FREE",
              "url": "http://s172518151.onlinehome.us/caravan/site/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-09-03T14:20:40.572990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_49c2a4c2c058",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-09-29",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-29",
              "event_date": "2026-09-29",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "San Francisco Playhouse. A beloved puppet takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "Tickets On Sale",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-09-04T10:15:07.852694Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-29",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0f714057427c",
              "venue_id": "venue_specs",
              "title": "Max Sanders & Basch Jernigan Duo (NOLA)",
              "event_time": "Tuesday, September 29, 2026 6:00 PM - 8:00 PM",
              "venue_name": "Specs' Twelve Adler Museum Cafe",
              "event_start": "2026-09-29T18:00:00",
              "event_date": "2026-09-29",
              "venue_address": "12 William Saroyan Pl, San Francisco, CA 94133",
              "description": "Basch Jernigan is a singer, songwriter, and musician from Gulf Shores, Alabama and based out of New Orleans, LA. With a soulful voice accompanied by guitar and harmonica, Basch combines elements of blues, folk, and soul with a style inspired by artists such as Taj Mahal and The Wood Brothers. Jernigan has been writing, performing, and releasing music on the gulf coast for over a decade. Basch toured and recorded as the frontman for New Orleans rock and soul band Roadside Glorious from 2016 to 2020 and released his debut singles - recorded at Marigny Studios in New Orleans - in 2025.\n\nMax Sanders is a New Orleans-Raised singer-songwriter and guitarist who has made a mark on the music scene through extensive national touring, both as a solo artist and in support of notable acts like Maggie Koerner, Hollyrock, and Lynn Drury. His lively performances have taken him from the West Coast to the West Village and to major music festivals like the New Orleans Jazz & Heritage Festival, French Quarter Fest, and Austin City Limits. He has also opened for artists such as Duane Betts, Melvin Seals(Jerry Garcia Band) and George Porter Jr.(The Meters). As a songwriter, Max brings together rugged western influence with the laid-back traditions of New Orleans’ culture. In his latest collaboration, he joins forces with Grammy-winning producer Aaron Glemboski and artist Cast Iron Shoes to create a rich tapestry of high-desert Americana and swampy soul, highlighting Sanders' ability to bridge diverse musical landscapes.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://www.specsbarsf.com/events/max-sanders-basch-jernigan-duo-nola",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_specs",
                  "source_name": "Specs' Twelve Adler Museum Cafe",
                  "fetched_at": "2026-09-04T10:38:49.428018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_specs|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3e7be7079107",
              "venue_id": "venue_sevys_aptos",
              "title": "Live Music: Mahaji",
              "event_time": "September 29, Tuesday 6:00 PM",
              "venue_name": "Sevy's Bar & Kitchen",
              "event_start": "2026-09-29T18:00:00",
              "event_date": "2026-09-29",
              "venue_address": "7500 Old Dominion Ct, Aptos, CA 95003",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sevys_aptos",
                  "source_name": "Sevy's Bar & Kitchen",
                  "fetched_at": "2026-09-04T10:39:41.919005Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sevys_aptos|2026-09-29",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-09-30": {
          "date": "2026-09-30",
          "updated_at": "2026-09-04T10:39:45.254892Z",
          "events": [
            {
              "event_id": "evt_dc522e642355",
              "venue_id": "venue_greek_theatre",
              "title": "Jack Johnson, G. Love",
              "event_time": "September 30, 2026 6:30 pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-09-30T18:30:00",
              "event_date": "2026-09-30",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "Two Nights!\nSURFILMUSIC Tour 2026 - G. Love",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thegreekberkeley.com/events/jack-johnson-260930",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-04-07T10:55:48.132614Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_greek_theatre|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e297a998cc59",
              "venue_id": "venue_the_independent",
              "title": "CHASING ABBEY",
              "event_time": "9.30 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-09-30T20:00:00",
              "event_date": "2026-09-30",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List Chasing Abbey Ali Coyle Wed, Sep 30 Doors: 7:30 pm | Show: 8:00 pm 18 and up Please note - there is a delivery delay set for 2 weeks prior to show. Buy Tickets Share + Google Calendar Related Events Wax + DJ Hoppa Aug 28 Buy Tickets Brenn! Aug 29 Buy Tickets Artists Chasing Abbey Chasing Abbey - the award-winning trio from Tullamore, Ireland—is returning to the U.S. in autumn 2026 for a twenty-four-date North American tour. Known for combining cutting-edge electronic production with the heart of traditional Irish music, Chasing Abbey has become one of Ireland’s most exciting and dynamic acts. With massive hits like “Arís is Arís,” “Íorónta,” and “Oh My Johnny,” the group has earned multiple platinum singles and packed venues across Ireland and the world with their electrifying live shows. Their latest release, Íoronta, is climbing the charts and igniting a global audience, setting the stage for an unforgettable American tour. Ali Coyle American-Irish musician and singer-songwriter, Ali Coyle, intertwines dream-folk and sapphic indie rock genres to tell poignant stories, with lyrics steeped in metaphor and flourishing instrumentals. Ali’s debut studio EP, Songs For My Therapist , was released in 2021 to critical acclaim, garnering praise from publications including Atwood Magazine, Guitar Girl Magazine, and The Los Angeles Times. In 2026, Ali is performing a string of shows as a trio with bandmates, Brandon Ramirez and Timothy Andrews. Starting in California, they are opening for Irish music group, Chasing Abbey, before traveling to perform in Dublin with Irish artist, Shobsy. Back to Event List Upcoming Events Wax + DJ Hoppa Fri Aug 28 Brenn! Sat Aug 29 Tonic Walter Fri Sep 4 The Emo Night Tour Sat Sep 5 PawPaw Rod Tue Sep 8 Kevin Atwater Wed Sep 9 Rules Thu Sep 10 Arlo Fri Sep 11 BL3SS – 360 Set – North American Tour 2026 Sat Sep 12 Towa Bird Sun Sep 13 The Tear Garden (The Legendary Pink Dots & cEvin Key) Tue Sep 15 Mustard Service Thu Sep 17",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/chasing-abbey/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-18T07:25:47.483758Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_independent|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5998e3594fdf",
              "venue_id": "venue_the_chapel",
              "title": "Failure: Rising Skyline",
              "event_time": "Wed Sep 30 2026 8:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-09-30T20:00:00",
              "event_date": "2026-09-30",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "Alternative space-rock band FAILURE performs on the Rising Skyline 2026 tour with support from quannnic.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35.00-$235.00",
              "url": "https://wl.seetickets.us/event/failure-rising-skyline-2026/688890?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-04-25T23:00:07.126857Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_chapel|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cb4771ce6d43",
              "venue_id": "venue_the_warfield",
              "title": "Jpegmafia",
              "event_time": "Sep 30 6:30pm",
              "venue_name": "The Warfield",
              "event_start": "2026-09-30T18:30:00",
              "event_date": "2026-09-30",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "Sep 30 Jpegmafia, Redveil, Matt Proxy 18+ 6:30pm/7:30pm #",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.thewarfieldtheatre.com/events/detail/1408127",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-05-30T19:38:47.416379Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_warfield|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ce8cde4c5d81",
              "venue_id": "venue_mountain_winery",
              "title": "Pat Benatar & Neil Giraldo",
              "event_time": "Sep 30, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-09-30T19:30:00",
              "event_date": "2026-09-30",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Pat Benatar & Neil Giraldo Lee DeWyze Wednesday, September 30 Doors 5:30PM , Show 7:30PM All Ages to Enter, 21 & Over to Drink The Mountain Winery Buy Tickets Star Seating Event Info No refunds or exchanges. All shows are rain or shine. Children age 3 and older require a ticket. A child under the age of 3 is considered a lap child and does not require a ticket. For directions, dining, parking, or carpool information, please visit www.mountainwinery.com. For information on how to purchase VIP season tickets including suites and box seats, please visit https://www.mountainwinery.com/vip-seating/ Doors open 2 hours prior to the show time. Seating begins 1 hour prior to the show time. Artist Info In a pop culture world defined by its perpetual changes, the partnership of singer songwriter Pat Benatar and producer-musician Neil Giraldo has been a potent, steadfast union that has soared to the top of the charts and into fans’ hearts on their own terms. Her staggering vocals and take-no-prisoners attitude, along with his trailblazing artistry as a guitarist, producer and songwriter, forged the undeniable chemistry and unique sound that created eternal rock hits including “ We Belong ,” “Invincible ,” “ Love Is A Battlefield ,” “ Promises In The Dark ,” “ We Live For Love ,” “Heartbreaker ” and “ Hell Is For Children .” Their stunning achievements are a testament to their vision. Together, Benatar and Giraldo have created two multi-platinum, five platinum and three gold albums, as well as 19 Top 40 hits. They have sold over 36 million records worldwide and have won an unprecedented four consecutive GRAMMY® awards. They have also been feted with three American Music Awards, a People’s Choice Award, a 2008 induction into the Long Island Music Hall of Fame, and most recently have become Rock & Roll Hall of Fame inductees.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1386322",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-06-02T10:55:16.293558Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_mountain_winery|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_666861a67ce4",
              "venue_id": "venue_bimbos_365",
              "title": "Emei",
              "event_time": "sep 30 8pm",
              "venue_name": "Bimbos 365",
              "event_start": "2026-09-30T20:00:00",
              "event_date": "2026-09-30",
              "venue_address": "1025 Columbus Ave, San Francisco, CA 94133",
              "description": "Another Planet presents Emei on the Night at the Opera Tour with meet & greet VIP package options. All ages.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://bimbos365club.com/tm-event/emei/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-17T10:47:20.580351Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_bimbos_365",
                  "source_name": "Bimbos 365",
                  "fetched_at": "2026-06-19T13:57:23.431504Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bimbos_365|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7755aa025414",
              "venue_id": "venue_regency_ballroom",
              "title": "Chat Pile, Soul Glo, Virga",
              "event_time": "sep 30 7:30pm",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-09-30T19:30:00",
              "event_date": "2026-09-30",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Who Loves The Sun Tour 2026 — with Soul Glo, Virga",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theregencyballroom.com/events/detail?event_id=1477938",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-25T10:40:49.247198Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-06-29T11:36:25.735100Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b7ec1a3a8284",
              "venue_id": "venue_ashby_stage",
              "title": "The Fall Show",
              "event_time": "2026-09-30T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-09-30T20:00:00",
              "event_date": "2026-09-30",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Long-lasting love is marked by both comfort and conflict. In The Fall Show, an older couple's unexpected romance unfolds against a maelstrom of memory and movement. Lovers collide, chaos erupts, and tenderness persists in an intimate examination of love 'til the very end.",
              "event_types": [
                "theater"
              ],
              "price_info": "$25 - $80 (sliding scale)",
              "url": "https://shotgunplayers.org/online/article/the-fall-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-06-30T10:25:39.676498Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_shotgun_players",
                  "source_name": "Shotgun Players",
                  "fetched_at": "2026-07-04T10:27:48.342982Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-09-30",
              "run_id": "run_538dc31103b5",
              "run_label": "The Fall Show, Sep 26 – Oct 25",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3211a7c60733",
              "venue_id": "venue_rickshaw_stop",
              "title": "Porch Light",
              "event_time": "sep 30 8pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-09-30T20:00:00",
              "event_date": "2026-09-30",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "Supporting Talent: opener tba",
              "event_types": [
                "live_music"
              ],
              "price_info": "All Ages, $20.00-$25.00",
              "url": "https://www.ticketmaster.com/event/1C0064EAB3281ACF?camefrom=CFC_ANOTHERPLANET_artist&brand=anotherplanet",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-18T11:36:11.622544Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_rickshaw_stop",
                  "source_name": "Rickshaw Stop",
                  "fetched_at": "2026-07-20T11:19:05.071708Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c95b98e381d9",
              "venue_id": "venue_castro_theater",
              "title": "Twin Temple",
              "event_time": "sep 30 8pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-09-30T20:00:00",
              "event_date": "2026-09-30",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$48+",
              "url": "https://thecastro.com/events/twin-temple-260930",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-24T10:42:11.416886Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-07-28T17:15:02.064805Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_5522452076eb",
              "venue_id": "venue_august_hall",
              "title": "Show Me The Body, Whispers, Jivebomb",
              "event_time": "sep 30 6:30pm",
              "venue_name": "August Hall",
              "event_start": "2026-09-30T18:30:00",
              "event_date": "2026-09-30",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "New York noise-rock and hardcore punk band Show Me The Body brings their intense live show to August Hall. Known for blending banjo-led riffs with aggressive punk energy, they offer a powerful performance.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$37.25",
              "url": "https://www.augusthallsf.com/tm-event/show-me-the-body/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-07-29T14:20:13.717420Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_628a2369cf51",
              "venue_id": "venue_thee_stork_club",
              "title": "Buddy Junior, Quinine, IX of Swords",
              "event_time": "September 30 2026 8:00PM",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-09-30T20:00:00",
              "event_date": "2026-09-30",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Wed., 9/30/26 Buddy Junior, Quinine, Shape, IX of Swords 8:00pm, $12 adv, $15 door Buddy Junior https://buddyjunior.bandcamp.com/album/rust https://www.instagram.com/buddyjunior.222/?hl=en Quinine https://qui9.bandcamp.com/ https://www.instagram.com/quininefanaccount Shape IX of Swords https://www.instagram.com/ix.ofswords https://ixofswords.bandcamp.com/album/i-cant-imagine-how-it-felt-to-live",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$12/$15",
              "url": "https://wl.seetickets.us/event/buddy-junior-quinine-ix-of-swords/700750?afflky=TheeStorkClub",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-08-06T11:16:26.119873Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_59f84503345b",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Cult Strange",
              "event_time": "Wednesday September 30\n          2026 8:00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-09-30T20:00:00",
              "event_date": "2026-09-30",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "deathrock post-punk, post-punk shoegaze, post-punk psychedelic",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15 in\n            advance /\n  $20 at the door",
              "url": "http://www.bottomofthehill.com/20260930.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-08-09T10:54:41.013216Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c4d84d654df9",
              "venue_id": "venue_san_jose_civic",
              "title": "Las Alucines",
              "event_time": "Sep 30, 2026 @ 8:30pm",
              "venue_name": "San Jose Civic",
              "event_start": "2026-09-30T20:30:00",
              "event_date": "2026-09-30",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "Prepárate para una noche llena de energía, risas y locura con Las Alucines, el fenómeno escénico que ha conquistado a miles de fans en Latinoamérica a través de su podcast. Con su estilo irreverente, carisma desbordante y un toque de picardía, este dúo combina comedia, música y situaciones cotidianas...",
              "event_types": [
                "comedy"
              ],
              "price_info": "Varies",
              "url": "https://events.timely.fun/jc0x91t0/event/78347547",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-08-09T12:20:24.263699Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-08-12T10:48:24.659205Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_12ad86b63214",
              "venue_id": "venue_great_american_music_hall",
              "title": "Beth Orton",
              "event_time": "sep 30 8pm",
              "venue_name": "Great American",
              "event_start": "2026-09-30T20:00:00",
              "event_date": "2026-09-30",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "all ages; seated",
              "event_types": [
                "folk",
                "live_music"
              ],
              "price_info": "$39.50/$45",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_cca204b11603",
              "venue_id": "venue_neck_of_the_woods",
              "title": "Author & Punisher, Guiltless",
              "event_time": "sep 30 8pm",
              "venue_name": "Neck of the Woods",
              "event_start": "2026-09-30T20:00:00",
              "event_date": "2026-09-30",
              "venue_address": "406 Clement St, San Francisco, CA 94118",
              "description": "all ages",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$20/$25",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_neck_of_the_woods|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_a9342015e3be",
              "venue_id": "venue_brick_and_mortar",
              "title": "Doom Gong",
              "event_time": "sep 30 8pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-09-30T20:00:00",
              "event_date": "2026-09-30",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Event Details KEXP and Brick & Mortar Music Hall Presents Doom Gong September 30, 2026 8:00 pm PDT (Doors: 7:00 pm ) Brick and Mortar Music Hall , 1710 Mission Street , San Francisco, CA ( map ) $27.58 Buy Tickets + Google Calendar Doom Gong Formed in 2022 in Louisville, Kentucky by 7 music school nerds, DOOM GONG has made a name for themselves internationally with their own home-baked genre, Denim Psych - a hodgepodge of psychedelic rock, jazz fusion, prog rock, bedroom pop, lo-fi, contemporary classical music, as well as blood, sweat, and a lot of denim. Having amassed a catalogue of 3 rock opera-esque LP’s, DOOM GONG , Dream Behemoth and MEGAGONG , and 1 Live album, Live at the Whirling Tiger , in only 3 years, DOOM GONG has quickly become a mainstay of the psych scene in the U.S. and abroad, having performed their enigmatic and seamless live shows alongside the likes of Amyl and the Sniffers, The Black Angels, BADBADNOTGOOD, Allah Las, King Buffalo, Bass Drum of Death, Death Valley Girls, HOLY WAVE, among many others. The denim assemblage also performs at many national and regional festivals across the continent including Treefort Music Fest (US), Sled Island (CAN), Offbeat Music Fest (US), Purple City Music Festival (CAN), Big Stomp (US) Back Alley Ballyhoo (US), Swampfest (CAN), Expansion Psychedelic Festival (US), Moonshiners Ball (US), and Jorts Fest (US). With another 6 albums in the chamber, a European tour coming summer of 2026 and the rest of the world soon after; DOOM GONG isn’t done yet, not by a long shot. THE GONG RINGS ON!! JUST ANNOUNCED Geordie Kieffer December 06, 2026 RC AVENUE October 04, 2026 Dani Offline — Lover's Discourse Live October 13, 2026 Denise Julia November 14, 2026 AZ Chike November 05, 2026 Follow us on Instagram Join the Brick & Mortar Newsletter",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$27.58",
              "url": "https://www.brickandmortarmusic.com/tm-event/doom-gong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-09-03T11:13:51.689688Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_7d954acf2929",
              "venue_id": "venue_the_riptide",
              "title": "Bar Trivia with @SFTrivia",
              "event_time": "Wednesday, September 30 7:00 PM - 9:00 PM",
              "venue_name": "The Riptide",
              "event_start": "2026-09-30T19:00:00",
              "event_date": "2026-09-30",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "Wednesday nights we're here to help reinforce how smart you are or remind you otherwise. Come in and test your knowledge with the folks @SFTrivia",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e9b8489cbd0d",
              "venue_id": "venue_gray_area",
              "title": "In-Person Intensive Course",
              "event_time": "09/30/2026",
              "venue_name": "Gray Area",
              "event_start": "2026-09-30",
              "event_date": "2026-09-30",
              "venue_address": "2665 Mission St, San Francisco, CA 94110",
              "description": "Sieanele Ponce (she/her), also known as ecdysis.exp, is a Filipina installation artist and experience designer based in the Bay Area. She builds immersive, multisensory environments using projection, light, textiles, and sensor-responsive elements — site-specific installations that explore transformation, perception, and collective ritual. Her work draws on her background in psychological and brain sciences, treating environments as active participants in how people feel, connect, and make meaning. She has created installations and experiences for Gray Area, Parameter Festival, and Bituin Studio, and her work was featured in Gray Area's Local Memory Showcase (2026) and Earthseed Remnants at ARTogether (2026). Working primarily with MadMapper, she is especially interested in making projection mapping accessible as a tool for atmosphere, storytelling, and presence. She holds a B.S. in Psychological & Brain Sciences from UC Santa Barbara.",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://grayarea.org/event/in-person-intensive-course-madmapper-101-projection-mapping/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_gray_area",
                  "source_name": "Gray Area",
                  "fetched_at": "2026-08-22T11:08:17.231968Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_gray_area|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_87a06dc67196",
              "venue_id": "venue_crepe_place",
              "title": "Two of Us Live Jazz",
              "event_time": "2026-09-30",
              "venue_name": "The Crepe Place",
              "event_start": "2026-09-30T20:00:00",
              "event_date": "2026-09-30",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "TICKETS",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "FREE",
              "url": "https://thecrepeplace.com/shows-list/two-of-us-live-jazz-on-the-garden-stage-saturday-may-30-from-5-to-7pm-free-event",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3701a3c0dc00",
              "venue_id": "venue_act_theater",
              "title": "Alfred Hitchcock's North by Northwest",
              "event_time": "2026-09-30",
              "venue_name": "ACT Theater",
              "event_start": "2026-09-30",
              "event_date": "2026-09-30",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "\"I am thrilled, excited and perhaps a little apprehensive to bring the iconic North by Northwest home to the US! I just hope that American audiences will love it as much as our British audiences did. What I am not apprehensive about is bringing its message; one of nations coming together in peace and friendship to make the world a better place. I think we can all raise a glass to that! I am also itching to return to A.C.T. and San Francisco, a piece of my heart will always remain in California and I cannot wait to return to your beautiful theatre, vivid audience and magic state.\" —Emma Rice",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-08-22T13:54:28.481304Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_act_theater|2026-09-30",
              "run_id": "run_8f5d72a961cd",
              "run_label": "Alfred Hitchcock's North by Northwest, Sep 22 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_e851d5be4964",
              "venue_id": "venue_verdi_club",
              "title": "Scuff Queer Line Dancing & Two-Stepping",
              "event_time": "2026-09-30T20:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-09-30T20:00:00",
              "event_date": "2026-09-30",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance",
                "community"
              ],
              "price_info": "",
              "url": "https://www.verdiclub.net/events-calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-08-22T14:55:24.428239Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_verdi_club|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d7be04120118",
              "venue_id": "venue_crows_nest_sc",
              "title": "DON CARUTH & TED WELTY",
              "event_time": "Wednesday September 30th 07:00 PM",
              "venue_name": "The Crow's Nest",
              "event_start": "2026-09-30T19:00:00",
              "event_date": "2026-09-30",
              "venue_address": "2218 East Cliff Dr, Santa Cruz, CA 95062",
              "description": "Wednesday September 30th Starts at 07:00 PM",
              "event_types": [
                "live_music"
              ],
              "price_info": "$3 cover",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crows_nest_sc",
                  "source_name": "The Crow's Nest",
                  "fetched_at": "2026-08-22T15:19:13.909618Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crows_nest_sc|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_51fbb88d3b14",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Love Notes",
              "event_time": "2026-09-30",
              "venue_name": "San Jose CPA",
              "event_start": "2026-09-30",
              "event_date": "2026-09-30",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-09-30",
              "run_id": "run_1ea648ade196",
              "run_label": "Love Notes, Aug 22 – Oct 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_8dc627244716",
              "venue_id": "venue_sc_museum_nat_history",
              "title": "Sip & Draw: Butterflies In Flight",
              "event_time": "September 30 @ 6:00 pm",
              "venue_name": "Santa Cruz Museum of Natural History",
              "event_start": "2026-09-30T18:00:00",
              "event_date": "2026-09-30",
              "venue_address": "1305 E Cliff Dr, Santa Cruz, CA 95062",
              "description": "Butterflies are known for intricate wing patterns and flitting flight patterns. They are also indicators of the health of our environment and ecosystems, especially those that migrate across our state and region.  Join Megan Gnekow, a local scientific illustrator, for an evening exploring the beauty and resilience of some of our most famous flying friends...",
              "event_types": [
                "workshop",
                "community",
                "art"
              ],
              "price_info": "",
              "url": "https://santacruzmuseum.org/event/butterflies-in-flight/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sc_museum_nat_history",
                  "source_name": "Santa Cruz Museum of Natural History",
                  "fetched_at": "2026-08-22T19:25:35.374632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sc_museum_nat_history|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_929c3b2ad5a8",
              "venue_id": "venue_the_sound_room",
              "title": "StorySlam Oakland",
              "event_time": "Wednesday, September 30, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-09-30T19:30:00",
              "event_date": "2026-09-30",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "StorySlam Oakland is Oakland's longest-running true storytelling show, where people tell short and true stories from their lives. Or just listen and laugh.\n\nHow it works: The hosts will encourage audience members to shout out ideas for themes. It could be a theme you have a story about, or a theme you want to hear some true stories about. We'll write them down and then the fun begins.\n\nYou can also take your time between now and the show and craft a story on our pre-announced theme, which is Decisions Decisions. We usually have time for about 10 storytellers. Any story is good as long as it's true, about you, and five to six minutes long. We'll have a timer to keep you on track. Remember, no notes or reading allowed. You'll tell it like you're telling friends around the dinner table.\n\nHosted by creator Julie Soller & comic Inanc Ino.\n\nTickets at StorySlam Oakland",
              "event_types": [
                "literary"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/f69tb7h2db7wddma7s66xnakgccrxl",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-08-26T10:25:42.190144Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_70bc165e051a",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Little Shop of Horrors",
              "event_time": "2026-09-30",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-09-30",
              "event_date": "2026-09-30",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Book & Lyrics by Howard Ashman, Music by Alan Menken. Based on the film by Roger Corman, Screenplay by Charles Griffith. Directed by Ben Villegas Randle, Musical Direction by Jad Bernardo, Choreography by Leslie Waggoner",
              "event_types": [
                "theater",
                "live_music"
              ],
              "price_info": "",
              "url": "https://nctcsf.org/event/little-shop/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-08-26T11:06:39.262369Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-09-30",
              "run_id": "run_5315ef200ae4",
              "run_label": "Little Shop of Horrors, Sep 12 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_171032034bd1",
              "venue_id": "venue_medicine_for_nightmares",
              "title": "Reclaiming Democracy and Economy from AI",
              "event_time": "2026-09-30 7:00 PM",
              "venue_name": "Medicine for Nightmares",
              "event_start": "2026-09-30T19:00:00",
              "event_date": "2026-09-30",
              "venue_address": "3036 24th St, San Francisco, CA 94110",
              "description": "Join moderator Supervisor Jackie Fielder for an evening exploring how we, as everyday people, can take back our economy and democracy from artificial intelligence. We will explore what we even mean when we talk about “AI,” whether we’re in an AI bubble, the impacts of AI, whether we should be afraid of AI, and who’s behind the AI hype. This panel is jam-packed with women authors whose books have inspired critical conversations about AI and the tech sector at large: Dr. Alex Hanna, co-author of The AI Con, Wendy Liu, author of Abolish Silicon Valley, and Tamara Kneese, author of Notes Toward a Digital Workers’ Inquiry.\n\nWendy Liu made a career switch from software engineer to writer, a move that was sparked by reading lots of books at a time when her startup was tanking. Now she mostly writes about the horrors of Silicon Valley and why tech workers need to organise. She is the author of Abolish Silicon Valley.\n\nDr. Alex Hanna is a writer and sociologist of technology, labor, and politics. She is the Director of Research at the Distributed AI Research Institute (DAIR). Her work examines how new computational technologies--such as AI and machine learning--exacerbate racial, gender, and class inequality through their data practices and effects on labor. With Emily M. Bender, Dr. Hanna is the co-author of The AI Con (Harper, 2025), a book about AI and the hype around it. They also run the Mystery AI Hype Theater 3000 series, playfully and wickedly tearing apart AI hype on their livestream and podcast. She also works in the area of social movements, focusing on the dynamics of anti-racist campus protest in the US and Canada. She holds a BS in Computer Science and Mathematics and a BA in Sociology from Purdue University, and an MS and a PhD in Sociology from the University of Wisconsin-Madison.\n\nDr. Tamara Kneese is a Senior Research Scientist at Partnership on AI and a Practitioner Fellow at the University of Virginia's Environmental Institute. She is the author of Death Glitch: How Techno-Solutionism Fails Us in The Life and Beyond (Yale University Press 2023) and co-author (with Capacitor Collective) of Notes Toward a Digital Workers' Inquiry (Common Notions 2025).\n\nSupervisor Jackie Fielder is a Mission renter, public bank organizer, former city commissioner and educator, and climate and environmental justice advocate. Jackie got her start in the #NoDAPL movement by organizing for divestment from the Wall Street banks financing the Dakota Access Pipeline. In 2017, she co-founded the San Francisco Defund DAPL Coalition and the San Francisco Public Bank Coalition to start the nation’s first city-owned bank to support small businesses, affordable housing, and renewable energy. She’s the proud granddaughter of Mexican immigrants and Native American grandparents and a citizen of the Three Affiliated Tribes of North Dakota, with Two Kettle Lakota and Hidatsa descent. She graduated from Stanford University in 2016 with a Bachelors of Arts in Public Policy and a Masters of Arts in Sociology.",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "",
              "url": "https://medicinefornightmares.com/events/reclaiming-our-democracy-and-economy-from-ai-moderated-by-jackie-fielder",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_medicine_for_nightmares",
                  "source_name": "Medicine for Nightmares",
                  "fetched_at": "2026-08-28T14:05:33.197491Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_medicine_for_nightmares|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_acb228c56d55",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-09-30",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-09-30",
              "event_date": "2026-09-30",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-09-30",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_015b85ae5c87",
              "venue_id": "venue_dawn_club",
              "title": "TOMOKO FUNAKI",
              "event_time": "Wednesday, September 30, 2026 8:00 PM 11:00 PM",
              "venue_name": "Dawn Club",
              "event_start": "2026-09-30T20:00:00",
              "event_date": "2026-09-30",
              "venue_address": "572 Market St, San Francisco, CA 94104",
              "description": "Tomoko Funaki was born in Japan into a musical family. Following in the footsteps of her parents, both musicians, she studied classical violin and flute. A move to New York exposed her to a broad range of musical genres but she found herself increasingly drawn towards jazz. After moving to San Francisco in 2002, she began studying upright bass and quickly immersed herself into the San Francisco jazz scene, studying and performing with luminaries including Ray Drummond, Rodney Whitaker, Rufus Reid, the Marcus Shelby Jazz Orchestra, Andrew Speight, Vince Lateano, Mark Levine, Donald \"Duck\" Bailey, Allan Harris and Denise Perrier. She has also been involved in jazz education programs such as ‘Stanford Jazz Workshop’ and SFSU ICA ‘The Generations Jazz Project’ in recent years.  tomoko-funaki.com\n\n\n  \n#block-5b1a2217d9e172f759c1 {\n    \n    --stroke-style: none;--stroke-thickness: 6px;\n    \n      \n      \n      \n    \n\n\n\n  }\n\n  #block-5b1a2217d9e172f759c1 .sqs-html-content {\n    \n    --tweak-text-block-padding: 6% 6% 6% 6%;\n  --tweak-text-block-padding: initial;\n}\n\n  #block-5b1a2217d9e172f759c1 {\n      mix-blend-mode: var(--tweak-text-block-blend\n  );\n      border-radius: var(--tweak-text-block-radius);\n  }\n\n  \n  \n#block-5b1a2217d9e172f759c1 {\n      --tweak-text-block-radius: 0px 0px 0px 0px;\n    }\n\n\n  \n  \n\n  #block-5b1a2217d9e172f759c1 {\n    }\n\n\n\n\n    @media screen and (max-width: 767px) {\n          \n            \n\n#block-5b1a2217d9e172f759c1 {\n            \n            }\n        }\n    \n  \n    @media screen and (max-width: 767px) {\n          #block-5b1a2217d9e172f759c1 .sqs-html-content {\n            \n            }\n        }\n    \n  @media screen and (max-width: 767px) {\n          \n          \n\n          \n          \n          \n        }",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.dawnclub.com/music/tomoko-funaki-tfm3a-k6hec-ph4cy-st8jb-a7h55-fd235-xtmbz-4f9s7-t43y6-dzxcy-mjbhm-cxc7y-rhna8-2yghs-rk33y-z9w5r-jtmpx-as6g4",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dawn_club",
                  "source_name": "Dawn Club",
                  "fetched_at": "2026-08-28T15:32:50.415811Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dawn_club|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ea27fc9fa647",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Midweek Melodies | September 30",
              "event_time": "2026-09-30T16:00:00",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-09-30T16:00:00",
              "event_date": "2026-09-30",
              "venue_address": "San Francisco, CA 94118",
              "description": "Free mid-week concert series at Golden Gate Bandshell.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://illuminate.org/event/midweek-melodies-september-30/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_illuminate_bandshell",
                  "source_name": "Illuminate Bandshell",
                  "fetched_at": "2026-08-28T22:20:33.560084Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_4fbf1d692811",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-09-30",
              "venue_name": "De Young",
              "event_start": "2026-09-30",
              "event_date": "2026-09-30",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-09-30",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bff1d8d086b0",
              "venue_id": "venue_david_brower_center",
              "title": "WACD Annual Meeting",
              "event_time": "2026-09-30T08:00:00",
              "venue_name": "David Brower Center",
              "event_start": "2026-09-30T08:00:00",
              "event_date": "2026-09-30",
              "venue_address": "2150 Allston Way, Berkeley, CA 94704",
              "description": "",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_david_brower_center",
                  "source_name": "David Brower Center",
                  "fetched_at": "2026-08-29T00:08:40.517051Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_david_brower_center|2026-09-30",
              "run_id": "run_2e2822ad5e4f",
              "run_label": "WACD Annual Meeting, Sep 29 – Sep 30",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_fc13a983d421",
              "venue_id": "venue_punch_line",
              "title": "EVA EVANS",
              "event_time": "Sep 30, 2026 7:30 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-09-30T19:30:00",
              "event_date": "2026-09-30",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Brooklyn-born Jamaican comedian Eva Evans brings her raw, unfiltered, and biographical stand-up comedy to the stage [1.1.4]. Known for her viral Don't Tell Comedy set, she blends dark humor with honest storytelling.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/eva-evans-san-francisco-california-09-30-2026/event/1C0064D7D4F46C98",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8cc328911f63",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "JERRY WAYNE LONGMIRE",
              "event_time": "Wed Sep 30, 2026 7:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-09-30T19:30:00",
              "event_date": "2026-09-30",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Texan stand-up comedian and podcaster Jerry Wayne Longmire brings his Southern storytelling and blue-collar humor to Cobb's Comedy Club.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/jerry-wayne-longmire-san-francisco-california-09-30-2026/event/1C0064C90D4A60FB",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_28a11a32280f",
              "venue_id": "venue_ggp_music_concourse",
              "title": "Singer/Songwriter Wednesday",
              "event_time": "2026-09-30T16:00:00",
              "venue_name": "Golden Gate Bandshell",
              "event_start": "2026-09-30T16:00:00",
              "event_date": "2026-09-30",
              "venue_address": "San Francisco, CA 94118",
              "description": "Singer/Songwriter Wednesday live music featuring Joe Brennan, Jesse Brewster, and The Alleylots.",
              "event_types": [
                "folk",
                "live_music"
              ],
              "price_info": "Free",
              "url": "https://sfrecpark.org/calendar.aspx?EID=17155",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ggp_music_concourse",
                  "source_name": "Golden Gate Bandshell",
                  "fetched_at": "2026-08-31T13:28:15.005369Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ggp_music_concourse|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_5e3b967285aa",
              "venue_id": "venue_boom_boom_room",
              "title": "No Mercy Band",
              "event_time": "2026-09-30T18:30:00",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-09-30T18:30:00",
              "event_date": "2026-09-30",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "Date: Wednesday Night, September 30th Doors: 7:00PM Show: 8:30PM going ’til 1:30AM Tix Price: ~ No Cover Charge/ Admission Gratis ~ ** NO MERCY BAND ** _______________ NO MERCY BAND The No Mercy Band ensures you and your guests have a fantastic time, whether leading the crowd through a choreographed dance from the past or dazzling them with incredible musicianship. We specialize in creating a high-energy atmosphere that keeps the dance floor moving all night long. Saxman Mike Luzzi and the No Mercy Band has been playing gigs all over San Francisco and the East Bay for more than 30 years. With a solid 6 piece band, Luzzi has performed at the Boom back in the day with John Lee Hooker and family and today he’s coming to the Boom to light it up once more. MIKE LUZZI – Sax NIECEY LIVINGSINGLE – Vocals GIG ANDERSON – Keyboards BIG MIKE AKA LEO – Drummer BOB COONS – Guitarist _______________ ~ No Cover Charge/ Admission Gratis ~",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://boomboomroom.com/event/no-mercy-band-rnb-funk-live-no-cover-charge-2/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-08-31T14:05:05.078255Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e4f0175c6095",
              "venue_id": "venue_boom_boom_room",
              "title": "No Mercy Band",
              "event_time": "2026-09-30T20:30:00",
              "venue_name": "Boom Boom Room",
              "event_start": "2026-09-30T20:30:00",
              "event_date": "2026-09-30",
              "venue_address": "1601 Fillmore St, San Francisco, CA 94115",
              "description": "Date: Wednesday Night, September 30th Doors: 7:00PM Show: 8:30PM going ’til 1:30AM Tix Price: ~ No Cover Charge/ Admission Gratis ~ ** NO MERCY BAND ** _______________ NO MERCY BAND The No Mercy Band ensures you and your guests have a fantastic time, whether leading the crowd through a choreographed dance from the past or dazzling them with incredible musicianship. We specialize in creating a high-energy atmosphere that keeps the dance floor moving all night long. Saxman Mike Luzzi and the No Mercy Band has been playing gigs all over San Francisco and the East Bay for more than 30 years. With a solid 6 piece band, Luzzi has performed at the Boom back in the day with John Lee Hooker and family and today he’s coming to the Boom to light it up once more. MIKE LUZZI – Sax NIECEY LIVINGSINGLE – Vocals GIG ANDERSON – Keyboards BIG MIKE AKA LEO – Drummer BOB COONS – Guitarist _______________ ~ No Cover Charge/ Admission Gratis ~",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://boomboomroom.com/event/no-mercy-band-rnb-funk-live-no-cover-charge-2/client-club-demo/san-francisco-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_boom_boom_room",
                  "source_name": "Boom Boom Room",
                  "fetched_at": "2026-08-31T14:05:05.078255Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_boom_boom_room|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_dc5e7edc9574",
              "venue_id": "venue_yerba_buena_center",
              "title": "GaHee Park: Behind the Curtain",
              "event_time": "2026-09-30",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-30",
              "event_date": "2026-09-30",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Park invites us to peek behind the curtain, as she lays claim to her own power as a surrealist painter working across fantasy and intimacy.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/gahee-park-behind-the-curtain/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-30",
              "run_id": "run_5353f80886f6",
              "run_label": "GaHee Park: Behind the Curtain, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8ff4373d0fad",
              "venue_id": "venue_yerba_buena_center",
              "title": "Rael San Fratello: Prototypes",
              "event_time": "2026-09-30",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-30",
              "event_date": "2026-09-30",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The most comprehensive presentation to date of the renowned Bay Area design studio Rael San Fratello.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/rael-san-fratello-prototypes-and-provocations/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-30",
              "run_id": "run_cd09bf07fb68",
              "run_label": "Rael San Fratello: Prototypes, Sep 25 – Jan 31",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d6074ba99b33",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dread Scott: The Body Politic",
              "event_time": "2026-09-30",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-30",
              "event_date": "2026-09-30",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The exhibition reflects Dread Scott’s longtime commitment to art that confronts political issues and interrogates American patriotism.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dread-scott-the-body-politic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-30",
              "run_id": "run_995f7fbf41ba",
              "run_label": "Dread Scott: The Body Politic, Sep 25 – Jan 31",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b2c314eaf196",
              "venue_id": "venue_yerba_buena_center",
              "title": "3D Paper Flowers Workshop",
              "event_time": "Wednesday, September 30, 2026, 2–4 PM",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-09-30T14:00:00",
              "event_date": "2026-09-30",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Incorporate dimensionality into your colorful flower creation.",
              "event_types": [
                "workshop"
              ],
              "price_info": "Tickets: Free with registration",
              "url": "https://ybca.org/event/free-art-workshop-3d-paper-flowers-9-30-26/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8d87fb10119e",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-09-30T14:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-30T14:00:00",
              "event_date": "2026-09-30",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-30",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_4f609a638605",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-09-30T18:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-09-30T18:00:00",
              "event_date": "2026-09-30",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "Bursting with heart-pounding excitement and death-defying acrobatics, Dear San Francisco will leave you awestruck and fired up!",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "From $86.90",
              "url": "https://boxoffice.clubfugazisf.com/clubfugazisf/events",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-09-30",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 2,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_15a6512cfbbc",
              "venue_id": "venue_madrone_art_bar",
              "title": "Madrone Artist Grant Fall Showcase: Opening Night",
              "event_time": "September 30 @ 6:00 pm - 9:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-30T18:00:00",
              "event_date": "2026-09-30",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "6-9pm Come celebrate round one of the Madrone Artist Grant Recipients!",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://madroneartbar.com/event/madrone-artist-grant-fall-showcase-opening-night/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e25495d4bcff",
              "venue_id": "venue_madrone_art_bar",
              "title": "SHAKE & POP",
              "event_time": "September 30 @ 9:00 pm - 2:00 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-09-30T21:00:00",
              "event_date": "2026-09-30",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "9PM to 2AM FREE, NO COVER SHAKE AND POP DJ ILLBORN spins POP/DISCO/HOUSE/INDIE DANCE",
              "event_types": [
                "dj_party"
              ],
              "price_info": "FREE",
              "url": "https://madroneartbar.com/event/shake-pop-2/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_327f6964956f",
              "venue_id": "venue_moes_alley",
              "title": "Thelma & The Sleaze",
              "event_time": "2026-09-30T20:00:00",
              "venue_name": "Moe's Alley",
              "event_start": "2026-09-30T20:00:00",
              "event_date": "2026-09-30",
              "venue_address": "1535 Commercial Way, Santa Cruz, CA 95065",
              "description": "Show: 8:00 PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_moes_alley",
                  "source_name": "Moe's Alley",
                  "fetched_at": "2026-09-03T10:23:10.512238Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_moes_alley|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1cfa38acd390",
              "venue_id": "venue_kuumbwa_jazz",
              "title": "Cyrille Aimée Duo",
              "event_time": "2026-09-30",
              "venue_name": "Kuumbwa Jazz Center",
              "event_start": "2026-09-30T19:00:00",
              "event_date": "2026-09-30",
              "venue_address": "320-2 Cedar St, Santa Cruz, CA 95060",
              "description": "Acclaimed French-Dominican vocalist Cyrille Aimée presents an intimate performance highlighting her effortless scatting, inventive improvisation, and roots in gypsy jazz and swing. Stripped down to a duo setting, the show offers a close-up look at her playful charm and musical virtuosity.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kuumbwa_jazz",
                  "source_name": "Kuumbwa Jazz Center",
                  "fetched_at": "2026-09-03T10:24:11.929813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kuumbwa_jazz|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_98c6b9ca2916",
              "venue_id": "venue_black_cat",
              "title": "Character Select",
              "event_time": "2026-09-30 07:00 PM",
              "venue_name": "Black Cat",
              "event_start": "2026-09-30T19:00:00",
              "event_date": "2026-09-30",
              "venue_address": "400 Eddy St, San Francisco, CA 94109",
              "description": "Tickets: $20 , $30 , $40 , $50\n\n(price includes $5.50 processing and ticketing fee)\n\n\n\n\n7:00 show: Doors @ 6:00\n\n\n\n\nVideo game music powered up with jazz, funk, rock, and serious live-band energy.\n\n\n\n\nCharacter Select brings a fresh spin to beloved video game themes, turning familiar worlds into a high-energy set built for gamers, music lovers, and anyone ready to press start. From Hyrule to the Mushroom Kingdom to Green Hill Zone, the band reimagines classic sounds with groove, improvisation, and full-throttle fun.\n\n\n\n\nLed by saxophonist Trevor Strohl, Character Select adds serious firepower with saxophone, EWI, vocoder, guitar, keys, bass, and drums — creating a sound that is playful, explosive, and built for the room.\n\n\n\n\nExpect nostalgia, musicianship, and a night that levels up fast.\n\n\n\n\nBand Lineup:\n\n\n\n\nTrevor Strohl, saxophone\n\nJonathan Franaszek, piano\n\nDylan Escudero, guitar\n\nMiguel “FRUNKYMAN” Leyva, bass\n\nNick Aganad, drums",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$20 , $30 , $40 , $50",
              "url": "https://blackcatsf.turntabletickets.com/shows/12343/2026-09-30",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_black_cat",
                  "source_name": "Black Cat",
                  "fetched_at": "2026-09-03T10:39:12.595909Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_black_cat|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_418090a7d52a",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "The Nick Rossi Quartet",
              "event_time": "Wednesday, September 30, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-09-30T19:00:00",
              "event_date": "2026-09-30",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Wednesday, September 30, 2026 @ 7pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $30 per show",
              "url": "https://keysjazzbistro.com/event/the-nick-rossi-quartet-3/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_10bd3523f986",
              "venue_id": "venue_stookeys_blue_room",
              "title": "Jazz Jam hosted by Eric Markowitz",
              "event_time": "Wed, Sep 30",
              "venue_name": "Stookey's Blue Room",
              "event_start": "2026-09-30",
              "event_date": "2026-09-30",
              "venue_address": "1523 Sutter St, San Francisco, CA 94109",
              "description": "No Cover/No Reservation\n\n\nA $5 - $10 Donation is requested (for the house band)",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "No Cover",
              "url": "https://www.stookeysblueroom.com/event-details/jazz-jam-session-hosted-by-bassist-eric-markowitz-2",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stookeys_blue_room",
                  "source_name": "Stookey's Blue Room",
                  "fetched_at": "2026-09-03T12:18:49.462512Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stookeys_blue_room|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_016767d63d83",
              "venue_id": "venue_pacific_film_archive",
              "title": "Exhibition Tour: Some Particular Heaven",
              "event_time": "Sep 30, 2026 12:15 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-30T12:15:00",
              "event_date": "2026-09-30",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "If you have any questions about accessibility or need accommodations to attend this event, please contact us at bampfa@berkeley.edu or (510) 642-1412 (Wed–Sun, 11 AM–7 PM) as soon as you can. Advance notice helps us fulfill your request.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://bampfa.org/exhibition-tour-some-particular-heaven",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_dfcf44387e53",
              "venue_id": "venue_pacific_film_archive",
              "title": "Self-Portrait Along the Borderline",
              "event_time": "Sep 30, 2026 7 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-09-30T19:00:00",
              "event_date": "2026-09-30",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Anna Dziapshipa was born of the union between an Abkhazian man and a Georgian woman. In Self-Portrait Along the Borderline, she skillfully weaves together unique archives and fragments to offer a personal and political biography of Georgia–Abkhazia relations. With Dziapshipa’s shorts Contemplation and Dear Dirty Tbilisi.",
              "event_types": [
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/self-portrait-along-borderline",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3806d0ad38ff",
              "venue_id": "venue_cat_club",
              "title": "1984",
              "event_time": "September 30, 2026 9:00 PM",
              "venue_name": "Cat Club",
              "event_start": "2026-09-30T21:00:00",
              "event_date": "2026-09-30",
              "venue_address": "1190 Folsom St, San Francisco, CA 94103",
              "description": "The Best of the 80s on 2 Dance Floors\n——\n9pm-2am | No Cover",
              "event_types": [
                "dj_party"
              ],
              "price_info": "No Cover",
              "url": "https://www.sfcatclub.com/calendar/ymp4cekk5sb4y8x-chwt8-3rd9b-ztzra-abpta-7a9be-3m6a8-74c9n-sz9cw-jztgp-ntp9n-nlygf-6j7mm-gfrn9-bgknm-ysm82-fzhm2-krz5d-yzj7d-f4ysm-2d5kp-ebjy4-xazl6-dp2ek-s2c7m-2h47t",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cat_club",
                  "source_name": "Cat Club",
                  "fetched_at": "2026-09-03T13:24:58.141502Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cat_club|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e3f33b3fdcd3",
              "venue_id": "venue_etcetera_wine_bar",
              "title": "Wine Special",
              "event_time": "30 September 2026",
              "venue_name": "Etcetera Wine Bar",
              "event_start": "2026-09-30",
              "event_date": "2026-09-30",
              "venue_address": "795 Valencia St,San Francisco, CA 94110",
              "description": "Discover curated bottle and glass specials featuring selections from Etcetera Wine Bar's extensive cellar. It is an ideal occasion to sample new varietals in a relaxed Mission District setting.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_etcetera_wine_bar",
                  "source_name": "Etcetera Wine Bar",
                  "fetched_at": "2026-09-03T13:50:21.930604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_etcetera_wine_bar|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5108be832a91",
              "venue_id": "venue_caravan_lounge",
              "title": "Caravan Lounge Comedy Show",
              "event_time": "09/30/2026",
              "venue_name": "Caravan Lounge",
              "event_start": "2026-09-30",
              "event_date": "2026-09-30",
              "venue_address": "98 S Almaden Ave, San Jose, CA 95113",
              "description": "Welcome to The Caravan Lounge THE CARAVAN LOUNGE is a friendly, owner-operated bar located in the heart of downtown San Jose. As well as being one of San Jose’s oldest live music venues, the Caravan provides other fun activities such as karaoke, comedy, burlesque, pool table, and DJ nights. The Caravan is also extremely affordable for those trying to stretch a budget. And let’s not forget the music! All the shows at the Caravan are FREE! Open 7 days a week 2pm – Close “Aside from the obvious draw of affordable libations poured by heavy-handed barkeeps, The Caravan sets itself apart from other no-frills bars as the place to go to see up-and-coming bands. The bar has hosted plenty of local bands’ first shows, and regularly features smaller touring acts. If you’re a music fan always on the lookout for your new favorite group, make sure to pay attention to who is coming to Caravan.” -Metro FEATURED VIDEOS – Go to our YouTube Channel by clicking here to see more… SEPTEMBER 2026 TUES. SEPT 1st- Karaoke with Ronnie Roach WED. SEPT 2nd – The Caravan Lounge Comedy Show hosted by Chelsea Costanza THURS. SEPT 3rd – SWEAT with DJ SNAQ FRI. SEPT 4th – Rebelskamp, Magick Blues Band, TBA SAT. SEPT 5th – Skool Of Sharks TUES. SEPT 8th- Karaoke with Ronnie Roach WED. SEPT 9th – The Caravan Lounge Comedy Show Hosted by Nyoki THURS. SEPT 10th – Shrine Goth DJ Night with Hex Embrace, C_Death, and Owen FRI. SEPT 11th – Circus Of Sin 10 Year Sinnaversary! Hosted By Some Guy SAT. SEPT. 12th – CaveFest II We Love You Curtis Castro! Abysmal Piss, Ominous Ruin, Lost To The Void TUES. SEPT 15th – Karaoke with Ronnie Roach WED. SEPT 16th -The Caravan Lounge Comedy Show Hosted by Ato Walker THURS. SEPT 17th – TBA FRI. SEPT 18th – TBA SAT. SEPT 19th – Facekicker, American Standard, 12 Steps To Nothing TUES. SEPT 22nd – Karaoke with Ronnie Roach WED. SEPT 23rd- The Caravan Lounge Comedy Show hosted by Matt Kennedy THURS. SEPT 24th – Sweethearts DJ Night FRI. SEPT 25th – Ding Mao, Diamantide, Clou",
              "event_types": [
                "comedy"
              ],
              "price_info": "FREE",
              "url": "http://s172518151.onlinehome.us/caravan/site/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_caravan_lounge",
                  "source_name": "Caravan Lounge",
                  "fetched_at": "2026-09-03T14:20:40.572990Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_caravan_lounge|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a8bec0a7f3b1",
              "venue_id": "venue_comstock_saloon",
              "title": "Peninsula Project",
              "event_time": "2026-09-30T20:00:00",
              "venue_name": "Comstock Saloon",
              "event_start": "2026-09-30T20:00:00",
              "event_date": "2026-09-30",
              "venue_address": "155 Columbus Ave, San Francisco, CA 94133",
              "description": "Live music performance",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_comstock_saloon",
                  "source_name": "Comstock Saloon",
                  "fetched_at": "2026-09-03T14:26:10.425617Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_comstock_saloon|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_eb69427947f8",
              "venue_id": "venue_poor_house_bistro",
              "title": "PHB Jazz Jam",
              "event_time": "2026-09-30T18:00:00",
              "venue_name": "Poor House Bistro",
              "event_start": "2026-09-30T18:00:00",
              "event_date": "2026-09-30",
              "venue_address": "91 S Autumn St, San Jose, CA 95110",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_poor_house_bistro",
                  "source_name": "Poor House Bistro",
                  "fetched_at": "2026-09-04T10:11:13.938872Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_poor_house_bistro|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_68a97f81467e",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-09-30",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-09-30",
              "event_date": "2026-09-30",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "San Francisco Playhouse. A beloved puppet takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "Tickets On Sale",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-09-04T10:15:07.852694Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-09-30",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_153c08806921",
              "venue_id": "venue_cafe_du_nord",
              "title": "tobi lou",
              "event_time": "9/30/2026 8:00 pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-09-30T20:00:00",
              "event_date": "2026-09-30",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously. Cookie Duration Description cookielawinfo-checkbox-analytics 11 months This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category \"Analytics\". cookielawinfo-checkbox-functional 11 months The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category \"Functional\". cookielawinfo-checkbox-necessary 11 months This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category \"Necessary\". cookielawinfo-checkbox-others 11 months This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category \"Other. cookielawinfo-checkbox-performance 11 months This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category \"Performance\". viewed_cookie_policy 11 months The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "Buy Tickets",
              "url": "https://cafedunord.com/tm-event/tobi-lou-same-old-jeans-tour/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cafe_du_nord_and_swedish_american_hall",
                  "source_name": "Cafe Du Nord and Swedish American Hall",
                  "fetched_at": "2026-09-04T10:21:43.132381Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_0fac3a5bcc7a",
              "venue_id": "venue_specs",
              "title": "Wednesday Big Table",
              "event_time": "Wednesday, September 30, 2026 6:30 PM - 8:30 PM",
              "venue_name": "Specs' Twelve Adler Museum Cafe",
              "event_start": "2026-09-30T18:30:00",
              "event_date": "2026-09-30",
              "venue_address": "12 William Saroyan Pl, San Francisco, CA 94133",
              "description": "An open gathering of writers, poets, artists and more around the Big Table at Specs every Wednesday from 6:30-8:30pm! This more than 40 year tradition began with writers Jack Hirschman and Agneta Falk, and continues on with hosts Agneta and writers Byron Spooner and Judith Bernhard. Join us for drinks, laughs, good conversation and become a part of this longstanding Specs tradition! Everyone welcome!",
              "event_types": [
                "community",
                "literary"
              ],
              "price_info": "",
              "url": "https://www.specsbarsf.com/events/wednesday-big-table-3dkym-rrwxb",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_specs",
                  "source_name": "Specs' Twelve Adler Museum Cafe",
                  "fetched_at": "2026-09-04T10:38:49.428018Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_specs|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_476c675cbee9",
              "venue_id": "venue_sevys_aptos",
              "title": "Burgers & Brews Wednesdays",
              "event_time": "September 30, Wednesday 5:00 PM",
              "venue_name": "Sevy's Bar & Kitchen",
              "event_start": "2026-09-30T17:00:00",
              "event_date": "2026-09-30",
              "venue_address": "7500 Old Dominion Ct, Aptos, CA 95003",
              "description": "",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sevys_aptos",
                  "source_name": "Sevy's Bar & Kitchen",
                  "fetched_at": "2026-09-04T10:39:41.919005Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sevys_aptos|2026-09-30",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-10-01": {
          "date": "2026-10-01",
          "updated_at": "2026-09-04T10:39:45.263019Z",
          "events": [
            {
              "event_id": "evt_2b145ba0b5c3",
              "venue_id": "venue_greek_theatre",
              "title": "Jack Johnson, G. Love",
              "event_time": "October 1, 2026 6:30 pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-10-01T18:30:00",
              "event_date": "2026-10-01",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "Two Nights!\nSURFILMUSIC Tour 2026 - G. Love",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thegreekberkeley.com/events/jack-johnson-251001",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-04-07T10:55:48.132614Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_greek_theatre|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6326b08e5f24",
              "venue_id": "venue_the_uc_theatre",
              "title": "Fruit Bats",
              "event_time": "Oct 01 8:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-10-01T20:00:00",
              "event_date": "2026-10-01",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "The midwest, particularly the part of the midwest Eric D. Johnson hails from, is a largely flat expanse. Zipping through it on the highway, you’ll see cities and towns rise up in the distance, but blink and you’ll miss other man-made rejoinders to horizontal living dotting the landscape, hill after hill, built from the refuse of the past: landfills. Some of these hills make for great sledding spots, parks, and trails. Others turn organic waste into compost. The Landfill, Fruit Bats’ June 12, 2026 album from Merge Records, is something else entirely: a mountain dominating the landscape of Johnson’s heart.",
              "event_types": [
                "live_music",
                "folk",
                "rock"
              ],
              "price_info": "$40 + FEES",
              "url": "https://www.theuctheatre.org/shows/fruit-bats-01-oct",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-04-30T12:51:51.787764Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_849289ec6fa0",
              "venue_id": "venue_mountain_winery",
              "title": "Lynyrd Skynyrd",
              "event_time": "Oct 1, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-10-01T19:30:00",
              "event_date": "2026-10-01",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Lynyrd Skynyrd Thursday, October 1 Doors 5:30PM, Show 7:30PM All Ages to Enter, 21 & Over to Drink The Mountain Winery Buy Tickets Event Info No refunds or exchanges. All shows are rain or shine. Children age 3 and older require a ticket. A child under the age of 3 is considered a lap child and does not require a ticket. For directions, dining, parking, or carpool information, please visit www.mountainwinery.com. For information on how to purchase VIP season tickets including suites and box seats, please visit https://www.mountainwinery.com/vip-seating/ Doors open 2 hours prior to the show time. Seating begins 1 hour prior to the show time. Artist Info Legendary rock band Lynyrd Skynyrd returns with a fiery slice of Southern style guitar rock heaven in Last of a Dyin’ Breed, their newest release on Roadrunner/Loud & Proud Records due August 21, 2012.This is the kind of record guaranteed to feed the needs of the multi-generational Skynyrd Nation, and continue the renewed vigor the band exhibited with their last album, 2009’sGod & Guns. For the passionate, longtime fans of the band, this is Skynyrd at the top of their game, complete with instantly memorable songs, more hooks than a tackle box, and a blistering three-guitar attack at full power. From the raging guitars of the title track and the pounding, funky homage to local talent in “Home Grown” to the mind-blowing “Honey Hole,” Lynyrd Skynyrd sound like young bucks having one hell of a good time, which, regarding the latter, founding member Gary Rossington says is very much the case. “For me this is one of the happiest and most fun albums I’ve ever done,” says Rossington. “We didn’t have a lot of problems goin’ on;it was just fun goin’ to work every day.”Having survived enough tragedy and just plain hard miles for 10 bands, Skynyrd is, remarkably at this stage of their career, on a roll. God & Guns debuted at #18 on the Billboard Top 200, giving the band their highest debut since 1977.Last Of A Dyin’ Breedre-ignit",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1385233",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-06-02T10:55:16.293558Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_mountain_winery|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8bea5275f0f3",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "$uicideboy$: Grey Day Tour",
              "event_time": "oct 1 6:30pm",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-10-01T18:30:00",
              "event_date": "2026-10-01",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "New Orleans hip-hop duo $uicideboy$ brings their acclaimed 'Grey Day Tour 2026' to the Shoreline Amphitheatre. The lineup features support from Shoreline Mafia and other special guests, delivering a night of dark, energetic underground rap.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/uicideboy-present-grey-day-tour-2026-mountain-view-california-10-01-2026/event/1C00647BF6B3CC5B",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-06-02T12:44:54.831746Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T21:39:26.952332Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fc38e0785d4e",
              "venue_id": "venue_regency_ballroom",
              "title": "POISON GIRL FRIEND",
              "event_time": "Oct 1, 2026 8:00 PM",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-10-01T20:00:00",
              "event_date": "2026-10-01",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "Goldenvoice Presents POiSON GiRL FRiEND: US / MX Tour Autumn 2026.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theregencyballroom.com/events/detail?event_id=1497640",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-06-29T11:36:25.735100Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-30T18:59:56.104919Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3f15d849e214",
              "venue_id": "venue_ashby_stage",
              "title": "The Fall Show",
              "event_time": "2026-10-01T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-10-01T20:00:00",
              "event_date": "2026-10-01",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Long-lasting love is marked by both comfort and conflict. In The Fall Show, an older couple's unexpected romance unfolds against a maelstrom of memory and movement. Lovers collide, chaos erupts, and tenderness persists in an intimate examination of love 'til the very end.",
              "event_types": [
                "theater"
              ],
              "price_info": "$25 - $80 (sliding scale)",
              "url": "https://shotgunplayers.org/online/article/the-fall-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-06-30T10:25:39.676498Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_shotgun_players",
                  "source_name": "Shotgun Players",
                  "fetched_at": "2026-07-04T10:27:48.342982Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-10-01",
              "run_id": "run_538dc31103b5",
              "run_label": "The Fall Show, Sep 26 – Oct 25",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ba3f783e4ed3",
              "venue_id": "venue_the_ritz",
              "title": "Weedeater + Zeke + Royal Thunder",
              "event_time": "oct 1 7pm",
              "venue_name": "The Ritz",
              "event_start": "2026-10-01T19:00:00",
              "event_date": "2026-10-01",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "WEEDEATER\nZEKE\nROYAL THUNDER\nYES MA’AM\nTHURSDAY OCTOBER 1, 2026",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$30",
              "url": "https://www.ticketweb.com/event/weedeater-zeke-royal-thunder-yes-the-ritz-tickets/14248734",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-12T11:45:29.263581Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-07-12T11:49:06.462632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_394aabd0e20f",
              "venue_id": "venue_castro_theater",
              "title": "Michelle Branch",
              "event_time": "oct 1 8pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-10-01T20:00:00",
              "event_date": "2026-10-01",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Branch won a Grammy Award for her 2002 collaboration with Carlos Santana, “The Game of Love,” which peaked at No. 5 on Billboard’s Hot 100, No. 1 on the Billboard Adult Contemporary chart, and became a major international hit. Her second album, 2003’s Hotel Paper, debuted at No. 2 on the US Billboard album chart and was a top 10 hit around the world. Certified Platinum in the US, and Gold in Australia, Canada and Japan, it spawned the hit single “Are You Happy Now?,” which was nominated for a Grammy for Best Female Rock Performance. Branch was also nominated for Best New Artist.",
              "event_types": [
                "live_music"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thecastro.com/events/michelle-branch-261001",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-24T10:42:11.416886Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-07-28T17:15:02.064805Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_dab19e86aeb1",
              "venue_id": "venue_thee_stork_club",
              "title": "M.sayyid, Jel, Heavy Arts Ensemble, Mars Kumari",
              "event_time": "oct 1 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-10-01T20:00:00",
              "event_date": "2026-10-01",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Thurs., 10/1/26 M.sayyid, Jel, Heavy Arts Ensemble, mars kumari 8pm, $15 adv., $20 door M. Sayyid M.Sayyid (born Maurice Mboya Greene July 10 1970) is a lyricist, producer, visual artist and a founding member of The New York based Alternative hip hop group Antipop Consortium. In 2017 he was the subject of a feature article in Noisey Magazine covering his move to Paris and his mixtape Error Tape 1. In 2018 the French music television series Tracks ARTE covered the artist in a mini-documentary highlighting his work. Later that year he was invited by Sónar to perform at Sónar by Day. He has appeared in a “how-to” for Billboard (magazine) in 2009 where he was applauded for his use of the MPC 2000XL and plays the role of professor in a 2 part series called Fire in the MP. His visual work has been published in Arts Magazine in 2012 where he was commissioned to create a piece for the “carte blanche” section of the magazine. https://msayyid.bandcamp.com/music https://www.instagram.com/_m.sayyid/ Jel Jeffrey James Logan (born May 7, 1978), better known by his stage name Jel, is an American hip hop producer and rapper. He is co-founder of the record label Anticon. He has been a member of Presage,Themselves, Subtle, and 13 & God. Jel is primarily a producer. He is known for his use of SP-1200 and MPC2000XL to create drum beats with little or no sequencing like playing the drums live via the sampler pads. He has produced numerous tracks for underground hip hop artists such as Deep Puddle Dynamics, Atmosphere, Sole, Sage Francis, and Serengeti. https://jelsmusic.bandcamp.com/music https://www.instagram.com/jeffreyjellogan/ Heavy Arts Ensemble Heavy Arts Ensemble is a collective of Bay Area musicians and media artists. Through a collage of avant-garde jazz, drone, extended melodic improvisation, live sampling, modular synthesis, live visuals, radical software and the outer edges of experimental beat culture, Heavy Arts Ensemble seeks to push deep grooves into trance-inducing stat",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$15/$20",
              "url": "https://wl.seetickets.us/event/m-sayyid-jel-heavy-arts-ensemble-mars-kumari/701159?afflky=TheeStorkClub",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-08-06T11:16:26.119873Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_8f54f83da15b",
              "venue_id": "venue_august_hall",
              "title": "Don West",
              "event_time": "oct 1 8pm",
              "venue_name": "August Hall",
              "event_start": "2026-10-01T20:00:00",
              "event_date": "2026-10-01",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "This website or its third-party tools process personal data. You can opt out of the sale of your personal information by clicking on the \"Do Not Sell or Share my Personal Information\" Link.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$33.65",
              "url": "https://www.augusthallsf.com/tm-event/don-west/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-07-29T14:20:13.717420Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_dc006ceb246b",
              "venue_id": "venue_madarae",
              "title": "Downtown First Thursdays After Party",
              "event_time": "Thu 1st October 8:00 PM",
              "venue_name": "Madarae",
              "event_start": "2026-10-01T20:00:00",
              "event_date": "2026-10-01",
              "venue_address": "46 Minna St, San Francisco, CA 94105",
              "description": "world club, house, disco, dubstep, bass music, top 40, hip-hop, r&b",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Register",
              "url": "https://www.eventbrite.com/e/downtown-first-thursdays-official-after-party-sfs-1-street-party-tickets-1994899848147",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madarae",
                  "source_name": "Madarae",
                  "fetched_at": "2026-08-12T11:36:45.528431Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madarae|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e18bc1a04af7",
              "venue_id": "venue_the_chapel",
              "title": "Soda Blonde",
              "event_time": "oct 1 8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-10-01T20:00:00",
              "event_date": "2026-10-01",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "Dublin alternative-pop quartet Soda Blonde performs live at The Chapel.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$29.69",
              "url": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQEBDOSkaV8yHQwiunZbOu4oZLFhAtBm0lgH0nu0FLlLbyEuvJ5BwR6QtliH0sWM342jTVm1bKoiaOh0-TQEzoOUCBylR_xt9zeUA6VipGBmbhGRmHMlWYBouNuOWkmzfGp5u8uWNqKVlNqoDQiFmaUJC0gYJM8XLg==",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-09-04T10:04:30.038559Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_chapel|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_fbe6e177fe61",
              "venue_id": "venue_brick_and_mortar",
              "title": "Carbon Leaf",
              "event_time": "oct 1 8pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-10-01T20:00:00",
              "event_date": "2026-10-01",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Event Details Brick & Mortar Music Hall Presents Carbon Leaf October 1, 2026 8:00 pm PDT (Doors: 7:30 pm ) Brick and Mortar Music Hall , 1710 Mission Street , San Francisco, CA ( map ) $38.91 Buy Tickets + Google Calendar Carbon Leaf Guitarist Terry Clark, vocalist Barry Privett, bassist Jordan Medas, guitarist Carter Gravatt, and drummer Scott Milstead built up a considerable following and were soon releasing albums through their own label. Meander appeared in 1996, with Shadows in the Banquet Hall and Ether-Electrified Porch Music following in quick succession. In 2001, Carbon Leaf debuted a more mature sound with the album Echo Echo and won a Coca-Cola-sponsored unsigned band contest that landed them a performance on the American Music Awards. By this point, Carbon Leaf was also regularly opening shows for adult alternative-friendly acts like DMB, John Mayer, Guster, and David Gray, and the band documented their frequent and vibrant live shows with the 2002 double live set 5 Alive! Indian Summer appeared in 2004. Issued through Vanguard, it was Carbon Leaf's first recording for any label other than their own, and the strongest example yet of their polite, astute, and engaging sound. It was followed in 2006 by Love Loss Hope Repeat. ~ Johnny Loftus JUST ANNOUNCED Geordie Kieffer December 06, 2026 RC AVENUE October 04, 2026 Dani Offline — Lover's Discourse Live October 13, 2026 Denise Julia November 14, 2026 AZ Chike November 05, 2026 Follow us on Instagram Join the Brick & Mortar Newsletter",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$38.91",
              "url": "https://www.brickandmortarmusic.com/tm-event/carbon-leaf/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-09-03T11:13:51.689688Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_50db7983ec30",
              "venue_id": "venue_great_american_music_hall",
              "title": "Los Thuthanaka",
              "event_time": "oct 1 8pm",
              "venue_name": "Great American",
              "event_start": "2026-10-01T20:00:00",
              "event_date": "2026-10-01",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "all ages",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$27.50/$30",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_cb8bad671358",
              "venue_id": "venue_z_space",
              "title": "King Lear",
              "event_time": "October 1 @ 7:00 pm - 10:00 pm",
              "venue_name": "Z Space",
              "event_start": "2026-10-01T19:00:00",
              "event_date": "2026-10-01",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "Directed by Michael Socrates Moran Music composed by Paul Dresher Oakland Theater Project and New Performance Traditions are thrilled to present their most ambitious co-production to date: a bold, music-infused […]",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://dresherensemble.org/event/king-lear-by-william-shakespeare/2026-10-01/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-08-17T14:41:50.422468Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_paul_dresher_ensemble",
                  "source_name": "Paul Dresher Ensemble",
                  "fetched_at": "2026-08-26T10:26:36.842099Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_z_space|2026-10-01",
              "run_id": "run_e3a81a6d4f91",
              "run_label": "King Lear, Sep 25 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_912079efb5cd",
              "venue_id": "venue_the_riptide",
              "title": "Now That's What I Call 90s",
              "event_time": "Thursday, October 1 9:00 PM - 11:30 PM",
              "venue_name": "The Riptide",
              "event_start": "2026-10-01T21:00:00",
              "event_date": "2026-10-01",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "Dance to your favorite 90s hits performed by the talented duo that is Scalpel Scalpel!",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2e9ed5727f7a",
              "venue_id": "venue_catalyst_sc",
              "title": "Steel Pulse – Reggae Against Racism Tour",
              "event_time": "Oct 01, 2026 Doors: 8 pm Show: 9 pm",
              "venue_name": "The Catalyst",
              "event_start": "2026-10-01T20:00:00",
              "event_date": "2026-10-01",
              "venue_address": "1011 Pacific Ave, Santa Cruz, CA 95060",
              "description": "",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$50.22",
              "url": "https://catalystclub.com/event/steel-pulse-reggae-against-racism-tour/the-catalyst/santa-cruz-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_catalyst_sc",
                  "source_name": "The Catalyst",
                  "fetched_at": "2026-08-21T16:29:43.952279Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_catalyst_sc|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_481a5abe9bcb",
              "venue_id": "venue_crepe_place",
              "title": "Pearl & The Oysters",
              "event_time": "2026-10-01",
              "venue_name": "The Crepe Place",
              "event_start": "2026-10-01T20:00:00",
              "event_date": "2026-10-01",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "TICKETS",
              "event_types": [
                "live_music"
              ],
              "price_info": "$20adv, $25door",
              "url": "https://thecrepeplace.com/shows-list/folkyeah-presents-pearl-the-oysters-thursday-october-1-at-7pm-on-the-garden-stage-20adv-25door",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2d65be059ea9",
              "venue_id": "venue_indexical",
              "title": "Joshua Kit Clayton + David Zicarelli",
              "event_time": "2026-10-01",
              "venue_name": "Indexical",
              "event_start": "2026-10-01T20:00:00",
              "event_date": "2026-10-01",
              "venue_address": "1050 River St #119, Santa Cruz, CA 95060",
              "description": "Indexical presents an evening of live electronic music with Joshua Kit Clayton and David Zicarelli.",
              "event_types": [
                "live_music",
                "electronic"
              ],
              "price_info": "$18 Advance / $20 Door / FREE or discounted for Members",
              "url": "https://www.indexical.org/events/2026-10-01-joshua-kit-clayton-david-zicarelli",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_indexical",
                  "source_name": "Indexical",
                  "fetched_at": "2026-08-22T12:50:51.248673Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_indexical|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a92b09f8665f",
              "venue_id": "venue_act_theater",
              "title": "Alfred Hitchcock's North by Northwest",
              "event_time": "2026-10-01",
              "venue_name": "ACT Theater",
              "event_start": "2026-10-01",
              "event_date": "2026-10-01",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "\"I am thrilled, excited and perhaps a little apprehensive to bring the iconic North by Northwest home to the US! I just hope that American audiences will love it as much as our British audiences did. What I am not apprehensive about is bringing its message; one of nations coming together in peace and friendship to make the world a better place. I think we can all raise a glass to that! I am also itching to return to A.C.T. and San Francisco, a piece of my heart will always remain in California and I cannot wait to return to your beautiful theatre, vivid audience and magic state.\" —Emma Rice",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-08-22T13:54:28.481304Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_act_theater|2026-10-01",
              "run_id": "run_8f5d72a961cd",
              "run_label": "Alfred Hitchcock's North by Northwest, Sep 22 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_4ec015dacb58",
              "venue_id": "venue_verdi_club",
              "title": "Milonga Malevaje",
              "event_time": "2026-10-01T20:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-10-01T20:00:00",
              "event_date": "2026-10-01",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "dance",
                "community"
              ],
              "price_info": "",
              "url": "https://www.verdiclub.net/events-calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-08-22T14:55:24.428239Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_verdi_club|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7a3b0701b5ca",
              "venue_id": "venue_crows_nest_sc",
              "title": "BIG BAD WOLF",
              "event_time": "Thursday October 1st 08:00 PM",
              "venue_name": "The Crow's Nest",
              "event_start": "2026-10-01T20:00:00",
              "event_date": "2026-10-01",
              "venue_address": "2218 East Cliff Dr, Santa Cruz, CA 95062",
              "description": "Thursday October 1st Blues based classic rock Starts at 08:00 PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$7 cover",
              "url": "https://www.bigbadrockingwolf.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crows_nest_sc",
                  "source_name": "The Crow's Nest",
                  "fetched_at": "2026-08-22T15:19:13.909618Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crows_nest_sc|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_40712a72fbd8",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Love Notes",
              "event_time": "2026-10-01",
              "venue_name": "San Jose CPA",
              "event_start": "2026-10-01",
              "event_date": "2026-10-01",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-10-01",
              "run_id": "run_1ea648ade196",
              "run_label": "Love Notes, Aug 22 – Oct 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_0443c51f80d4",
              "venue_id": "venue_the_marsh_berk",
              "title": "Nina Wises Motion Theater",
              "event_time": "2026-10-01",
              "venue_name": "The Marsh Berk",
              "event_start": "2026-10-01",
              "event_date": "2026-10-01",
              "venue_address": "2120 Allston Way, Berkeley, CA 94704",
              "description": "Nina Wise’s Motion Theater Class Description Motion Theater® is a dynamic practice that blends movement, storytelling, and improvisation. A Motion Theater workshop is designed to cultivate spontaneity, creativity, and embodied presence. Through guided exercises, participants translate inner experience into movement and narrative, discovering fresh ways to express themselves with authenticity and ease. This workshop is both playful and skill-building. In a supportive environment, you will: Explore the connection between body, imagination, and voice Learn tools for creative expression and improvisational performance Cultivate mindfulness and presence through movement Experience the joy of spontaneous storytelling Deepen your capacity for authentic self-expression and connection No performance background is required—just curiosity and a willingness to move, play, and discover. Whether you are an artist, a seeker, an actor, a writer, or simply someone longing for a deeper relationship with creativity and embodiment, this workshop offers an opportunity to unlock new pathways of expression. What’s Included Nina Wise offers a 6-week workshop in Motion Theater® a form of improvised, autobiographical storytelling. In a Motion Theater class, you’ll learn to tell your stories on your feet, utilizing language, sound and movement as your tools of expression. In each workshop you’ll: Warm up and free up your body and voice Move in response to your inner impulses Play theater games that open you up and generate creativity and well-being Hone your writing and storytelling skills Embody your personal narrative Engage in uplifting adult play Motion Theater practices are designed to raise your spirits, inspire personal insight, create community, expand awareness, enhance self-confidence and develop presence and craft as a leader or performer. Motion has been described by both participants and audiences as funny, moving, liberating and transformational. Motion is playful, mindful self-",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://themarsh.org/nina-wises-motion-theater/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-08-22T17:28:42.838285Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_marsh_berk|2026-10-01",
              "run_id": "run_c7e0a197762f",
              "run_label": "Nina Wises Motion Theater, Sep 10 – Oct 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_af1eb6857de8",
              "venue_id": "venue_the_marsh_sf",
              "title": "Soul Story Theater",
              "event_time": "2026-10-01",
              "venue_name": "The Marsh SF",
              "event_start": "2026-10-01",
              "event_date": "2026-10-01",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "Suraya Keating’s Soul Story Theater Solo Performance Program for Women Class Description Facilitated by Suraya Keating, LMFT, Registered Drama Therapist & Soul Story Coach The Soul Story Theater Solo Performance Program is a 13-week creative journey for women who long to transform meaningful life experiences into an original solo performance. Through expressive arts, storytelling, writing, movement, and theater, you’ll discover the deeper meaning within your life’s journey while finding the courage to share your authentic voice. This transformational experience culminates in a live performance where each participant presents her original soul story before a supportive audience. During this immersive journey, you will: Unearth the story your soul has been longing to tell and shape it into a compelling, authentic performance piece. Transform limiting narratives into empowering ones, discovering the resilience, wisdom, and personal mythology woven throughout your life’s journey. Awaken your creative voice through an inspiring blend of writing, storytelling, movement, and theater while deepening your connection to your inner muse. Receive personalized coaching as you write, devise, rehearse, and confidently perform your original solo piece. Experience the power of a courageous circle of women who will witness, encourage, and celebrate your creative unfolding every step of the way. What’s Included 13-week hybrid program combining online coaching with in-person rehearsals 10 live Zoom group sessions (most Thursdays, 7:15–9:15 PM PT) 2 in-person rehearsal intensives (Saturdays, 10am-3pm) Two 55-minute individual coaching sessions via Zoom Public culminating performance with a live audience Fall 2026 Schedule Program Dates: September 10 – December 12, 2026 Zoom Sessions Thursdays | 7:15–9:15 PM (PT) September 10 & 24 October 1, 8 & 22 November 5, 12 & 19 December 3 plus Zoom Dress Rehearsal on Dec 10 In-Person Rehearsals at The Marsh SF Studio Saturdays | 10am-3pm October 3",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://themarsh.org/suraya-keating-soul-story-theater-solo-performance-program-for-women/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-08-22T17:28:42.838285Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-10-01",
              "run_id": "run_f0998957edb6",
              "run_label": "Soul Story Theater, Sep 10 – Dec 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_6efd1f9babb7",
              "venue_id": "venue_bargetto_winery",
              "title": "Alex Lucero at Thursday Night Music!",
              "event_time": "10/01/2026 6:00 pm - 8:00 pm",
              "venue_name": "Bargetto Winery",
              "event_start": "2026-10-01T18:00:00",
              "event_date": "2026-10-01",
              "venue_address": "3535 N Main St, Soquel, CA 95073",
              "description": "Join us at Bargetto Winery in Soquel on Thursday evenings for Live Music and Wine! 6-8PM No cover charge. Wine by-the-glass for purchase. Food will be available for purchase by Taquizas Gabriel Open seating, no reservations required. No outside food is permitted. For more info please call: (831) 475-2258",
              "event_types": [
                "live_music"
              ],
              "price_info": "No cover charge",
              "url": "https://bargetto.com/events2/alex-lucero-live-at-thursday-night-music-538/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bargetto_winery",
                  "source_name": "Bargetto Winery",
                  "fetched_at": "2026-08-22T19:05:36.747276Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bargetto_winery|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8a416b4e0968",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "of Montreal & Healing Potpourri",
              "event_time": "Thursday October 1\n          2026 7:30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-10-01T19:30:00",
              "event_date": "2026-10-01",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "psychedelic pop,  baroque pop, Pop",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$30 in advance / $35 at the door",
              "url": "http://www.bottomofthehill.com/20261001.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-08-24T10:19:28.171858Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1c8abf7dae85",
              "venue_id": "venue_the_sound_room",
              "title": "Brahm Sasner Trio",
              "event_time": "Thursday, October 1, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-10-01T19:30:00",
              "event_date": "2026-10-01",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "2027 American Piano Awards Finalist Brahm Sasner brings his jazz trio to the Sound Room where he'll be joined by Miles Turk on drums and Isaac Coyle on bass. Awarded every four years, the American Piano Awards identifies five emerging jazz artists and highlights their talent throughout a year long competition culminating in the Cole Porter Fellowship prize. Brahm is a 2026 graduate of the prestigious Manhattan School of Music where he developed his dynamic improvisational style through deep study of the jazz tradition. Raised in the Bay Area, Brahm was a member of SF Jazz bands the High School All Stars and the Monday Night Community Band. He has received awards from international, national, and statewide competitions including YoungArts and Rubato International. Brahm is also an alumnus of the Vail Jazz summer workshop. In addition to gigging throughout New York City, Brahm has toured extensively throughout the United States and abroad. He has performed on multiple occasions at Dizzy's Club at Jazz at Lincoln Center, the DeLuxe, Mr. Tipple's, and at Casa De Musica in Porto as part of an international tour. Brahm has three upcoming tours in Europe scheduled for early and mid-2027, and 2028.\n\nTickets at Brahm Sasner Trio",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/brahm-sasner-trio",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-08-26T10:25:42.190144Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_20b668d7bebc",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Little Shop of Horrors",
              "event_time": "2026-10-01",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-10-01",
              "event_date": "2026-10-01",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Book & Lyrics by Howard Ashman, Music by Alan Menken. Based on the film by Roger Corman, Screenplay by Charles Griffith. Directed by Ben Villegas Randle, Musical Direction by Jad Bernardo, Choreography by Leslie Waggoner",
              "event_types": [
                "theater",
                "live_music"
              ],
              "price_info": "",
              "url": "https://nctcsf.org/event/little-shop/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-08-26T11:06:39.262369Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-10-01",
              "run_id": "run_5315ef200ae4",
              "run_label": "Little Shop of Horrors, Sep 12 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0ae6a0419672",
              "venue_id": "venue_bookshop_santa_cruz",
              "title": "MIRIAM PAWEL, CALIFORNIA DREAMS",
              "event_time": "Thu, 10/1/2026 7:00pm - 8:00pm",
              "venue_name": "Bookshop Santa Cruz",
              "event_start": "2026-10-01T19:00:00",
              "event_date": "2026-10-01",
              "venue_address": "1520 Pacific Ave, Santa Cruz, CA 95060",
              "description": "FREE IN-STORE EVENT: Bookshop Santa Cruz welcomes Pulitzer Prize-winning journalist Miriam Pawel for a reading and signing of her new book California Dreams: The Making and Remaking of the Universi...",
              "event_types": [
                "literary"
              ],
              "price_info": "",
              "url": "https://bookshopsantacruz.com/miriam-pawel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bookshop_santa_cruz",
                  "source_name": "Bookshop Santa Cruz",
                  "fetched_at": "2026-08-27T22:11:24.045604Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bookshop_santa_cruz|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_345b251e8770",
              "venue_id": "venue_guild_theatre",
              "title": "Geoff Tate's Operation: Mindcrime",
              "event_time": "OCT\n01\n8:00 PM",
              "venue_name": "Guild Theatre",
              "event_start": "2026-10-01T20:00:00",
              "event_date": "2026-10-01",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "DOORS OPEN: 7:00 PM • SHOW: 8:00 PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.guildtheatre.com/shows/geoff-tate-s-operation-mindcrime-the-final-chapter-01-oct",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-08-28T10:40:15.787828Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_guild_theatre|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5dbed29e7e95",
              "venue_id": "venue_the_freight__salvage",
              "title": "Musical Story Time",
              "event_time": "2026-10-01T10:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-10-01T10:00:00",
              "event_date": "2026-10-01",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "What began in 2013 as a small musical story time at Berkeley’s Claremont Branch Library has grown into one of the East Bay’s most beloved family traditions. Founded by children’s librarian Michael Kwende (“Mr. Michael”) and retired librarian and guitarist Tim DeWolf, The Story Time Band is now a dynamic ensemble featuring children’s librarian, Juan Castille, library specialist, Donovan Russell, and longtime Berkeley resident and keyboardist Tienne Lee.",
              "event_types": [
                "workshop"
              ],
              "price_info": "FREE",
              "url": "https://berkeleypubliclibrary.libnet.info/event/17138695",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6a6e1e988e2d",
              "venue_id": "venue_the_freight__salvage",
              "title": "Maruja Limón",
              "event_time": "2026-10-01T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-10-01T19:00:00",
              "event_date": "2026-10-01",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Account Login Cart Time remaining: 00:00 Enter Promo Code Promo Code (Optional) Activate Code Promo Code View Cart 0 Your cart has expired Your order contained expired items and your shopping cart has been emptied. Close Enter Promo Code Maruja Limón, Thursday, October 1, 2026 8:00PM Event Summary Thursday, October 1, 2026 8:00PM Maruja Limón 2026 Maruja Limón Additional Details Maruja Limón is a female sextet from Barcelona known for their vibrant music that blends flamenco, pop, and Latin rhythms. Formed in 2014, they compose and arrange their own songs and have performed at festivals and venues across Europe, Morocco, and Spain, including Festival Cruilla and Pirineos Sur. They are presenting the EP Te como la cara , where they explore Catalan, flamenco, and Latin rumba fused with experimental electronic sounds, dembow, salsa, and pop, delivering explosive music with lyrics that balance sensitivity and irony. They gained recognition in Billboard’s On the Radar Latin section after their debut in the Latin Alternative Music Conference (LAMC, New York). In January 2025, Maruja Limón made their first U.S. tour, captivating audiences and filling venues like the Lincoln Center in New York, the Kennedy Center in Washington, and even making a splash in Philadelphia. Their energy and unique sound left a lasting impression—expect them back soon! Website | Facebook | Instagram Read More Hide Additional Options View Full Calendar Please Note: Donor discount applied at checkout. Interested in donating? Click here. Advance Tickets: $39.00 (includes all fees); Day of Show Tickets: $44.00 (includes all fees) Doors: 7:00 PM; Show: 8:00 PM Select your tickets Available Groups Select Other Sold Out! General Admission Please select a group to display sections. Choose an available section to see ticket options Quantity for General Admission General Admission $30.00 ticket + $9.00 fees Price Quantity 0 1 2 3 4 5 6 7 8 9 10 Youth (21 & under) and Student (be prepared to show student ID",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$39/$44\n(INCLUDES ALL FEES)",
              "url": "https://secure.thefreight.org/16056/16057",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_da4bc23d835b",
              "venue_id": "venue_sfjazz_lab",
              "title": "CYRILLE AIMÉE",
              "event_time": "2026-10-01 7:00 PM",
              "venue_name": "SFJAZZ Lab",
              "event_start": "2026-10-01T19:00:00",
              "event_date": "2026-10-01",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Winner of the Sarah Vaughan International Vocal Competition, Cyrille Aimée truly has jazz in her blood. Raised by a French father and Dominican mother in the northern French town of Samois-sur-Seine – the last home of Roma jazz giant Django Reinhardt – Aimée found inspiration in the music of Reinhardt and the freedom of the gypsy lifestyle, singing on street corners during travels across Europe. Winning the Montreux Jazz Festival Vocal Competition in 2007 helped finance her self-produced debut album, and finishing as a finalist in the 2012 Thelonious Monk International Jazz Vocal Competition elevated Aimée’s visibility to a global level as a major new figure in jazz. A performer possessed of an infectious joy, lightness of touch and deep feeling for the lyric, Aimée released her breakout 2014 hit on Mack Avenue, It’s a Good Day , mixing Roma jazz inspirations, bossa nova, flamenco and the Great American Songbook. A relocation to Costa Rica and new motherhood have instilled a fresh inspiration in Aimée, and for these performances, she performs a cross-section of her wide-ranging repertoire including music from her latest Whirlwind release, à Fleur de Peau and live session, Cyrille Aimée: 4.24 .",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/cyrille-aimee/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_lab|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_c1bf342236fa",
              "venue_id": "venue_sfjazz_miner",
              "title": "HIROMI & KAZUNORI KUMAGAI",
              "event_time": "2026-10-01 7:30 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-10-01T19:30:00",
              "event_date": "2026-10-01",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "PLEASE NOTE Due to a scheduling conflict, Hiromi's Saturday, October 3rd concert program has changed from The Trio Project to a duo concert with tap dancer Kazunori Kumagai. If you have any questions, please contact our Box Office at boxoffice@sfjazz.org or 415-788-7353 ABOUT THIS SHOW Virtuoso pianist Hiromi returns to the Miner stage with four exclusive nights with projects ranging from solo to trio. She kicks off her residency with remarkable duo evening with Japanese tap dance master Kazunori Kumagai , revisiting their ongoing collaboration that goes back to their showstopping debut performance at the 2011 Tokyo Jazz Festival. Moving to New York at age 19 to immerse himself in tap culture, Kumagai is a veteran of Ted Levy and Savion Glover’s “Funk University” — the training ground for the landmark musical Bring in da Noise, Bring in da Funk — and studied with the late legend Gregory Hines. After moving back to Japan, Kumagai built on his affinity for jazz with the iconic Japanese trumpeter Terumasa Hino and opened his own studio in Japan in 2008. He was selected as one of the “100 Most Influential Japanese People” by Newsweek Japan and appeared as a solo performer at the Opening Ceremony of the 2020 Summer Olympics in Tokyo. He and Hiromi first toured Japan together in 2018. Hiromi’s work in a duo setting has always been a hallmark of her career, in which the limitlessly talented pianist can play off their shared energy, taking both artists to new heights of creativity.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/hiromi-kazunori-kumagai/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_c8ed4bb31675",
              "venue_id": "venue_temescal_arts_center",
              "title": "Improvisation Workshop - First Tuesdays",
              "event_time": "2026-10-01T20:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-10-01T20:00:00",
              "event_date": "2026-10-01",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Improvisation is the key - hosted by Lewis Jordan. Open Workshop and Playground in free improvisation. Spontaneously Assembled Small Groups will collaborate. Come to listen, to be heard, to see, to move. Inviting musicians, poets, dancers, to a non-hierarchical setting to improvise together. Spontaneously composing or conducting, we'll be on a quest for fire.",
              "event_types": [
                "workshop",
                "experimental"
              ],
              "price_info": "Donations encouraged",
              "url": "https://www.temescalartcenter.org/tacmusic.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-08-28T14:09:19.773505Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-10-01",
              "run_id": "run_16a4ae4ccea6",
              "run_label": "Improvisation Workshop - First Tuesdays, Sep 1 – Dec 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_626063521c87",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-10-01",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-10-01",
              "event_date": "2026-10-01",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-10-01",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a93951ccd45a",
              "venue_id": "venue_sfmoma",
              "title": "RM x SFMOMA: Between You and Me",
              "event_time": "Thursday, Oct 1–Saturday, Oct 3, 2026",
              "venue_name": "SFMoma",
              "event_start": "2026-10-01",
              "event_date": "2026-10-01",
              "venue_address": "151 Third St, San Francisco, CA 94103",
              "description": "Under the CPRA, you have the right to opt-out of the sale or sharing of your personal information to third parties. These cookies collect information for analytics and to personalize your experience with targeted ads. You may exercise your right to opt out of the sale or sharing of personal information by using this toggle switch. If you opt out we will not be able to offer you personalized ads and will not hand over your personal information to any third parties. Additionally, you may contact our legal department for further clarification about your rights as a California consumer by using this Exercise My Rights link.If you have enabled privacy controls on your browser (such as a plugin), we have to take that as a valid request to opt-out. Therefore we would not be able to track your activity through the web. This may affect our ability to personalize ads according to your preferences.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://www.sfmoma.org/event/member-previews-rm-x-sfmoma-between-you-and-me/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sfmoma",
                  "source_name": "SFMoma",
                  "fetched_at": "2026-08-28T16:39:30.693329Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfmoma|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c070d961de28",
              "venue_id": "venue_omca",
              "title": "Día de los Muertos",
              "event_time": "2026-10-01",
              "venue_name": "OMCA",
              "event_start": "2026-10-01",
              "event_date": "2026-10-01",
              "venue_address": "1000 Oak St, Oakland, CA 94607",
              "description": "In collaboration with OMCA's Día de los Muertos Committee, we honor Day of the Dead every October and November.",
              "event_types": [
                "community"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_omca",
                  "source_name": "OMCA",
                  "fetched_at": "2026-08-28T16:49:24.654558Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_omca|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_65706c7bd506",
              "venue_id": "venue_the_pear_theatre",
              "title": "Private Lives",
              "event_time": "2026-10-01",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-10-01",
              "event_date": "2026-10-01",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "In this sparkling comedy of manners, two former lovers find themselves honeymooning with new spouses in adjoining rooms—only to discover that their passion for each other hasn't dimmed.",
              "event_types": [
                "theater"
              ],
              "price_info": "$46.00 - $48.00",
              "url": "https://www.thepear.org/whats-playing-now",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-08-28T18:26:07.122240Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-10-01",
              "run_id": "run_d1a58de7893a",
              "run_label": "Private Lives, Sep 25 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a29584786673",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Renée Fleming Sings Strauss",
              "event_time": "Thursday, Oct 1, 2026 | 2:00 pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-10-01T14:00:00",
              "event_date": "2026-10-01",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "Overview A delectable double dose of Richard Strauss, administered by two of his greatest living interpreters, soprano Renée Fleming and debuting guest conductor Santtu-Matias Rouvali. In the late-life cycle Four Last Songs, Strauss bids a tender farewell to his life in music. Along the way, he pays tribute to Pauline, his diva-soprano spouse, as well as his horn-playing father—radiant French horn solos grace each of the songs. Ein Heldenleben, the irony-infused symphonic poem that Strauss wrote in his mid-30s, is an impassioned portrait of human successes and failures, told with a flair for the dramatic.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "LEARN MORE",
              "url": "https://www.sfsymphony.org/Buy-Tickets/2026-27/Renee-Fleming-Strauss",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-08-28T19:38:14.129031Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_aad7adedd468",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "Gromkie",
              "event_time": "2026-10-01T20:00:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-10-01T20:00:00",
              "event_date": "2026-10-01",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "Stage production featuring Viktoriya Tolstoganova and Maksim Vitorgan in Savva Savelyev's romantic comedy \"Gromkie.\"",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.palaceoffinearts.org/event/gromkie/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-08-28T21:32:02.715078Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_34a02afc2ec5",
              "venue_id": "venue_club_fox",
              "title": "First Thursday Blues: Dennis Jones",
              "event_time": "2026-10-01T18:00:00",
              "venue_name": "Club Fox",
              "event_start": "2026-10-01T18:00:00",
              "event_date": "2026-10-01",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Eventbrite - Club Fox presents First Thursday Blues - DENNIS JONES - Thursday, October 1, 2026 at Club Fox, Redwood City, CA. Find event and ticket information.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/first-thursday-blues-series-dennis-jones-tickets-1994247809883?aff=oddtdtcreator&keep_tld=true",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-08-28T22:45:26.741794Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_315adc68079c",
              "venue_id": "venue_rhythmix",
              "title": "The Locals: Opening Reception",
              "event_time": "2026-10-01T18:00:00",
              "venue_name": "Rhythmix",
              "event_start": "2026-10-01T18:00:00",
              "event_date": "2026-10-01",
              "venue_address": "2513 Blanding Ave, Alameda, CA 94501",
              "description": "Opening reception for \"The Locals\" exhibit at K Gallery. Exhibit dates listed as September 11 to October 25, 2026.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://www.rhythmix.org/upcoming-exhibits/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rhythmix",
                  "source_name": "Rhythmix",
                  "fetched_at": "2026-08-28T23:14:01.025318Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rhythmix|2026-10-01",
              "run_id": "run_566a8f02098a",
              "run_label": "The Locals: Opening Reception, Sep 11 – Oct 25",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_ee209e1d9286",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-10-01",
              "venue_name": "De Young",
              "event_start": "2026-10-01",
              "event_date": "2026-10-01",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-10-01",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9e5802ebca8d",
              "venue_id": "venue_punch_line",
              "title": "LESLIE LIAO",
              "event_time": "Oct 1, 2026 8:00 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-10-01T20:00:00",
              "event_date": "2026-10-01",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Stand-up comedian, writer, and actress Leslie Liao shares her relatable, matter-of-fact humor about navigating life as a single Chinese-American woman in Los Angeles. She has been featured as a Variety \"Comic to Watch\" and recently released her debut special, Silky Smooth.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/leslie-liao-san-francisco-california-10-01-2026/event/1C0064A4DF2B9A05",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f77ca04cf5e3",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "GEORGE CIVERIS",
              "event_time": "Thu Oct 1, 2026 7:30PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-10-01T19:30:00",
              "event_date": "2026-10-01",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Comedian, writer, and StraightioLab co-host George Civeris brings his sharp observational stand-up to Cobb's Comedy Club.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/george-civeris-san-francisco-california-10-01-2026/event/1C0064C917396884",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b8438bb08b21",
              "venue_id": "venue_shapeshifters",
              "title": "Gravitational Lensing: Feminist Film Dialogues",
              "event_time": "2026-10-01",
              "venue_name": "Shapeshifters",
              "event_start": "2026-10-01",
              "event_date": "2026-10-01",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "Program 17: Family Portraits/Relational Exercises includes a spectrum of diaristic films—from uncanny documentary to autobiographical re-enactments—that manifest different ways filmmakers choose to represent their relationships to family and, more broadly, to home (both literal and conceptual) through cinematic language.",
              "event_types": [
                "film"
              ],
              "price_info": "San Francisco Cinematheque",
              "url": "https://sfcinematheque.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shapeshifters",
                  "source_name": "Shapeshifters",
                  "fetched_at": "2026-08-30T10:04:33.112973Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-10-01",
              "run_id": "run_8afbca984fe1",
              "run_label": "Gravitational Lensing: Feminist Film Dialogues, Sep 9 – Nov 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c29add63be4a",
              "venue_id": "venue_the_independent",
              "title": "MARI FROES",
              "event_time": "10.1.2026 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-10-01T20:00:00",
              "event_date": "2026-10-01",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List Mari Froes Thu, Oct 1 Doors: 7:30 pm | Show: 8:00 pm All Ages Please note - there is a delivery delay set for 2 weeks prior to show. Buy Tickets Share + Google Calendar Artists Mari Froes Back to Event List Upcoming Events Novulent Fri Jun 19 Mamas Gun Sat Jun 20 Out & Loud Thu Jun 25 The Lagoons Fri Jun 26 Bay Pride Amplified! Sat Jun 27 Kelly McFarling Thu Jul 2 Mac Gross Project – SF Rock Project Benefit + Against Medical Advice Album Release Fri Jul 3 High Fade Wed Jul 8 Young Franco Fri Jul 10 The Emo Night Tour Sat Jul 11 bad tuner x veggi Fri Jul 17 Los Tranquilos Sat Jul 18",
              "event_types": [
                "live_music"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://www.theindependentsf.com/tm-event/mari-froes/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-08-31T10:40:49.218190Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1f6e750e8be7",
              "venue_id": "venue_yoshis",
              "title": "VINCENT INGALA",
              "event_time": "October 1, 2026 - 7:30 PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-10-01T19:30:00",
              "event_date": "2026-10-01",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "ONE OF THE MOST EXCITING ARTISTS TO EMERGE THIS PAST DECADE",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$39 - $79",
              "url": "https://yoshis.com/events/buy-tickets/vincent-ingala-3/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_931dc7f26a88",
              "venue_id": "venue_ivy_room",
              "title": "The Clarke Nova",
              "event_time": "Oct 1 6:30 PM",
              "venue_name": "Ivy Room",
              "event_start": "2026-10-01T18:30:00",
              "event_date": "2026-10-01",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "ivy room presents - genre - punk",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ivyroom.com/#/events/194339",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-08-31T11:55:01.170393Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ivy_room|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_655914bbe097",
              "venue_id": "venue_presidio_theater",
              "title": "Mountains of the Moon",
              "event_time": "2026-10-01",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-10-01T19:30:00",
              "event_date": "2026-10-01",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "CHRIS BENCHETLER is a multidisciplinary fine artist based in Mammoth Lakes, CA, whose work explores the intersection of mountain culture, human consciousness, and the natural world. While widely known for his career in professional skiing and filmmaking, his creative foundation is rooted in visual art; vivid, dreamlike compositions that channel movement, music, and the spirit of the outdoors. In 2025, he created the official 60th Anniversary logo for the Grateful Dead and directed and produced “Mountains of the Moon,” a multi-year immersive project blending film, painting, animation, music, and transforming landscapes with light. He and his wife, Kimmy Fasani, also started The Benchetler Fasani Foundation, providing a meaningful connection to the outdoors for those experiencing hardship and loss. As well as opened Wind Drift Studios, a gallery and community space dedicated to showcasing art and cultivating creative connection in Mammoth.",
              "event_types": [
                "theater"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.presidiotheatre.org/show-details/mountains-of-the-moon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-08-31T13:00:36.584647Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-10-01",
              "run_id": "run_64efd1a3bb9f",
              "run_label": "Mountains of the Moon, Oct 1 – Oct 2",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c62f411f8954",
              "venue_id": "venue_masonic_hall",
              "title": "An Evening Honoring Steve Earle",
              "event_time": "2026-10-01T19:00:00",
              "venue_name": "Masonic Hall",
              "event_start": "2026-10-01T19:00:00",
              "event_date": "2026-10-01",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "This special tribute concert celebrates the music, storytelling, and enduring legacy of iconic Americana singer-songwriter Steve Earle. The evening highlights influential songs and moments from across his celebrated career.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/an-evening-honoring-steve-earle-san-francisco-california-10-01-2026/event/1C0064BAEF8EA235",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-08-31T14:14:07.848437Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_masonic_hall|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1aae8cfe30fb",
              "venue_id": "venue_ashkenaz",
              "title": "BACHATA Nightz",
              "event_time": "10/01/2026 7:30 PM",
              "venue_name": "Ashkenaz",
              "event_start": "2026-10-01T19:30:00",
              "event_date": "2026-10-01",
              "venue_address": "1317 San Pablo Ave, Berkeley, CA 94702",
              "description": "Kathy Reyes - Class and Social Dance Party",
              "event_types": [
                "dance",
                "community"
              ],
              "price_info": "TICKETS",
              "url": "https://www.ashkenaz.com/#/events/195476",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashkenaz",
                  "source_name": "Ashkenaz",
                  "fetched_at": "2026-08-31T14:45:33.243069Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_ashkenaz|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_01b0f58fe095",
              "venue_id": "venue_yerba_buena_center",
              "title": "GaHee Park: Behind the Curtain",
              "event_time": "2026-10-01",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-01",
              "event_date": "2026-10-01",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Park invites us to peek behind the curtain, as she lays claim to her own power as a surrealist painter working across fantasy and intimacy.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/gahee-park-behind-the-curtain/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-01",
              "run_id": "run_5353f80886f6",
              "run_label": "GaHee Park: Behind the Curtain, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b94ae6586572",
              "venue_id": "venue_yerba_buena_center",
              "title": "Rael San Fratello: Prototypes",
              "event_time": "2026-10-01",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-01",
              "event_date": "2026-10-01",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The most comprehensive presentation to date of the renowned Bay Area design studio Rael San Fratello.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/rael-san-fratello-prototypes-and-provocations/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-01",
              "run_id": "run_cd09bf07fb68",
              "run_label": "Rael San Fratello: Prototypes, Sep 25 – Jan 31",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_dc9d9fe337f0",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dread Scott: The Body Politic",
              "event_time": "2026-10-01",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-01",
              "event_date": "2026-10-01",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The exhibition reflects Dread Scott’s longtime commitment to art that confronts political issues and interrogates American patriotism.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dread-scott-the-body-politic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-01",
              "run_id": "run_995f7fbf41ba",
              "run_label": "Dread Scott: The Body Politic, Sep 25 – Jan 31",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ae75175cbe98",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dream",
              "event_time": "2026-10-01",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-01",
              "event_date": "2026-10-01",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public art installation commissioned by YBCA and co-sponsored by San Francisco Public Works.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dream-public-art/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-01",
              "run_id": "run_b6a5ba4e8809",
              "run_label": "Dream, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_32982285814f",
              "venue_id": "venue_yerba_buena_center",
              "title": "SoMa Mahal Kita",
              "event_time": "2026-10-01",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-01",
              "event_date": "2026-10-01",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A message of love for the SoMa neighborhood and community, inspired by weaving practices in the Phillipines and the colors of the Filipino flag.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/soma-mahal-kita-soma-i-love-you-ciriaco-sayoc/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-01",
              "run_id": "run_0c5141fff335",
              "run_label": "SoMa Mahal Kita, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3586509f3fa0",
              "venue_id": "venue_yerba_buena_center",
              "title": "We Rooted in Flight",
              "event_time": "2026-10-01",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-01",
              "event_date": "2026-10-01",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public artwork inviting passerbyers to join in the journey of collective flight",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/we-fly-for-a-liberated-we-we-rooted-in-flight/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-01",
              "run_id": "run_1d34139aedcf",
              "run_label": "We Rooted in Flight, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2466026d14fc",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-10-01T14:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-10-01T14:00:00",
              "event_date": "2026-10-01",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-10-01",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_4266dd4f7b2b",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-10-01T18:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-10-01T18:00:00",
              "event_date": "2026-10-01",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-10-01",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 2,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_959b273a12f2",
              "venue_id": "venue_tupelo",
              "title": "The Camarros",
              "event_time": "Thursday October 1st 9:00PM - 1:00AM",
              "venue_name": "Tupelo",
              "event_start": "2026-10-01T21:00:00",
              "event_date": "2026-10-01",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "Call out a tune. They probably know it. 20+ years at the Good Dust, 7 nights a week. These guys are legends of the SF music scene",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0afc15533cd6",
              "venue_id": "venue_city_lights_theater",
              "title": "Eureka Day",
              "event_time": "2026-10-01T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-10-01T19:30:00",
              "event_date": "2026-10-01",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "Sharp comedy by Jonathan Spector about a progressive Berkeley private school whose board is thrown into conflict during a mumps outbreak. Runs September 24 through October 18, 2026.",
              "event_types": [
                "theater"
              ],
              "price_info": "Single tickets go on sale June 1",
              "url": "https://cltc.org/event/eureka-day/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-09-02T10:09:11.201902Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-10-01",
              "run_id": "run_4a0cceaa9027",
              "run_label": "Eureka Day, Sep 24 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ccb54d3be446",
              "venue_id": "venue_f8",
              "title": "CONNECT OCT 2026",
              "event_time": "2026-10-01T21:00:00",
              "venue_name": "F8",
              "event_start": "2026-10-01T21:00:00",
              "event_date": "2026-10-01",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "Monthly techno residency CONNECT hosted by JustJovani and F8 Presents showcasing local and touring techno artists.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10",
              "url": "https://ra.co/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-09-02T10:39:00.610887Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_f8|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_c5aab92ce376",
              "venue_id": "venue_discretion_brewing",
              "title": "1st Thursday W/ Slingshot",
              "event_time": "2026-10-01T17:30:00",
              "venue_name": "Discretion Brewing",
              "event_start": "2026-10-01T17:30:00",
              "event_date": "2026-10-01",
              "venue_address": "2703 41st Ave Ste A, Soquel, CA 95073",
              "description": "Live Music 5:30-7:30pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_discretion_brewing",
                  "source_name": "Discretion Brewing",
                  "fetched_at": "2026-09-02T11:35:03.120781Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_discretion_brewing|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f9c293c9b2f4",
              "venue_id": "venue_madrone_art_bar",
              "title": "Brazilian Wax",
              "event_time": "October 1 @ 9:30 pm - 1:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-10-01T21:30:00",
              "event_date": "2026-10-01",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Brazilian Disco DJ Veesh spinning Vintage Brazilian Disco, Funk, Samba & Soul beats to die for. Join us at Madrone, Let’s Keep it Rio! NO COVER 9:30pm",
              "event_types": [
                "dj_party"
              ],
              "price_info": "NO COVER",
              "url": "https://madroneartbar.com/event/brazilian-wax-2-2026-02-11-2026-07-08-2026-08-06/2026-10-01/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_893ca9d23050",
              "venue_id": "venue_kuumbwa_jazz",
              "title": "El Khat",
              "event_time": "2026-10-01",
              "venue_name": "Kuumbwa Jazz Center",
              "event_start": "2026-10-01T19:00:00",
              "event_date": "2026-10-01",
              "venue_address": "320-2 Cedar St, Santa Cruz, CA 95060",
              "description": "Led by multi-instrumentalist Eyal El Wahab, this innovative ensemble reimagines traditional Yemeni folk songs using custom-built instruments made from salvaged materials. Their vibrant sound fuses Middle Eastern melodies with retro-futuristic psych, post-punk, and funk.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_kuumbwa_jazz",
                  "source_name": "Kuumbwa Jazz Center",
                  "fetched_at": "2026-09-03T10:24:11.929813Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_kuumbwa_jazz|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a36bf00d492a",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "ELENAH Momento Album Release",
              "event_time": "Thursday, October 1, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-10-01T19:00:00",
              "event_date": "2026-10-01",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "ELENAH celebrates the release of their new album, Momento, with a special expanded-band performance featuring Colombian pianist and arranger Óskar Ly and the Jazz Mafia horn section. Led by Ecuadorian-American producer, composer and singer David Saenz, ELENAH brings together reggae, cumbia, Latin music, hip hop, and rhythms from across the Caribbean and African diaspora. For this album release, that sound gets an even bigger musical canvas, with Óskar Ly—a Barranquilla-born multi-instrumentalist whose career spans salsa, jazz, and collaborations with leading Latin musicians—joining the band on piano.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/elenah-momento-album-release-show-featuring-oskar-ly-jazz-mafia-horns/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1ea76b37be33",
              "venue_id": "venue_pacific_film_archive",
              "title": "Free First Thursday",
              "event_time": "Oct 01, 2026 All Day",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-10-01",
              "event_date": "2026-10-01",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "First Thursdays are a great time to visit BAMPFA! Admission to our galleries is free all day.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://bampfa.org/event/free-first-thursdays",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_742e68316901",
              "venue_id": "venue_pacific_film_archive",
              "title": "Exhibition Tour: Maren Hassinger",
              "event_time": "Oct 01, 2026 1:15 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-10-01T13:15:00",
              "event_date": "2026-10-01",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Graduate students from the Departments of African American and African Diaspora Studies and History of Art offer exhibition tours on selected Wednesdays at 12:15 PM, Sundays at 2 PM, and Free First Thursdays at 1:15 PM.",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://bampfa.org/event/exhibition-tour-maren-hassinger-living-moving-growing",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f6bc58fd7642",
              "venue_id": "venue_pacific_film_archive",
              "title": "Italianamerican & American Boy",
              "event_time": "Oct 01, 2026 7 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-10-01T19:00:00",
              "event_date": "2026-10-01",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "Two fascinating documentaries offer portals to the heart of what inspires Martin Scorsese: the lives and stories of real-life characters, like his parents and his friend and colleague Steven Prince.",
              "event_types": [
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/italianamerican-and-american-boy-profile-steven-prince",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7be70d4e5d2a",
              "venue_id": "venue_fox_theater_rwc",
              "title": "Rick Steves",
              "event_time": "2026-10-01T19:30:00",
              "venue_name": "Fox Theater Redwood City",
              "event_start": "2026-10-01T19:30:00",
              "event_date": "2026-10-01",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "PBS travel authority Rick Steves speaks in Redwood City about planning fun, affordable, and culturally broadening trips.",
              "event_types": [
                "workshop"
              ],
              "price_info": "$39 - $59 (plus fees)",
              "url": "https://www.tixr.com/groups/kqed/events/rick-steves-how-to-see-the-world-redwood-city--199774",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theater_rwc",
                  "source_name": "Fox Theater Redwood City",
                  "fetched_at": "2026-09-03T14:15:06.396214Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theater_rwc|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bac0c5058397",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-01",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-01",
              "event_date": "2026-10-01",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "San Francisco Playhouse. A beloved puppet takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "Tickets On Sale",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-09-04T10:15:07.852694Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-01",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7954e51bd00f",
              "venue_id": "venue_cafe_du_nord",
              "title": "Saint Harison",
              "event_time": "10/1/2026 8:00 pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-10-01T20:00:00",
              "event_date": "2026-10-01",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Live Nation Presents: saint harison presents the ghosted tour (SOLD OUT) Thu, Oct 1 Doors: 7:00 pm | Show: 8:00 pm Tickets: waitlist All Ages Saint Harison is an artist with an undeniable voice Called one of the “great voices not just from the UK, but of all time” by Elton John, Saint has quickly become a fan favorite with nods from Justin Bieber, Jazmine Sullivan, SZA and more. He was recently named on Rolling Stone’s Future of Music list. Citing Amy Winehouse and Frank Ocean as key musical influences, Saint has been covered by British Vogue, Rolling Stone, NPR, GQ, CLASH, Variety, Pigeons & Planes etc. and was named Apple Music's global Up Next artist. Cafe Du Nord's Preferred Viewing Available, General Admission Not Included For any event that is listed as 18 or 21 and over, ANY ticket holder unable to present valid identification indicating that they are of age will not be admitted to this event, and will not be eligible for a refund. Any event listed as All Ages, means 6 years of age or older. ALL tickets are standing room only unless otherwise specified. If you need special accommodations, contact info@cafedunord.com. Support acts are subject to change without refund. Professional Cameras are not allowed without prior approval. Professional Camera defined as detachable lens or of professional grade as determined by the venue staff. When in doubt, just email us ahead of the show! We might be able to get you a Photo Pass depending on Artist’s approval. Artists Saint Harison Video Saint Harison is an artist with an undeniable voice from Southampton, United Kingdom, currently living in Los Angeles. Called one of the “great voices not just from the UK, but of all time” by Elton John, Saint has quickly become a fan favorite with nods from Justin Bieber, Jazmine Sullivan, SZA and more. He was recently named on Rolling Stone’s Future of Music list. Citing Amy Winehouse and Frank Ocean as key musical influences, Saint has been covered by British Vogue, Rolling Stone, N",
              "event_types": [
                "live_music"
              ],
              "price_info": "waitlist",
              "url": "https://cafedunord.com/tm-event/saint-harison-presents-the-ghosted-tour/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cafe_du_nord_and_swedish_american_hall",
                  "source_name": "Cafe Du Nord and Swedish American Hall",
                  "fetched_at": "2026-09-04T10:21:43.132381Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_33163218f660",
              "venue_id": "venue_sevys_aptos",
              "title": "Wine30 Thursdays",
              "event_time": "October 1, Thursday 5:00 PM",
              "venue_name": "Sevy's Bar & Kitchen",
              "event_start": "2026-10-01T17:00:00",
              "event_date": "2026-10-01",
              "venue_address": "7500 Old Dominion Ct, Aptos, CA 95003",
              "description": "",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sevys_aptos",
                  "source_name": "Sevy's Bar & Kitchen",
                  "fetched_at": "2026-09-04T10:39:41.919005Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sevys_aptos|2026-10-01",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-10-02": {
          "date": "2026-10-02",
          "updated_at": "2026-09-04T10:41:17.689586Z",
          "events": [
            {
              "event_id": "evt_2b97c025d7e2",
              "venue_id": "venue_shotgun_studios",
              "title": "Shotgun Spotlight (October)",
              "event_time": "2026-10-02T10:30:00",
              "venue_name": "Shotgun Studios",
              "event_start": "2026-10-02T10:30:00",
              "event_date": "2026-10-02",
              "venue_address": "1201 University Ave, Berkeley, CA 94702",
              "description": "Seminar and gathering series hosted by Patrick Dooley at the studios, dedicated to exploration of live theater and fellowship. The page confirms the series is playing through December 4, 2026, but only some individual upcoming studio dates are clearly listed.",
              "event_types": [
                "community",
                "theater"
              ],
              "price_info": "Pay-what-you-can",
              "url": "https://shotgunplayers.org/online/article/shotgun-spotlight",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shotgun_studios",
                  "source_name": "Shotgun Studios",
                  "fetched_at": "2026-05-08T10:31:58.984559Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_shotgun_players",
                  "source_name": "Shotgun Players",
                  "fetched_at": "2026-05-11T10:06:54.321733Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_shotgun_studios|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_84a789840628",
              "venue_id": "venue_bill_graham_civic",
              "title": "Madeon: Victory Live",
              "event_time": "October 2, 2026 8:00pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "Better known to fans as Madeon, visionary French producer, singer, and songwriter Hugo Pierre Leclercq first went viral at 17 with his “Pop Culture” mashup, which saw him live-mixing samples from 39 different songs on a Novation Launchpad. With his work spreading like wildfire online, Leclercq began touring the world, playing iconic festivals like Coachella and Lollapalooza and sharing bills with the luminaries like Lady Gaga, who invited him to open a series of arena shows and record together. Leclercq would go on to collaborate with everyone from Coldplay and Ellie Goulding to Muse and Deadmau5, but it was his solo work that earned his biggest accolades, with his 2015 debut, Adventure , garnering rave reviews, and his 2019 follow-up, Good Faith , debuting at #1 on the Billboard Dance/Electronic chart and earning a Grammy nomination for Best Electronic Album.",
              "event_types": [
                "electronic",
                "live_music"
              ],
              "price_info": "SIGNUP",
              "url": "https://billgrahamcivic.com/events/madeon-261002",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bill_graham_civic",
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-05-09T12:17:53.363475Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-05-16T01:18:06.327301Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_61d4ea11d560",
              "venue_id": "venue_the_uc_theatre",
              "title": "Death From Above",
              "event_time": "Oct 02 - Show: 8:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "Oct 2 Death From Above, 1979 a/a $39.50 7pm/8pm til 11pm #",
              "event_types": [],
              "price_info": "$39.50 + FEES",
              "url": "https://www.theuctheatre.org/shows/death-from-above-1979-02-oct",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-05-28T17:04:11.601076Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1dd711f52ecb",
              "venue_id": "venue_mountain_winery",
              "title": "Get The Led Out",
              "event_time": "Oct 2, 2026 7:30 PM",
              "venue_name": "Mountain Winery",
              "event_start": "2026-10-02T19:30:00",
              "event_date": "2026-10-02",
              "venue_address": "14831 Pierce Rd, Saratoga, CA 95070",
              "description": "Get The Led Out A Celebration Of \"The Mighty Zep\" Friday, October 2 Doors 5:30PM, Show 7:30PM All Ages to Enter, 21 & Over to Drink The Mountain Winery Buy Tickets Event Info No refunds or exchanges. All shows are rain or shine. Children age 3 and older require a ticket. A child under the age of 3 is considered a lap child and does not require a ticket. For directions, dining, parking, or carpool information, please visit www.mountainwinery.com. For information on how to purchase VIP season tickets including suites and box seats, please visit https://www.mountainwinery.com/vip-seating/ Doors open 2 hours prior to the show time. Seating begins 1 hour prior to the show time. Artist Info From the bombastic and epic, to the folky and mystical, Get The Led Out (GTLO) have captured the essence of the recorded music of Led Zeppelin and brought it to the concert stage. The Philadelphia-based group consists of six veteran musicians intent on delivering Led Zeppelin live, like you’ve never heard before. Utilizing the multi-instrumentalists at their disposal, GTLO re-create the songs in all their depth and glory with the studio overdubs that Zeppelin themselves never performed. When you hear three guitars on the album…GTLO delivers three guitarists on stage. No wigs or fake English accents, GTLO brings what the audience wants…a high energy Zeppelin concert with an honest, heart-thumping intensity. Dubbed by the media as \"The American Led Zeppelin,\" Get The Led Out offers a strong focus on the early years. They also touch on the deeper cuts that were seldom, if ever heard in concert. GTLO also include a special “acoustic set” with Zep favorites such as “Tangerine” and \"Hey Hey What Can I Do.\" GTLO has amassed a strong national touring history, having performed at major club and PAC venues across the country. GTLO’s approach to their performance of this hallowed catalog is not unlike a classical performance. \"Led Zeppelin are sort of the classical composers of the rock era,\" say",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.mountainwinery.com/events/detail?event_id=1259545",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mountain_winery",
                  "source_name": "Mountain Winery",
                  "fetched_at": "2026-06-02T10:55:16.293558Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_mountain_winery|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_261cee42cb31",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "The Hayley Williams Show",
              "event_time": "oct 2 7pm",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-10-02T19:00:00",
              "event_date": "2026-10-02",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "Paramore frontwoman Hayley Williams goes solo with 'The Hayley Williams Show' tour, stopping at the Shoreline Amphitheatre to perform tracks from her solo catalog. Fans will experience her powerful vocals and captivating stage presence in an energetic live production.",
              "event_types": [
                "live_music",
                "rock",
                "electronic",
                "hiphop_rap"
              ],
              "price_info": "$35+",
              "url": "https://www.ticketmaster.com/the-hayley-williams-show-mountain-view-california-10-02-2026/event/1C0064A4D17F6796",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T21:39:26.952332Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-06-04T12:24:46.770694Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2b0bb2595125",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Hasan Minhaj, Ronny Chieng",
              "event_time": "oct 2 7pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-10-02T19:00:00",
              "event_date": "2026-10-02",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Early Show! LIVE SPECIAL TAPING - ft. Hasan Minhaj and Ronny Chieng",
              "event_types": [
                "comedy"
              ],
              "price_info": "$73+",
              "url": "https://thefoxoakland.com/events/hasan-minhaj-ronny-chieng-261002",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-17T10:47:20.580351Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-06-19T11:58:46.732301Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_033eb37d6de2",
              "venue_id": "venue_orpheum_theater",
              "title": "ROBERT PLANT",
              "event_time": "Oct 02, 2026",
              "venue_name": "Orpheum Theatre",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "1192 Market St, San Francisco, CA 94102",
              "description": "Take in Robert Plant's 2026 road trip, the \"Up the Sharp End\" US tour, featuring his empowering latest music with Saving Grace and Suzi Dian, at Orpheum Theatre on Friday 2nd October 2026! Beloved for its deep anthems and bold messages, the roots-oriented album \"Saving Grace\" has had streams in the millions and can be found in playlists everywhere. With massive concerts like their recent tour frenzy through St. Louis, Sacramento, Minneapolis, Chicago, and other US cities, Robert Plant brings new age vibes to San Francisco's progressive center. This fall October 2026 performance will magnify self-expression and inclusivity, resonating with California's forward-thinking community. Fans will sing-along to tracks that champion individuality, inspired by the album's demanding call to be unapologetically you. For just $209, you can be a part of thousands on a platform of great live music, where San Francisco's spirit shines in every hit at the historic Orpheum Theatre. Don't miss this chance to experience the legendary Led Zeppelin vocalist's modern roots energy with special guest Rosie Flores. Grab your seats today via the button above or Orpheum Theatre's box office and show who you are in San Francisco!",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "TICKETS",
              "url": "https://www.broadwaytheatresanfrancisco.com/events/robert-plant-02-october-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_orpheum_theater",
                  "source_name": "Orpheum Theatre",
                  "fetched_at": "2026-06-19T14:45:12.520922Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_atg_sf",
                  "source_name": "ATG SF",
                  "fetched_at": "2026-06-19T16:26:57.487865Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_theaters",
                  "source_name": "SF Theaters",
                  "fetched_at": "2026-06-23T14:16:24.311760Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_orpheum_theater|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d71884e58da0",
              "venue_id": "venue_curran_theater",
              "title": "Thee Phantom & The Illharmonic Orchestra",
              "event_time": "2026-10-02",
              "venue_name": "Curran Theatre",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "445 Geary St, San Francisco, CA 94102",
              "description": "When was the last time you witnessed strings, horns and piano at a Hip-Hop concert? Add to that, a party-rocking DJ, a soul-stirring female vocalist, and a fire-breathing MC, and that is still but a fraction of what you'll see when you catch Thee Phantom & The Illharmonic Orchestra in action! Combining the raw energy and passion of Hip-Hop with the beautiful sounds of orchestral accompaniment, The Illharmonic is just the 3rd Hip-Hop group to headline their own performance at the famed Carnegie Hall. After a sold out performance at the Curran Theatre in 2025, The Illharmonic is returning to San Francisco for one night only.",
              "event_types": [
                "live_music",
                "hiphop_rap",
                "classical"
              ],
              "price_info": "Buy tickets",
              "url": "https://us.atgtickets.com/events/thee-phantom-illharmonic/curran-theater/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_curran_theater",
                  "source_name": "Curran Theatre",
                  "fetched_at": "2026-06-19T14:48:00.993938Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_atg_sf",
                  "source_name": "ATG SF",
                  "fetched_at": "2026-06-19T16:26:57.487865Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_sf_theaters",
                  "source_name": "SF Theaters",
                  "fetched_at": "2026-06-23T14:16:24.311760Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_curran_theater|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_16c86a6e182e",
              "venue_id": "venue_siesta_valley_bowl",
              "title": "Eli Young Band",
              "event_time": "Friday, Oct 2, 2026 8:00 PM",
              "venue_name": "Siesta Valley Bowl",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "100 Gateway Blvd, Orinda, CA 94563",
              "description": "What goes around comes around, and nearly 25 years since their founding in Denton, Texas, multi-Platinum country band Eli Young Band have come home. Led by an unmistakable vocal and bringing a Texas-rock edge to modern country, the never-changing lineup of Mike Eli, James Young, Jon Jones, and Chris Thompson have spent two-plus decades on the run, growing from hometown heroes into globe-trotting, chart-topping pioneers. Yet in all that time, EYB never forgot its raising, and today the foursome reclaim the spirit behind their success. Returning to their independent roots, the bold creative defiance that launched them into the mainstream – and in many ways to their old stomping grounds – it’s a new chapter driven by experience and a million miles of wisdom, from a band of brothers still very much in their prime.“We started this thing when we were like 20 years old, and it’s been such a crazy road and such a longer road than any of us could have conceptualized at the time,” says Jones. “I think right now feels a little full circle, in a really nice way.”“Now, we get to step back into our Texas shoes,” Eli agrees. “I think this new stuff finds us reaching deep into our past as a band. We’re remembering where the magic was – all those songs we wanted to record for our Level record, that felt way too edgy for Country Radio at the time.”Indeed, after becoming icons of Texas’ vibrant college-bar scene – and then packing arenas all over the state (without label support) – that Level album from 2005 landed like a live wire, injecting EYB into the mainstream. They followed in 2008 with their Gold-certified breakout “Always the Love Songs” and Jet Black & Jealous, one of three career Billboard Top 5 albums which include the Number One 10,000 Towns and Platinum Life At Best. Likewise, back-to-back Number One singles came with the 5X Platinum “Crazy Girl” in 2011 and 3X Platinum “Even If It Breaks Your Heart” (2012), plus the Platinum Number One “Drunk Last Night” and 2X Platinum Number One “Love Ain’t” after that. All along they kept the intensity of their live shows front and center, and with a following which now includes more than 1.4 million Facebook followers, 2.2 million monthly Spotify listeners and more, it’s time to get back to the point. Ready to follow up 2022’s Love Talking, the band have returned to Panhandle House Studio in their hometown of Denton – the same studio where Level was born – bringing new tunes and new excitement along with them. All co-written as a band or with long-trusted collaborators, a fresh batch of songs return EYB to the raw, grassroots energy and emotional sting of their early work, geared for the stage and recorded without digital tricks.For the band, being independent again for the first time in years isn’t a challenge, it’s a reward – and they took the chance to embrace not just renewed creative freedom, but the fun of their self contained live-band philosophy.“Going back to Panhandle House where we recorded Level, it feels like we got to remind ourselves why we started making the kind of music we make,” Eli says. “When this music comes out, I think fans will know it is 100% coming from us.”“Honestly, going to Panhandle House feels like going back to your childhood house in a way,” Jones notes. “It just evokes these memories, like this slightly-younger version of ourselves comes out.”“One thing that’s really special is we’ve come full circle and remember that energy, but we’re also older and wiser,” Thompson adds. “We have years of studio, songwriting and performing experience under our belt, so we have more of a honed edge going in. That’s a really cool advantage.”The comfort level is plainly evident. Exploring new corners of their patented sound by day, and going home to their families each night, the band were free to bring every ounce of the last 25 years to bear. Tracks like the lead single “Home In Hometown” are proof, featuring all the elements that made EYB what it is – from the electric vocal delivery to the deeply textured sonics and soulful theme.A true-to-experience ballad of life on the highway, “Home In Hometown” stands as a heart-on-their-sleeve tribute to those the band loves most – and what they’ve learned from 20+ years away. While atmospheric guitars and a steady rhythmic pulse capture a sense of anticipation, another euphoric chorus helps the band unpack what “home” really means.“I was digging deep into our Texas roots,” Eli says of the modern-classic midtempo. “I wanted to write something that felt like Pat Green or Jack Ingram would cut. And when you travel like we do, a lot of times you’re thinking about coming home and being with your family – but, it’s almost like if they meet you on the road, anywhere can be home. It just feels right. I wanted to capture that.”More new tunes rolled out as their 25th anniversary arrived, with the band continuing to celebrate an EYB homecoming. The band’s newest album Strange Hours arrived on August 1, 2025 and features 13 songs – all co-written by Eli Young Band members. Jimmy Robbins and Eric Arjes produced 12 of the 13 tracks, while “Bad Luck” was produced by Julian Raymond and Scott Borchetta. From feel-good singalongs and heart melting wedding anthems to pure, untamable romance and clever comebacks of love, they show the same stage-rocking Texas-country hit makers fans know and love, undaunted and with new maturity baked in. We all know seasons change, but if you pay attention long enough, things have a way of coming back around.“It’s been a blessing just to be able to do this for so long, and over our career we’ve seen a lot of bands come and go,” Young says. “It feels it’s family, and we can take that with us as we go down this next part of the road.”“Our music, since it’s been the four of us making it from day one, has such a strong through line,” Jones agrees. “The way we sounded in the beginning, that’s the way we’re going to sound in the end.”“There is no A&R, there’s no label head. There’s nobody saying, ‘Maybe you should do this, maybe you should push that,’” Eli explains.“Yeah, we’ve got no one to blame,” Jones adds with a laugh. “Honestly, we just want people to know we still absolutely love making music, and this comes from a place of passion. Life is good and we’ve got stuff to say, we’ve got this thing we’ve built. I feel like we’re in a good place.”‍‍",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$55.70 - $93.85 (includes fees)",
              "url": "https://www.ticketmaster.com/event/1C0064CBD094773D",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_siesta_valley_bowl",
                  "source_name": "Siesta Valley Bowl",
                  "fetched_at": "2026-06-23T12:35:02.656256Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-30T18:59:56.104919Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_siesta_valley_bowl|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ecec5f3c99a0",
              "venue_id": "venue_oakland_arena",
              "title": "Billy Strings",
              "event_time": "oct 2 7:30pm",
              "venue_name": "Oakland Arena",
              "event_start": "2026-10-02T19:30:00",
              "event_date": "2026-10-02",
              "venue_address": "7000 Coliseum Way, Oakland, CA 94621",
              "description": "Copyright © 2026 Oakland Arena. Privacy Notice | Cookie Preferences | Your Privacy Choices | Ad Choices | Terms of Use | Accessibility / Site Map a carbon house experience",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.theoaklandarena.com/events/detail/billy-strings",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-25T10:40:49.247198Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_oakland_arena",
                  "source_name": "Oakland Arena",
                  "fetched_at": "2026-06-28T17:26:37.381079Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_oakland_arena|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b2f72bdf4d9d",
              "venue_id": "venue_ashby_stage",
              "title": "The Fall Show",
              "event_time": "2026-10-02T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Long-lasting love is marked by both comfort and conflict. In The Fall Show, an older couple's unexpected romance unfolds against a maelstrom of memory and movement. Lovers collide, chaos erupts, and tenderness persists in an intimate examination of love 'til the very end.",
              "event_types": [
                "theater"
              ],
              "price_info": "$25 - $80 (sliding scale)",
              "url": "https://shotgunplayers.org/online/article/the-fall-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-06-30T10:25:39.676498Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_shotgun_players",
                  "source_name": "Shotgun Players",
                  "fetched_at": "2026-07-04T10:27:48.342982Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-10-02",
              "run_id": "run_538dc31103b5",
              "run_label": "The Fall Show, Sep 26 – Oct 25",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c700a47851bd",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Deerhoof",
              "event_time": "Friday October 2 2026 7:30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-10-02T19:30:00",
              "event_date": "2026-10-02",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Friday October 2 2026\n 7:30PM doors -- music at 8:30PM\n  •••  ALL AGES\n$27 in advance / $30 at the door\n$33.01 in advance [27 face value +6.01 service fee]\nDeerhoof \n pop noise punk\nGreyhound \n punk hardcore\nEtch \n punk",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$ 27 in advance / $30 at the door",
              "url": "http://www.bottomofthehill.com/20261002.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-07-05T11:13:43.716331Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-06T11:10:01.105806Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_200f9201d22e",
              "venue_id": "venue_the_chapel",
              "title": "Justin Nozuka",
              "event_time": "oct 2 8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "To request ADA seating: Please send us an email at boxoffice@thechapelsf.com or call our box office at (415) 551-5157 and we can assist you. Our ADA area can reach capacity early, so we highly recommend contacting us as soon as possible. Day of show requests may not be able to be accommodated. Dine with us at Curio and receive Expedited Entry into The Chapel! When you kick off your evening with dinner and drinks at Curio, we will check your tickets at your table and you will avoid the line outside. Be sure you tell us you're coming to the show when you make your reservation and upon arrival to the restaurant. Reserve HERE . $25 Advance / $30 Day of Show Website | Spotify | YouTube | Instagram Lyrics Born [aka Tom Shimura] is a hip-hop legend who’s been shattering glass ceilings since his start in the ‘90s San Francisco Bay Area home base. The first Asian-American solo rapper to perform at Lollapalooza, Coachella, Outside Lands, and on Jimmy Kimmel Live, Lyrics Born is now Snoop-Dogg-approved with the OG rapper hyping on Instagram LB's recent single “Take It 2 Far” from his recent studio album, Goodbye, Sticky Rice (October 2024). Rolling Stone listed his debut album, Later That Day, in their “200 Greatest Hip-Hop Albums of All Time'' article. Rolling Stone also listed his song “Callin’ Out” in their “100 Best West Coast Hip Hop Songs of All Time”. Lyrics Born came up as part of the Quannum Projects collective of Hip Hop artists from the San Francisco Bay Area that features Blackalicious, Lateef the Truthspeaker, Lifesavas, DJ Shadow, among others. Blending funk, Hip Hop, and soul… and whether playing with a core quartet, an expanded band with full horn section or a stripped down DJ set, Lyrics Born is often called “the FUNKIEST RAPPER IN THE WORLD!” 2026 will big year for Lyrics Born with new singles, a new album, new collaborators and features, and of course, new live and touring plans.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$105",
              "url": "https://wl.seetickets.us/event/lyrics-born/698388?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-06T11:10:01.105806Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-07-12T10:19:14.388752Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_chapel|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8c118aa217d6",
              "venue_id": "venue_cornerstone",
              "title": "Jesse Barrera, Albert Posis, Gabe Bondoc",
              "event_time": "oct 2 8pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Cornerstone presents Jesse Barrera & Albert Posis live at Cornerstone Berkeley.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$33.96",
              "url": "https://www.prekindle.com/event/jesse-barrera-and-albert-posis-tickets-berkeley",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-24T10:42:11.416886Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-07-29T13:11:21.085840Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cornerstone|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_9a2c27f9d0c6",
              "venue_id": "venue_masonic_hall",
              "title": "Danny Elfman",
              "event_time": "oct 2 8:30pm",
              "venue_name": "Masonic Hall",
              "event_start": "2026-10-02T20:30:00",
              "event_date": "2026-10-02",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Renowned composer and Oingo Boingo frontman Danny Elfman takes the stage for a rare and dynamic live performance. The show features a mix of his iconic film scores, rock tracks, and solo material.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$64+",
              "url": "https://www.ticketmaster.com/danny-elfman-san-francisco-california-10-02-2026/event/1C0064DEB217BF80",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-24T10:42:11.416886Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-07-29T13:12:19.159700Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_masonic_hall|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_c6aa18044ce6",
              "venue_id": "venue_castro_theater",
              "title": "Michelle Branch",
              "event_time": "oct 2 8pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Branch won a Grammy Award for her 2002 collaboration with Carlos Santana, “The Game of Love,” which peaked at No. 5 on Billboard’s Hot 100, No. 1 on the Billboard Adult Contemporary chart, and became a major international hit. Her second album, 2003’s Hotel Paper, debuted at No. 2 on the US Billboard album chart and was a top 10 hit around the world. Certified Platinum in the US, and Gold in Australia, Canada and Japan, it spawned the hit single “Are You Happy Now?,” which was nominated for a Grammy for Best Female Rock Performance. Branch was also nominated for Best New Artist.",
              "event_types": [
                "live_music"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thecastro.com/events/michelle-branch-261002",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-24T10:42:11.416886Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-07-28T17:15:02.064805Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_49b6d148b0b7",
              "venue_id": "venue_hardly_strictly_bluegrass",
              "title": "AJ Lee And Blue Summit",
              "event_time": "2026-10-02",
              "venue_name": "Hardly Strictly Bluegrass",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "Golden Gate Park, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hardly_strictly_bluegrass",
                  "source_name": "Hardly Strictly Bluegrass",
                  "fetched_at": "2026-07-26T11:12:15.720018Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_hardly_strictly_bluegrass|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_92b27ce7bfb3",
              "venue_id": "venue_hardly_strictly_bluegrass",
              "title": "Buddy Miller",
              "event_time": "2026-10-02",
              "venue_name": "Hardly Strictly Bluegrass",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "Golden Gate Park, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hardly_strictly_bluegrass",
                  "source_name": "Hardly Strictly Bluegrass",
                  "fetched_at": "2026-07-26T11:12:15.720018Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_hardly_strictly_bluegrass|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_68c5c7844b6c",
              "venue_id": "venue_hardly_strictly_bluegrass",
              "title": "El Khat",
              "event_time": "2026-10-02",
              "venue_name": "Hardly Strictly Bluegrass",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "Golden Gate Park, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hardly_strictly_bluegrass",
                  "source_name": "Hardly Strictly Bluegrass",
                  "fetched_at": "2026-07-26T11:12:15.720018Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_hardly_strictly_bluegrass|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4b9840fb30aa",
              "venue_id": "venue_hardly_strictly_bluegrass",
              "title": "Elizabeth Cook",
              "event_time": "2026-10-02",
              "venue_name": "Hardly Strictly Bluegrass",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "Golden Gate Park, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hardly_strictly_bluegrass",
                  "source_name": "Hardly Strictly Bluegrass",
                  "fetched_at": "2026-07-26T11:12:15.720018Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_hardly_strictly_bluegrass|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_15b10450dcbc",
              "venue_id": "venue_hardly_strictly_bluegrass",
              "title": "Emmylou Harris",
              "event_time": "2026-10-02",
              "venue_name": "Hardly Strictly Bluegrass",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "Golden Gate Park, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hardly_strictly_bluegrass",
                  "source_name": "Hardly Strictly Bluegrass",
                  "fetched_at": "2026-07-26T11:12:15.720018Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_hardly_strictly_bluegrass|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_70e6655b0aaf",
              "venue_id": "venue_hardly_strictly_bluegrass",
              "title": "Gillian Welch & David Rawlings",
              "event_time": "2026-10-02",
              "venue_name": "Hardly Strictly Bluegrass",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "Golden Gate Park, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hardly_strictly_bluegrass",
                  "source_name": "Hardly Strictly Bluegrass",
                  "fetched_at": "2026-07-26T11:12:15.720018Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_hardly_strictly_bluegrass|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b197820b5d97",
              "venue_id": "venue_hardly_strictly_bluegrass",
              "title": "Hiss Golden Messenger",
              "event_time": "2026-10-02",
              "venue_name": "Hardly Strictly Bluegrass",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "Golden Gate Park, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hardly_strictly_bluegrass",
                  "source_name": "Hardly Strictly Bluegrass",
                  "fetched_at": "2026-07-26T11:12:15.720018Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_hardly_strictly_bluegrass|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_788e56942ff1",
              "venue_id": "venue_hardly_strictly_bluegrass",
              "title": "Hot Tuna (Acoustic)",
              "event_time": "2026-10-02",
              "venue_name": "Hardly Strictly Bluegrass",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "Golden Gate Park, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hardly_strictly_bluegrass",
                  "source_name": "Hardly Strictly Bluegrass",
                  "fetched_at": "2026-07-26T11:12:15.720018Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_hardly_strictly_bluegrass|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a5ab1c81de8e",
              "venue_id": "venue_hardly_strictly_bluegrass",
              "title": "John Craigie With The Coffis Brothers",
              "event_time": "2026-10-02",
              "venue_name": "Hardly Strictly Bluegrass",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "Golden Gate Park, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hardly_strictly_bluegrass",
                  "source_name": "Hardly Strictly Bluegrass",
                  "fetched_at": "2026-07-26T11:12:15.720018Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_hardly_strictly_bluegrass|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ff803dc3276a",
              "venue_id": "venue_hardly_strictly_bluegrass",
              "title": "Kathleen Edwards",
              "event_time": "2026-10-02",
              "venue_name": "Hardly Strictly Bluegrass",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "Golden Gate Park, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hardly_strictly_bluegrass",
                  "source_name": "Hardly Strictly Bluegrass",
                  "fetched_at": "2026-07-26T11:12:15.720018Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_hardly_strictly_bluegrass|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7eb596136d9b",
              "venue_id": "venue_hardly_strictly_bluegrass",
              "title": "Larry Campbell & Teresa Williams",
              "event_time": "2026-10-02",
              "venue_name": "Hardly Strictly Bluegrass",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "Golden Gate Park, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hardly_strictly_bluegrass",
                  "source_name": "Hardly Strictly Bluegrass",
                  "fetched_at": "2026-07-26T11:12:15.720018Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_hardly_strictly_bluegrass|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_157ffb7674d2",
              "venue_id": "venue_hardly_strictly_bluegrass",
              "title": "Molly Tuttle",
              "event_time": "2026-10-02",
              "venue_name": "Hardly Strictly Bluegrass",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "Golden Gate Park, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hardly_strictly_bluegrass",
                  "source_name": "Hardly Strictly Bluegrass",
                  "fetched_at": "2026-07-26T11:12:15.720018Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_hardly_strictly_bluegrass|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9cc1364f2d08",
              "venue_id": "venue_hardly_strictly_bluegrass",
              "title": "My Morning Jacket",
              "event_time": "2026-10-02",
              "venue_name": "Hardly Strictly Bluegrass",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "Golden Gate Park, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "live_music",
                "rock",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hardly_strictly_bluegrass",
                  "source_name": "Hardly Strictly Bluegrass",
                  "fetched_at": "2026-07-26T11:12:15.720018Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_hardly_strictly_bluegrass|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e6e4318ec8b4",
              "venue_id": "venue_hardly_strictly_bluegrass",
              "title": "Old Crow Medicine Show",
              "event_time": "2026-10-02",
              "venue_name": "Hardly Strictly Bluegrass",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "Golden Gate Park, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hardly_strictly_bluegrass",
                  "source_name": "Hardly Strictly Bluegrass",
                  "fetched_at": "2026-07-26T11:12:15.720018Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_hardly_strictly_bluegrass|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_717c017fd440",
              "venue_id": "venue_hardly_strictly_bluegrass",
              "title": "Reckless Kelly",
              "event_time": "2026-10-02",
              "venue_name": "Hardly Strictly Bluegrass",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "Golden Gate Park, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hardly_strictly_bluegrass",
                  "source_name": "Hardly Strictly Bluegrass",
                  "fetched_at": "2026-07-26T11:12:15.720018Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_hardly_strictly_bluegrass|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ab5f1603b936",
              "venue_id": "venue_hardly_strictly_bluegrass",
              "title": "Shawn Camp",
              "event_time": "2026-10-02",
              "venue_name": "Hardly Strictly Bluegrass",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "Golden Gate Park, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hardly_strictly_bluegrass",
                  "source_name": "Hardly Strictly Bluegrass",
                  "fetched_at": "2026-07-26T11:12:15.720018Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_hardly_strictly_bluegrass|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1ac704055d95",
              "venue_id": "venue_hardly_strictly_bluegrass",
              "title": "Stacey Earle",
              "event_time": "2026-10-02",
              "venue_name": "Hardly Strictly Bluegrass",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "Golden Gate Park, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hardly_strictly_bluegrass",
                  "source_name": "Hardly Strictly Bluegrass",
                  "fetched_at": "2026-07-26T11:12:15.720018Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_hardly_strictly_bluegrass|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1548a4747e7b",
              "venue_id": "venue_hardly_strictly_bluegrass",
              "title": "Steve Earle & The Hardly Strictly Dukes",
              "event_time": "2026-10-02",
              "venue_name": "Hardly Strictly Bluegrass",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "Golden Gate Park, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hardly_strictly_bluegrass",
                  "source_name": "Hardly Strictly Bluegrass",
                  "fetched_at": "2026-07-26T11:12:15.720018Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_hardly_strictly_bluegrass|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bf6f026407d2",
              "venue_id": "venue_hardly_strictly_bluegrass",
              "title": "Tyler Ballgame",
              "event_time": "2026-10-02",
              "venue_name": "Hardly Strictly Bluegrass",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "Golden Gate Park, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hardly_strictly_bluegrass",
                  "source_name": "Hardly Strictly Bluegrass",
                  "fetched_at": "2026-07-26T11:12:15.720018Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_hardly_strictly_bluegrass|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8c2e07d6da3d",
              "venue_id": "venue_hardly_strictly_bluegrass",
              "title": "Yasmin Williams And William Tyler",
              "event_time": "2026-10-02",
              "venue_name": "Hardly Strictly Bluegrass",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "Golden Gate Park, San Francisco, CA 94118",
              "description": "",
              "event_types": [
                "live_music",
                "folk",
                "festival"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hardly_strictly_bluegrass",
                  "source_name": "Hardly Strictly Bluegrass",
                  "fetched_at": "2026-07-26T11:12:15.720018Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_hardly_strictly_bluegrass|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_43423bed43cf",
              "venue_id": "venue_august_hall",
              "title": "Hey Nothing",
              "event_time": "oct 2 8pm",
              "venue_name": "August Hall",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "This website or its third-party tools process personal data. You can opt out of the sale of your personal information by clicking on the \"Do Not Sell or Share my Personal Information\" Link.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$35.70",
              "url": "https://www.augusthallsf.com/tm-event/hey-nothing/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-07-29T14:20:13.717420Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_4c4f1be99bf5",
              "venue_id": "venue_the_fillmore",
              "title": "Gillian Welch & David Rawlings",
              "event_time": "oct 2 8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "Acclaimed folk and Americana duo Gillian Welch and David Rawlings bring their intricate acoustic music and harmonies to The Fillmore.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$84",
              "url": "https://www.ticketmaster.com/gillian-welch-david-rawlings-san-francisco-california-10-02-2026/event/1C0064F49E64932C",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-08-08T10:16:43.793530Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_7eb58417521d",
              "venue_id": "venue_ivy_room",
              "title": "Mrs Robinson and the Dadbeats",
              "event_time": "Friday Oct 2 7:00 PM",
              "venue_name": "Ivy Room",
              "event_start": "2026-10-02T19:00:00",
              "event_date": "2026-10-02",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "ivy room presents - genre - tribute",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/190558",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-07-31T12:32:32.572739Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_ivy_room|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7089e61bd1ed",
              "venue_id": "venue_montgomery_theater",
              "title": "Come Together: A Tribute to the Beatles",
              "event_time": "Oct 2, 2026 @ 7:30pm",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-10-02T19:30:00",
              "event_date": "2026-10-02",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "West Coast Performing Arts Concerts Come Together: The Beatles Concert Experience A celebration of the band that changed music forever. Come Together: The Beatles Concert Experience is more than a…",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://events.timely.fun/jc0x91t0/78407056",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-07-31T14:33:32.949334Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-08-12T10:48:24.659205Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_29db3796292a",
              "venue_id": "venue_san_jose_civic",
              "title": "Ryan Castro – Sende The Last Dance Tour",
              "event_time": "Oct 2, 2026 @ 8:00pm",
              "venue_name": "San Jose Civic",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "Ryan Castro is a global reggaeton and dancehall artist whose impact extends far beyond music—bridging culture, community, sports and entrepreneurship. Dubbed as “El Cantante Del Ghetto”, Castro is…",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://events.timely.fun/jc0x91t0/event/78370010",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-08-09T12:20:24.263699Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-08-12T10:48:24.659205Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_252367a230cc",
              "venue_id": "venue_paramount_theatre",
              "title": "Snarky Puppy",
              "event_time": "2026-10-02T20:00:00",
              "venue_name": "Paramount Theatre",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "2025 Broadway, Oakland, CA 94612",
              "description": "The five-time GRAMMY-winning juggernaut Snarky Puppy returns to Oakland’s Paramount Theatre for a highly anticipated performance. “An exultant throwdown of smart danceability” ( Village Voice ), Snarky Puppy isn’t exactly a jazz band. It’s not a fusion band or a jam band. It’s probably best to take Nate Chinen of The New York Times ’ advice, as stated in an online discussion about the group, to “take them for what they are, rather than judge them for what they’re not.” The global collective which features a revolving cast of up to a dozen musicians makes what it likes to call “music for your brain and booty.” Led by bassist and composer Michael League , the band features a rotating lineup of world class instrumentalists whose résumés boast work with stars like Erykah Badu, Marcus Miller, Justin Timberlake, Roy Hargrove, Snoop Dogg and John Mayer. Their 2022 recording, Empire Central , received a well-earned GRAMMY win for Best Contemporary Instrumental Album at the 66th awards ceremony — their fifth win in as many nominations — and was inspired by the band’s formative home of Dallas, blending their whirlwind jazz-ified funk with elements of Southern rock, electric blues, classic soul, slinky R&B, and modern gospel. The group’s most recent album, 2025’s Somni , created in collaboration with the acclaimed Metropole Orkest, expands the band’s boundary‑blurring sound with lush orchestral textures and deep grooves. Hailed as “a sweeping, cinematic evolution of the band’s groove-driven aesthetic” ( DownBeat ), the project pairs League’s expansive compositions with the orchestra’s rich sonic palette.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.paramountoakland.org/events/detail/snarky-puppy",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_paramount_theatre",
                  "source_name": "Paramount Theatre",
                  "fetched_at": "2026-08-12T10:33:36.596490Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-13T10:16:56.821973Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_paramount_theatre|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_51799b5ed81c",
              "venue_id": "venue_regency_ballroom",
              "title": "HAMDI FC VS. SAN FRANCISCO",
              "event_time": "Oct 2, 2026 8:00 PM",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "with Flava D b2b Cesco",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theregencyballroom.com/events/detail?event_id=1527433",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-08-13T10:47:46.409905Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ba9727c95577",
              "venue_id": "venue_halcyon",
              "title": "JAY CRUSOE",
              "event_time": "2026/10/02 Fri: Oct 2 (10pm-4am)",
              "venue_name": "Halcyon",
              "event_start": "2026-10-02T22:00:00",
              "event_date": "2026-10-02",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "Tampa-based producer and DJ Jay Crusoe is carving out a distinct lane in tech and minimal house. His breakout single “Spontaneous Combustion” helped establish his presence within the U.S. house scene, followed by his Mainframe EP, which launched the Shaliz Read more",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$12",
              "url": "https://link.dice.fm/bac25d090ca6?pid=d6c08999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-08-15T10:42:45.274456Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_67b8ae90403d",
              "venue_id": "venue_rickshaw_stop",
              "title": "The Bends",
              "event_time": "oct 2 9pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-10-02T21:00:00",
              "event_date": "2026-10-02",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "all ages",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20/$24",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_6db7c68cb514",
              "venue_id": "venue_great_american_music_hall",
              "title": "John Craigle",
              "event_time": "oct 2 8pm",
              "venue_name": "Great American",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "all ages; $79.50 seated",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$40/$50",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_b7b0280e7497",
              "venue_id": "venue_kilowatt",
              "title": "Tristen",
              "event_time": "oct 2 8pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "21+",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$24.72",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_kilowatt|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_76dc32539a21",
              "venue_id": "venue_z_space",
              "title": "King Lear",
              "event_time": "October 2 @ 7:00 pm - 10:00 pm",
              "venue_name": "Z Space",
              "event_start": "2026-10-02T19:00:00",
              "event_date": "2026-10-02",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "Directed by Michael Socrates Moran Music composed by Paul Dresher Oakland Theater Project and New Performance Traditions are thrilled to present their most ambitious co-production to date: a bold, music-infused […]",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://dresherensemble.org/event/king-lear-by-william-shakespeare/2026-10-02/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-08-17T14:41:50.422468Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_paul_dresher_ensemble",
                  "source_name": "Paul Dresher Ensemble",
                  "fetched_at": "2026-08-26T10:26:36.842099Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_z_space|2026-10-02",
              "run_id": "run_e3a81a6d4f91",
              "run_label": "King Lear, Sep 25 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2b4d8e6c1306",
              "venue_id": "venue_the_monarch",
              "title": "PROSUMER",
              "event_time": "2 October 2026 9:00 PM",
              "venue_name": "The Monarch",
              "event_start": "2026-10-02T21:00:00",
              "event_date": "2026-10-02",
              "venue_address": "101 6th St, San Francisco, CA 94103",
              "description": "Get ready to dive into the ultimate mix of creator vibes and fresh beats at this one-of-a-kind night!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Buy Ticket",
              "url": "https://www.eventbrite.com/e/prosumer-tickets-1991740946788",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monarch",
                  "source_name": "The Monarch",
                  "fetched_at": "2026-08-20T12:12:16.271150Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monarch|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2ddab971b90c",
              "venue_id": "venue_1015_folsom",
              "title": "DJ SMOKEY + ILYKIMCHI",
              "event_time": "2026/10/02 Fri: Oct 2 (10pm-2am)",
              "venue_name": "1015 Folsom",
              "event_start": "2026-10-02T22:00:00",
              "event_date": "2026-10-02",
              "venue_address": "1015 Folsom St, San Francisco, CA",
              "description": "Friday October 2nd 2026 Operating Systems, DJ Dials & 1015 Folsom Present: DJ SMOKEY ILYKIMCHI 10pm • 21+ Only Table Reservations: BottleService@1015.com",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS | Bottle Service",
              "url": "https://wl.eventim.us/event/dj-smokey-and-ilykimchi/702140?afflky=1015Folsom",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_1015_folsom",
                  "source_name": "1015 Folsom",
                  "fetched_at": "2026-08-20T12:52:11.701520Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_1015_folsom|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_22a44b14bef0",
              "venue_id": "venue_the_riptide",
              "title": "The Tide is High",
              "event_time": "October 2 9:30 PM - October 3 1:30 AM",
              "venue_name": "The Riptide",
              "event_start": "2026-10-02T21:30:00",
              "event_date": "2026-10-02",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "DJ Chaos (AKA Herman) and Dion bring boxes of 7 inch records of Ska, Rocksteady, Reggae and Dub. You'll hear tunes from famous labels such as Studio 1, Treasure Isle, Trojan, Channel 1, Wackies and many more.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_100d6b9a1168",
              "venue_id": "venue_catalyst_sc",
              "title": "Twin Temple",
              "event_time": "Oct 02, 2026 Doors: 8 pm Show: 9 pm",
              "venue_name": "The Catalyst",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "1011 Pacific Ave, Santa Cruz, CA 95060",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$40.02",
              "url": "https://catalystclub.com/event/twin-temple/the-catalyst/santa-cruz-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_catalyst_sc",
                  "source_name": "The Catalyst",
                  "fetched_at": "2026-08-21T16:29:43.952279Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_catalyst_sc|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_94829681f3d7",
              "venue_id": "venue_sc_civic_auditorium",
              "title": "United Sounds of America - Open Rehearsal",
              "event_time": "2026-10-02T19:30:00",
              "venue_name": "Santa Cruz Civic Auditorium",
              "event_start": "2026-10-02T19:30:00",
              "event_date": "2026-10-02",
              "venue_address": "307 Church St, Santa Cruz, CA 95060",
              "description": "Get a behind-the-scenes look as the Santa Cruz Symphony rehearses an all-American orchestral program. This working rehearsal offers music lovers a casual, intimate glimpse into the preparation of the concert.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_santa_cruz_symphony",
                  "source_name": "Santa Cruz Symphony",
                  "fetched_at": "2026-08-22T11:06:19.948084Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sc_civic_auditorium|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_8d731ac56db0",
              "venue_id": "venue_gray_area",
              "title": "Algorithmic Art Assembly presents:",
              "event_time": "10/02/2026",
              "venue_name": "Gray Area",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "2665 Mission St, San Francisco, CA 94110",
              "description": "Joshua Kit Clayton, better know by his stage name Kit Clayton , is a San Francisco-based electronic and digital musician and computer programmer. In addition to his musical work, Joshua is a programmer for Cycling '74 , where he is responsible for further development of the Max/MSP MIDI/audio programming environment. He is a significant contributor to Jitter as well, a multi-dimensional data set processing and visualizing architecture with applications in audio, video, and 3d graphics, which is part of the multimedia package Max . Clayton uses Max, MSP, and Jitter extensively in his own abstract musical compositions, which have been described as including aspects of ambient computer music and glitch. Clayton continues to compose, perform and further develop Max, MSP, and Jitter.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://grayarea.org/event/aaa-kit-clayton/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_gray_area",
                  "source_name": "Gray Area",
                  "fetched_at": "2026-08-22T11:08:17.231968Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_gray_area|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d63327ccc04a",
              "venue_id": "venue_rio_theatre_sc",
              "title": "Fruit Bats (with band)",
              "event_time": "2026-10-02",
              "venue_name": "Rio Theatre",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "1205 Soquel Ave, Santa Cruz, CA 95062",
              "description": "Fruit Batsplus:: Matthew Logan VasquezFruit Bats | The Landfill | MRG887The midwest, particularly the part of the midwest Eric D. Johnson hails from, is a largely flat expanse. Zipping through it on the highway, you’ll see cities and towns rise up in the distance, but blink and you’ll miss other man-made rejoinders to horizontal living dotting the landscape, hill after hill, built from the refuse of the past: landfills. Some of these hills make for great sledding spots, parks, and trails. Others turn organic waste into compost. The Landfill, Fruit Bats’ June 12, 2026 album from Merge Records, is something else entirely: a mountain dominating the landscape of Johnson’s heart.This being a Fruit Bats record, one scales that mountain to take in the view, to see the future spread out as wide and endless as the midwestern plains. “But the mountain that gives us this vantage point,” Johnson says, “is made out of the trash that we’ve created, the collective weight of the past and where it’s taken us.” When he details that view on title track and lead single “The Landfill” — “a holy vision / of what could be / and couldn’t be / and could have been” — it’s thrilling to hear him sent soaring by a full complement of instruments. But what’s truly stunning is how, in his recontouring from could to couldn’t to could have been, he has lost none of the vulnerability that was brought to the foreground of his songwriting by 2025’s solo outing, Baby Man.Over the course of his now 25-year career under the moniker, most of Eric D. Johnson’s output as Fruit Bats has been the product of patience and fine-tuning. His songs, to borrow a phrase, are slow growers, given life on albums that encompass long stretches of time and memory. Baby Man changed that — he disallowed himself from referring to material he’d been working on before laying the album down, utilizing the morning pages technique of stream-of-consciousness, observational songwriting which flowed directly into his afternoon recording sessions. It was both a breathtaking document of Johnson’s skill as a singer-songwriter and an unvarnished account of the two weeks in which he recorded the album.Baby Man’s closeness to Johnson’s heart and the close attention to his voice and instrument its minimalist-maximalist ethos required uncorked something in him as he wrote towards a new full band effort. “That session was over,” he explains, “but there was way more to explore. I liked the immediacy of it, and I wanted to see how that would translate into a full-band Fruit Bats record.” Within weeks, he was back in a studio, this time with his band — David Dawda (bass), Josh Mease (guitars, synth), Frank LoCrasto (piano, synth), and Kosta Galanopoulos (drums) — with whom Johnson has spent over a decade building Fruit Bats into one of the most in-demand live acts in indie rock. Listening to The Landfill, it’s not hard to understand why: simply put, this band smokes.Producing the initial recording sessions in Washington’s Bear Creek Studios, Johnson set out to capture “the sound of this band I constantly marvel at, the feeling of being in a room with musicians you love and trust enough to let them cook.” They laid most of it down on the floor — no click tracks, no comped vocals, and minimal overdubs, with frequent collaborator Thom Monahan returning to provide additional production and The Landfill’s final mix. “It’s how we do things with my other band, Bonny Light Horseman, and I was curious to see how it would work with Fruit Bats,” Johnson notes. “It’s both a very personal record, and my most collaborative to date.”It’s also the most live a Fruit Bats record has been since 2009’s The Ruminant Band, and in paring back the number of tracks that typically layer a full-band song, the psychedelic, technicolor dreaminess of their sound is more vivid than ever. Time and space melt into the sublime as the band gels around Johnson’s hazy croon on “That Goddamn Sun,” stretching out to accommodate him as he trips from California to North Carolina. In striking a balance between ecstatic romance and melancholia, “Think Aboutcha” occupies the blissful-but-doomed intersection of the E Street Band and Paul McCartney, playful but playing for stakes that are larger than life, while “Perhaps We’re a Storm” charges headlong into the unknown.All of these songs — most of the songs on The Landfill, in fact — mark themselves immediately as some of the best in Eric D. Johnson’s ever-expanding songbook, seekers and anthems alike. It’s the most daunting peak he’s scaled yet, musically or lyrically: a swashbuckling set of full-band jammers couldn’t be more honest and open-hearted about his hopes and anxieties, his dreams and failures, what’s passed and what will come to pass, were it just him, his guitar, and the listener.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n  \n\n\n\n\n  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n    \n      \n    \n    \n      \n        \n      \n    \n    \n    \n\n\n\n  \n\n\n\n  \n\n\n\n  \n\n\n\n  \n  \n    \n  \n\n\n    \n\n\n\n  \n\n\n\n\n  Show time: 8:00 PM, doors 7:00 PMTickets: $37.80Advance tickets: www.eventbrite.comEvent website: www.folkyeah.com",
              "event_types": [
                "folk",
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.riotheatre.com/events-2/2026/10/2/fruitbats",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rio_theatre_sc",
                  "source_name": "Rio Theatre",
                  "fetched_at": "2026-08-22T11:37:08.858495Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rio_theatre_sc|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5b9893a76fcc",
              "venue_id": "venue_crepe_place",
              "title": "Soda Blonde",
              "event_time": "2026-10-02",
              "venue_name": "The Crepe Place",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "TICKETS",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20",
              "url": "https://thecrepeplace.com/shows-list/folkyeah-presents-soda-blonde-friday-october-2-7pm-20",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5681e2ed9e15",
              "venue_id": "venue_abbott_square",
              "title": "AFRO HILIFE",
              "event_time": "Friday, October 2, 2026 7:00 PM - 10:00 PM",
              "venue_name": "Abbott Square Market",
              "event_start": "2026-10-02T19:00:00",
              "event_date": "2026-10-02",
              "venue_address": "725 Front St, Santa Cruz, CA 95060",
              "description": "Tropical Fusion, Afro Funk, Soukous, HiLife, Afro Reggae, Afro Beat\n\nAfroHiLife is a band formed in Santa Cruz CA - The band performs music that will get you dancing ; whether it’s a slow Tropical ballad or a pumping Soukous the band’s hypno-rhythms will take you for a journey.",
              "event_types": [
                "live_music",
                "latin_world",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://www.abbottsquaremarket.com/events/afro-hilife-2-aewzr",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_abbott_square",
                  "source_name": "Abbott Square Market",
                  "fetched_at": "2026-08-22T12:39:51.694804Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_abbott_square|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bee8b54083a3",
              "venue_id": "venue_act_theater",
              "title": "Alfred Hitchcock's North by Northwest",
              "event_time": "2026-10-02",
              "venue_name": "ACT Theater",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "\"I am thrilled, excited and perhaps a little apprehensive to bring the iconic North by Northwest home to the US! I just hope that American audiences will love it as much as our British audiences did. What I am not apprehensive about is bringing its message; one of nations coming together in peace and friendship to make the world a better place. I think we can all raise a glass to that! I am also itching to return to A.C.T. and San Francisco, a piece of my heart will always remain in California and I cannot wait to return to your beautiful theatre, vivid audience and magic state.\" —Emma Rice",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-08-22T13:54:28.481304Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_act_theater|2026-10-02",
              "run_id": "run_8f5d72a961cd",
              "run_label": "Alfred Hitchcock's North by Northwest, Sep 22 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_4f395fe2ffec",
              "venue_id": "venue_thee_stork_club",
              "title": "Queer Club Classics w/ DJ Louie El Ser 10/2",
              "event_time": "October 02, 2026 9:00PM",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-10-02T21:00:00",
              "event_date": "2026-10-02",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "[REDACTED] Fest presented by No Time Gigs & Digital Regress. Uranium Club, Good Flying Birds, Container, Cube and more! 09/19/2026 4:00 PM at Thee Stork Club Add",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://wl.seetickets.us/event/queer-club-classics-w-dj-louie-el-ser-102/701273?afflky=TheeStorkClub",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-08-22T14:35:18.029489Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_23076853f197",
              "venue_id": "venue_crows_nest_sc",
              "title": "THE SWAG TONES",
              "event_time": "Friday October 2nd 08:00 PM",
              "venue_name": "The Crow's Nest",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "2218 East Cliff Dr, Santa Cruz, CA 95062",
              "description": "Friday October 2nd High energy funk and soul dance band Starts at 08:00 PM",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$7 cover",
              "url": "https://www.theswagtones.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crows_nest_sc",
                  "source_name": "The Crow's Nest",
                  "fetched_at": "2026-08-22T15:19:13.909618Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crows_nest_sc|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_894ffe8ca231",
              "venue_id": "venue_sc_beach_boardwalk",
              "title": "Fall Girl Scout Overnight",
              "event_time": "2026-10-02",
              "venue_name": "Santa Cruz Beach Boardwalk",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "400 Beach St, Santa Cruz, CA 95060",
              "description": "Daisy, Brownie, Junior, Cadette, and Senior Troops camp under the stars and enjoy Boardwalk fun at this epic overnight event!",
              "event_types": [
                "community"
              ],
              "price_info": "$99.95",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sc_beach_boardwalk",
                  "source_name": "Santa Cruz Beach Boardwalk",
                  "fetched_at": "2026-08-22T16:30:12.819028Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sc_beach_boardwalk|2026-10-02",
              "run_id": "run_da99b56bf87a",
              "run_label": "Fall Girl Scout Overnight, Oct 2 – Oct 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_43530d1a93d5",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Love Notes",
              "event_time": "2026-10-02",
              "venue_name": "San Jose CPA",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-10-02",
              "run_id": "run_1ea648ade196",
              "run_label": "Love Notes, Aug 22 – Oct 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_3a2506d32afd",
              "venue_id": "venue_park_hall_ben_lomond",
              "title": "The Addams Family",
              "event_time": "2026-10-02",
              "venue_name": "Park Hall",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "9400 Mill St, Ben Lomond, CA 95005",
              "description": "The Addams Family theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://mctshows.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_park_hall_ben_lomond",
                  "source_name": "Park Hall",
                  "fetched_at": "2026-08-22T19:38:45.882590Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_park_hall_ben_lomond|2026-10-02",
              "run_id": "run_8d42d89c5c45",
              "run_label": "The Addams Family, Sep 18 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d2003127616d",
              "venue_id": "venue_park_hall_ben_lomond",
              "title": "Rumors",
              "event_time": "2026-10-02T14:00:00",
              "venue_name": "Park Hall",
              "event_start": "2026-10-02T14:00:00",
              "event_date": "2026-10-02",
              "venue_address": "9400 Mill St, Ben Lomond, CA 95005",
              "description": "A comedy by Neil Simon, directed by Marnae Taylor. Charley, the deputy mayor of New York, and his wife Myra Brock, on the evening of their tenth wedding anniversary, had an elegant dinner party which goes histrically wrong. Four couples arrive expecting a night of sophistication—only to discover the host has had a terrible mishap and his wife is missing. Desperate to cover up the scandal, they spin wilder and wilder stories, turning confusion into chaos as rumors fly faster than champagne corks. With a niche fit, a whiplash, mitigated jealousy, a recurring back spasm, comedy ensues. Brimming with razor-sharp wit, slapstick mishaps, and Simon's trademark charm, Rumors is a laugh-out-loud comedy that proves the truth may be the funniest thing of all.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "",
              "url": "https://mctshows.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_park_hall_ben_lomond",
                  "source_name": "Park Hall",
                  "fetched_at": "2026-08-22T19:38:45.882590Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_park_hall_ben_lomond|2026-10-02",
              "run_id": "run_b17f8875ebd5",
              "run_label": "Rumors, Sep 18 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ec7a168f3783",
              "venue_id": "venue_tommy_ts",
              "title": "JJ WILLIAMSON",
              "event_time": "OCT 2nd, 3rd & 4th",
              "venue_name": "Tommy T's",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "5104 Hopyard Rd, Pleasanton, CA 94588",
              "description": "JJ WILLIAMSON\nOCT 2nd, 3rd & 4th\nTickets – Video",
              "event_types": [
                "comedy"
              ],
              "price_info": "Tickets",
              "url": "https://tommyts-com.seatengine.com/events/140613",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tommy_ts",
                  "source_name": "Tommy T's",
                  "fetched_at": "2026-08-22T21:57:38.329553Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tommy_ts|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e97f71a59121",
              "venue_id": "venue_sjz_break_room",
              "title": "SJZ Break Room Jazz Jam",
              "event_time": "2026-10-02T17:20:00",
              "venue_name": "SJZ Break Room",
              "event_start": "2026-10-02T17:20:00",
              "event_date": "2026-10-02",
              "venue_address": "38 S 1st St, San Jose, CA 95113",
              "description": "San Jose Jazz presents free live music with South First Friday. This month, following sets by the SJZ U19s and the Michael Webster Group, our all-ages jazz jam brings out some of the finest amateur players in the South Bay. Grab your instrument and sign up, or just drop in anytime to hear some great jazz.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Free Admission",
              "url": "https://sanjosejazz.org/events/sjz-break-room-jazz-jam/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sjz_break_room",
                  "source_name": "SJZ Break Room",
                  "fetched_at": "2026-08-24T10:42:21.575370Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_san_jose_jazz",
                  "source_name": "San Jose Jazz",
                  "fetched_at": "2026-08-26T11:00:46.920272Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sjz_break_room|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d7a84ab67370",
              "venue_id": "venue_the_sound_room",
              "title": "Maurice Tani Group",
              "event_time": "Friday, October 2, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-10-02T19:30:00",
              "event_date": "2026-10-02",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "A poet with a guitar and smokin’ hot band!! Maurice Tani is a songslinger working his own lane. Known for his wry-to-romantic writing, agile guitar work and expressive singing, Tani's style is a broad spectrum tincture of influences from jazz, blues, classic country and the Great American Songbook. This is storytelling. A sort of cinema for the blind, shot alternately in grainy black and white noir or vivid technicolor with a wide angle lens.\n\nThe lyrics are sheer poetry:\n\nI used to wonder who I am\nI don’t wonder anymore\nThe mirror shows a face\nThat I’ve never seen before\n\nI’ve hidden all my scars\nBurned away my fingerprints\nPlaying in the flames\nDestroying evidence\n\nThe band covers a lot of ground, from wistful ballads to hard driving honky-tonk rock, from personal meditations to satirical cultural observations, from electrified twang to down-home acoustic. Once in a while, they even find new shades of meaning in some cover you thought had been long since played out. This band is different. This band is special.\n\n“All in all, possibly the best indie ‘Americana’ band to come from the Bay Area . . . ever . . . period.” - Paul Olguin\n\nThe term Renaissance man could and should be applied to Maurice Tani. A certified jack of all trades in the San Francisco music scene for over forty years, Tani has extensive experience in the recording industry as singer, songwriter, guitarist, bassist, and producer. Recent alt-country/roots music releases with his band 77 El Deora, have garnered him a local following for both his records and live performances. Tani is right at home where the blues relaxes into Americana, and can sing jazz better than most who claim they do.\n\nTickets at Maurice Tani Group",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/maurice-tani-group-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-08-26T10:25:42.190144Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4944511f76ba",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Little Shop of Horrors",
              "event_time": "2026-10-02",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Book & Lyrics by Howard Ashman, Music by Alan Menken. Based on the film by Roger Corman, Screenplay by Charles Griffith. Directed by Ben Villegas Randle, Musical Direction by Jad Bernardo, Choreography by Leslie Waggoner",
              "event_types": [
                "theater",
                "live_music"
              ],
              "price_info": "",
              "url": "https://nctcsf.org/event/little-shop/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-08-26T11:06:39.262369Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-10-02",
              "run_id": "run_5315ef200ae4",
              "run_label": "Little Shop of Horrors, Sep 12 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_aabe3d197f2e",
              "venue_id": "venue_guild_theatre",
              "title": "John Oates & The Good Road Band",
              "event_time": "OCT\n02\n8:00 PM",
              "venue_name": "Guild Theatre",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "DOORS OPEN: 7:00 PM • SHOW: 8:00 PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.guildtheatre.com/shows/john-oates-03-oct",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-08-28T10:40:15.787828Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_guild_theatre|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e9a1d01bf909",
              "venue_id": "venue_dalas_nest",
              "title": "The Rough & Tumble",
              "event_time": "2026-10-02T18:00:00",
              "venue_name": "Dala's Nest",
              "event_start": "2026-10-02T18:00:00",
              "event_date": "2026-10-02",
              "venue_address": "Menlo Park, CA",
              "description": "Folk Americana duo The Rough & Tumble live in concert at Dala's Nest.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$25.00 donation",
              "url": "https://www.dalasnesthouseconcerts.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_dalas_nest",
                  "source_name": "Dala's Nest",
                  "fetched_at": "2026-08-28T10:45:07.985486Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_dalas_nest|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_15ce0fa85cb7",
              "venue_id": "venue_the_freight__salvage",
              "title": "Luciano",
              "event_time": "2026-10-02T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-10-02T19:00:00",
              "event_date": "2026-10-02",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Acclaimed Jamaican roots reggae singer Luciano brings his uplifting vocals and conscious, spirit-filled reggae sound to the Freight stage.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$44/$49\n(INCLUDES ALL FEES)",
              "url": "https://secure.thefreight.org/15935/15936",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4705a9e50ada",
              "venue_id": "venue_mitchell_park_center",
              "title": "Hannah Marks Group",
              "event_time": "October 2 2026 8 pm",
              "venue_name": "Mitchell Park",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "3700 Middlefield Rd, Palo Alto, CA 94303",
              "description": "Earthwise welcomes Hannah Marks Quartet. Vinnie Golia opens.More info/Tickets: https://www.eventbrite.com/e/earthwise-welcomes-hannah-marks-quartet-tickets-1996918054657",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Mitchell Park Community Center $20",
              "url": "https://markweiss86.com/2026/05/02/earthwise-upcoming-concerts-spring-summer-and-fall/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_earthwise_productions",
                  "source_name": "Earthwise Productions",
                  "fetched_at": "2026-08-28T12:49:57.911864Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-31T10:04:42.136151Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mitchell_park_center|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_1007f49705c0",
              "venue_id": "venue_sfjazz_lab",
              "title": "CYRILLE AIMÉE",
              "event_time": "2026-10-02 7:00 PM",
              "venue_name": "SFJAZZ Lab",
              "event_start": "2026-10-02T19:00:00",
              "event_date": "2026-10-02",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Winner of the Sarah Vaughan International Vocal Competition, Cyrille Aimée truly has jazz in her blood. Raised by a French father and Dominican mother in the northern French town of Samois-sur-Seine – the last home of Roma jazz giant Django Reinhardt – Aimée found inspiration in the music of Reinhardt and the freedom of the gypsy lifestyle, singing on street corners during travels across Europe. Winning the Montreux Jazz Festival Vocal Competition in 2007 helped finance her self-produced debut album, and finishing as a finalist in the 2012 Thelonious Monk International Jazz Vocal Competition elevated Aimée’s visibility to a global level as a major new figure in jazz. A performer possessed of an infectious joy, lightness of touch and deep feeling for the lyric, Aimée released her breakout 2014 hit on Mack Avenue, It’s a Good Day , mixing Roma jazz inspirations, bossa nova, flamenco and the Great American Songbook. A relocation to Costa Rica and new motherhood have instilled a fresh inspiration in Aimée, and for these performances, she performs a cross-section of her wide-ranging repertoire including music from her latest Whirlwind release, à Fleur de Peau and live session, Cyrille Aimée: 4.24 .",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/cyrille-aimee/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_lab|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_6f7795d4c252",
              "venue_id": "venue_sfjazz_miner",
              "title": "JAHARI STAMPLEY FAMILY SOUL TRIO",
              "event_time": "2026-10-02 7:30 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-10-02T19:30:00",
              "event_date": "2026-10-02",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Members Only\n\nLivestream Only",
              "event_types": [
                "livestream",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/hiromi/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_e8ebb1204e59",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-10-02",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-10-02",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d5daa5eee561",
              "venue_id": "venue_odc_theater",
              "title": "Find Peace in Tough Times",
              "event_time": "10/2 7:00PM",
              "venue_name": "ODC Theater",
              "event_start": "2026-10-02T19:00:00",
              "event_date": "2026-10-02",
              "venue_address": "3153 17th St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://odcsf.my.salesforce-sites.com/ticket/#/events/a0SVM0000049IZh2AM",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_odc_theater",
                  "source_name": "ODC Theater",
                  "fetched_at": "2026-08-28T16:07:20.992529Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_odc_theater|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4f602da1bbb7",
              "venue_id": "venue_the_pear_theatre",
              "title": "Private Lives",
              "event_time": "2026-10-02",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "In this sparkling comedy of manners, two former lovers find themselves honeymooning with new spouses in adjoining rooms—only to discover that their passion for each other hasn't dimmed.",
              "event_types": [
                "theater"
              ],
              "price_info": "$46.00 - $48.00",
              "url": "https://www.thepear.org/whats-playing-now",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-08-28T18:26:07.122240Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-10-02",
              "run_id": "run_d1a58de7893a",
              "run_label": "Private Lives, Sep 25 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_638f6524a4f4",
              "venue_id": "venue_davies_symphony_hall",
              "title": "A Concert for MTT",
              "event_time": "Friday, Oct 2, 2026 | 7:30 pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-10-02T19:30:00",
              "event_date": "2026-10-02",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "Overview A beloved San Francisco icon, Michael Tilson Thomas redefined the San Francisco Symphony during his extraordinary 25-year tenure as Music Director. In a one-of-a-kind event, MTT’s longtime friends and artistic collaborators—including Yuja Wang, Jean-Yves Thibaudet, Sasha Cooke, Audra McDonald, Edwin Outwater, Teddy Abrams, and other distinguished guests—join the San Francisco Symphony and Chorus in a concert celebrating his life and legacy.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://www.sfsymphony.org/Buy-Tickets/2026-27/A-Concert-for-MTT",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-08-28T19:38:14.129031Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_720d8062834c",
              "venue_id": "venue_audio",
              "title": "Madota",
              "event_time": "2026-10-02T21:30:00",
              "venue_name": "Audio",
              "event_start": "2026-10-02T21:30:00",
              "event_date": "2026-10-02",
              "venue_address": "316 11th St, San Francisco, CA 94103",
              "description": "Nomad's Land × Audio present Madota's SF debut with support from Galexy and Empress.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://audiosf.com/event/madota-10-02-26/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_audio",
                  "source_name": "Audio",
                  "fetched_at": "2026-08-28T19:46:29.566846Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_audio|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_5576653380a5",
              "venue_id": "venue_cry_baby",
              "title": "Life of the Party",
              "event_time": "2026-10-02T07:00:00.000Z",
              "venue_name": "Cry Baby",
              "event_start": "2026-10-02T07:00:00",
              "event_date": "2026-10-02",
              "venue_address": "1928 Telegraph Ave, Oakland, CA 94612",
              "description": "Crybaby Presents LIFE OF THE PARTY - Oakland's Top First Friday Party! Fri Oct 2, 2026 10:00 PM 21+ Buy Tickets Additional Info Hip-Hop | Turnt Up Rap | Club Bangers | Hyphy | and more First Fridays and LIFE OF THE PARTY go hand and hand, lit vibes, good drinks and vibes! The life of the party is where you want to be at, on Oakland First Fridays! Turnt sets, curated slaps by local DJs, and a hype dance floor! On the Decks: TBA Free entry for first 25 with RSVP . Ticket prices increase at doors. Don't sleep! Happy hour drink specials for the first hour :) 21+ | Doors @ 10pm + Google Calendar Related Events Buy Tickets Sat Aug 8 ¡DESMADRE! w/ DJ Sandio + Ethan Dreams + Earth & PATIO TAKEOVER by Bussdown Collective Buy Tickets Fri Sep 4 LIFE OF THE PARTY - Oakland's Top First Friday Party! Buy Tickets Sun Sep 20 The Market Arts Festival - 5 Year Anniversary! w/ DJ Sandio + DJ Rell + JC-Caution + J-Blenz",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://crybaby.live/tm-event/life-of-the-party-oaklands-top-first-friday-party-5/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cry_baby",
                  "source_name": "Cry Baby",
                  "fetched_at": "2026-08-28T19:56:15.638282Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cry_baby|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e38dc669fe94",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "Bassem Youssef: The Belly of the Beast Tour",
              "event_time": "2026-10-02T19:30:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-10-02T19:30:00",
              "event_date": "2026-10-02",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "Live comedy/performance show by Bassem Youssef.",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "https://www.palaceoffinearts.org/event/bassem-youssef-the-belly-of-the-beast-tour/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-08-28T21:32:02.715078Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_33c827941ba3",
              "venue_id": "venue_the_monkey_house",
              "title": "larisa",
              "event_time": "10/02/2026",
              "venue_name": "The Monkey House",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "1638 University Avenue, Berkeley, CA",
              "description": "Songwriter and vocalist Larisa performs a live set featuring expressive melodies and personal lyrics. The concert delivers an intimate acoustic experience at The Monkey House.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monkey_house",
                  "source_name": "The Monkey House",
                  "fetched_at": "2026-08-28T21:37:06.591184Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monkey_house|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_07494b0a3d71",
              "venue_id": "venue_club_fox",
              "title": "Shred Is Dead",
              "event_time": "Friday October 2nd Doors 7PM / Show 7:30PM",
              "venue_name": "Club Fox",
              "event_start": "2026-10-02T19:30:00",
              "event_date": "2026-10-02",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Shred is Dead featuring Marcus Rezak, Scott Guberman, Anna Elva & Murph Murphy. Ages 21+, doors open at 7:00 PM.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "From $24.13",
              "url": "https://www.eventbrite.com/e/shred-is-dead-tickets-1992393770401?aff=oddtdtcreator&keep_tld=true",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-08-28T22:45:26.741794Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_71126e879fd5",
              "venue_id": "venue_the_ritz",
              "title": "Sploinky Rave",
              "event_time": "2026-10-02T21:00:28-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-10-02T21:00:28",
              "event_date": "2026-10-02",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "Slacker University Presents\nSPLOINKY RAVE\n\n \n\nFRIDAY OCTOBER 2, 2026",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$15 GA",
              "url": "https://www.ticketweb.com/event/sploinky-rave-the-ritz-tickets/14995233",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-08-28T22:59:09.006281Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_84222c4ddc07",
              "venue_id": "venue_rhythmix",
              "title": "The Locals: Opening Reception",
              "event_time": "2026-10-02T18:00:00",
              "venue_name": "Rhythmix",
              "event_start": "2026-10-02T18:00:00",
              "event_date": "2026-10-02",
              "venue_address": "2513 Blanding Ave, Alameda, CA 94501",
              "description": "Opening reception for \"The Locals\" exhibit at K Gallery. Exhibit dates listed as September 11 to October 25, 2026.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://www.rhythmix.org/upcoming-exhibits/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rhythmix",
                  "source_name": "Rhythmix",
                  "fetched_at": "2026-08-28T23:14:01.025318Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rhythmix|2026-10-02",
              "run_id": "run_566a8f02098a",
              "run_label": "The Locals: Opening Reception, Sep 11 – Oct 25",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_4319c9f8afd4",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-10-02",
              "venue_name": "De Young",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-10-02",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_30254693aadf",
              "venue_id": "venue_punch_line",
              "title": "LESLIE LIAO",
              "event_time": "Oct 2, 2026 7:30 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-10-02T19:30:00",
              "event_date": "2026-10-02",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Stand-up comedian, writer, and actress Leslie Liao shares her relatable, matter-of-fact humor about navigating life as a single Chinese-American woman in Los Angeles. She has been featured as a Variety \"Comic to Watch\" and recently released her debut special, Silky Smooth.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/leslie-liao-san-francisco-california-10-02-2026/event/1C0064A4DF2799FA",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8d263f7c76ae",
              "venue_id": "venue_punch_line",
              "title": "LESLIE LIAO",
              "event_time": "Oct 2, 2026 9:45 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-10-02T21:45:00",
              "event_date": "2026-10-02",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Stand-up comedian, writer, and actress Leslie Liao shares her relatable, matter-of-fact humor about navigating life as a single Chinese-American woman in Los Angeles. She has been featured as a Variety \"Comic to Watch\" and recently released her debut special, Silky Smooth.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/leslie-liao-san-francisco-california-10-02-2026/event/1C0064A4DF2299E2",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2ae47fad2557",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "HEATHER MCDONALD",
              "event_time": "Fri Oct 2, 2026 7:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-10-02T19:00:00",
              "event_date": "2026-10-02",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Comedian and Juicy Scoop podcast host Heather McDonald brings her hilarious pop culture commentary and stand-up to Cobb's Comedy Club.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/heather-mcdonald-san-francisco-california-10-02-2026/event/1C0064F513AB3761",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_72e0547a2156",
              "venue_id": "venue_shapeshifters",
              "title": "Gravitational Lensing: Feminist Film Dialogues",
              "event_time": "2026-10-02",
              "venue_name": "Shapeshifters",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "Program 17: Family Portraits/Relational Exercises includes a spectrum of diaristic films—from uncanny documentary to autobiographical re-enactments—that manifest different ways filmmakers choose to represent their relationships to family and, more broadly, to home (both literal and conceptual) through cinematic language.",
              "event_types": [
                "film"
              ],
              "price_info": "San Francisco Cinematheque",
              "url": "https://sfcinematheque.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shapeshifters",
                  "source_name": "Shapeshifters",
                  "fetched_at": "2026-08-30T10:04:33.112973Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-10-02",
              "run_id": "run_8afbca984fe1",
              "run_label": "Gravitational Lensing: Feminist Film Dialogues, Sep 9 – Nov 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9cc8aff6e00f",
              "venue_id": "venue_sc_vets_hall",
              "title": "MISTAH FAB & PHILTHY RICH LIVE IN SANTA CRUZ",
              "event_time": "2026-10-02T19:00:00",
              "venue_name": "Santa Cruz Vets Hall",
              "event_start": "2026-10-02T19:00:00",
              "event_date": "2026-10-02",
              "venue_address": "846 Front St, Santa Cruz, CA 95060",
              "description": "Bay Area hip-hop icons Mistah F.A.B. and Philthy Rich perform live at the Veterans Memorial Building.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "From $18.81",
              "url": "https://www.eventbrite.com/e/mistah-fab-philthy-rich-live-in-santa-cruz-tickets-1190128218",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sc_vets_hall",
                  "source_name": "Santa Cruz Vets Hall",
                  "fetched_at": "2026-08-30T11:12:52.047725Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_sc_vets_hall|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_e3fd371f4d3c",
              "venue_id": "venue_the_independent",
              "title": "BELLA KAY",
              "event_time": "10.2.2026 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-10-02T21:00:00",
              "event_date": "2026-10-02",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List Bella Kay Hailey Picardi Fri, Oct 2 Doors: 8:30 pm | Show: 9:00 pm All Ages Please note - there is a delivery delay set for 2 weeks prior to show. Sold Out! Share + Google Calendar Related Events G Flip Aug 20 Sold Out! Niina Soleil Aug 21 Buy Tickets Artists Bella Kay Bella Kay has quickly emerged as one of the most emotionally resonant new stars in pop. Bella writes songs that come alive with intimacy and ache, exploring heartache, alienation, and survival with refreshing honesty and messiness. Her music is bare-faced and gutsy, delivered with a powerful, timeless voice atop a sound that blends fuzzy alternative-pop with the tender guitar hooks. On her debut album, My Reckless Abandon, the 20-year-old songwriter goes on a journey of self-acceptance and introspection amidst messy highs and lows. Across 13 tracks, she navigates her relationship to herself and others with the characteristic wit and candor established on previously released singles like “Promise?” and the smash hit “iloveitiloveitiloveit,” both included here. Executive produced by Idarose (Becky G, Suki Waterhouse, Joji) and recorded between New York and Los Angeles throughout 2026, My Reckless Abandon is a leap forward in production and shows how Bella is swiftly growing as a songwriter. Desire is a recurring theme, and Bella is often torn between body and brain. Her lust is barely contained on the opening rocker “Blur,” and she’s matter-of-fact on “swu,” beginning the song with the declaration, “I want to have sex with you.” But at the same time, she confides that intimacy can lead to terrifyingly vulnerable possibilities: “What if we do/And you decide/That you don’t want me?” Even if she has moved through life and love with moments of Reckless Abandon, Bella handles several subjects with the utmost care. “Sleep For Dinner” is a ballad that discloses patterns of restrictive eating and body dysmorphia and confronts the intrusive and obsessive mental imprisonment that can accompany",
              "event_types": [
                "live_music"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://www.theindependentsf.com/tm-event/bella-kay/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-08-31T10:40:49.218190Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fc852709379d",
              "venue_id": "venue_yoshis",
              "title": "THE CURTIS FAMILY C-NOTES",
              "event_time": "October 2, 2026 - 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-10-02T19:30:00",
              "event_date": "2026-10-02",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "FUNK, SOUL, AND R&B, MIXED WITH ELEMENTS OF JAZZ AND GOSPEL HARMONY",
              "event_types": [
                "live_music",
                "rnb_soul_funk",
                "jazz"
              ],
              "price_info": "$35 - $75",
              "url": "https://yoshis.com/events/buy-tickets/the-curtis-family-c-notes-1/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b6407c506984",
              "venue_id": "venue_presidio_theater",
              "title": "Mountains of the Moon",
              "event_time": "2026-10-02",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-10-02T19:30:00",
              "event_date": "2026-10-02",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "",
              "event_types": [
                "theater"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.presidiotheatre.org/show-details/mountains-of-the-moon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-08-31T13:00:36.584647Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-10-02",
              "run_id": "run_64efd1a3bb9f",
              "run_label": "Mountains of the Moon, Oct 1 – Oct 2",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2d2261ee4203",
              "venue_id": "venue_yerba_buena_center",
              "title": "GaHee Park: Behind the Curtain",
              "event_time": "2026-10-02",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Park invites us to peek behind the curtain, as she lays claim to her own power as a surrealist painter working across fantasy and intimacy.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/gahee-park-behind-the-curtain/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-02",
              "run_id": "run_5353f80886f6",
              "run_label": "GaHee Park: Behind the Curtain, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3c8c3b520b78",
              "venue_id": "venue_yerba_buena_center",
              "title": "Rael San Fratello: Prototypes",
              "event_time": "2026-10-02",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The most comprehensive presentation to date of the renowned Bay Area design studio Rael San Fratello.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/rael-san-fratello-prototypes-and-provocations/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-02",
              "run_id": "run_cd09bf07fb68",
              "run_label": "Rael San Fratello: Prototypes, Sep 25 – Jan 31",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e75ef51c7b21",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dread Scott: The Body Politic",
              "event_time": "2026-10-02",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The exhibition reflects Dread Scott’s longtime commitment to art that confronts political issues and interrogates American patriotism.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dread-scott-the-body-politic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-02",
              "run_id": "run_995f7fbf41ba",
              "run_label": "Dread Scott: The Body Politic, Sep 25 – Jan 31",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_93e5dfd6af2c",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dream",
              "event_time": "2026-10-02",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public art installation commissioned by YBCA and co-sponsored by San Francisco Public Works.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dream-public-art/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-02",
              "run_id": "run_b6a5ba4e8809",
              "run_label": "Dream, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7f1cddfe0031",
              "venue_id": "venue_yerba_buena_center",
              "title": "SoMa Mahal Kita",
              "event_time": "2026-10-02",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A message of love for the SoMa neighborhood and community, inspired by weaving practices in the Phillipines and the colors of the Filipino flag.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/soma-mahal-kita-soma-i-love-you-ciriaco-sayoc/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-02",
              "run_id": "run_0c5141fff335",
              "run_label": "SoMa Mahal Kita, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1b4cc997a547",
              "venue_id": "venue_yerba_buena_center",
              "title": "We Rooted in Flight",
              "event_time": "2026-10-02",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public artwork inviting passerbyers to join in the journey of collective flight",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/we-fly-for-a-liberated-we-we-rooted-in-flight/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-02",
              "run_id": "run_1d34139aedcf",
              "run_label": "We Rooted in Flight, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_98e5e02298af",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-10-02T14:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-10-02T14:00:00",
              "event_date": "2026-10-02",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-10-02",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_6ccfe60b2f08",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-10-02T18:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-10-02T18:00:00",
              "event_date": "2026-10-02",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-10-02",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 2,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_375868ac703c",
              "venue_id": "venue_biscuits__blues",
              "title": "Tia Carroll",
              "event_time": "2026-10-02T21:00:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-10-02T21:00:00",
              "event_date": "2026-10-02",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-08-31T16:25:33.031111Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_fc4f19964e19",
              "venue_id": "venue_great_star_theater",
              "title": "Kung Fu Panda",
              "event_time": "October 2, 2026",
              "venue_name": "Great Star Theater",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "636 Jackson Street, San Francisco, CA 94133",
              "description": "Kick off the Halloween season with a rare screening of Joan Crawford starring in Strait-Jacket (1964) hosted by DJ Dank and Valentine. There will also be drag performances by Katya Smirnoff-Skye, Thee Pristine Condition, and Lucy Borden, a costume contest, Joan trivia, Prizes, and a Joan To The Bone video tribute. Sponsored by Sunset Connect.",
              "event_types": [
                "film",
                "dance",
                "dj_party"
              ],
              "price_info": "RSVP",
              "url": "https://tickets.greatstartheater.org/events/greatstartheater/2372338",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_great_star_theater",
                  "source_name": "Great Star Theater",
                  "fetched_at": "2026-08-31T18:08:20.593452Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_star_theater|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c13c821952ca",
              "venue_id": "venue_tupelo",
              "title": "DJ Kevey Kev & Black Diamond",
              "event_time": "Friday October 2nd 9:00PM - 1:30AM",
              "venue_name": "Tupelo",
              "event_start": "2026-10-02T21:00:00",
              "event_date": "2026-10-02",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "Seriously - These guys (and gals) are one of the tightest local bands we've ever had at Tupelo. You're gonna hear bad ass grooves, sick vocals and instrumentation and an extremely versatile and well curated catalogue of tunes. Get here early - it's gonna fill up!",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9c4486dc29ee",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Ginny Hogan",
              "event_time": "2026-10-02 2026-10-03T19:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show featuring Ginny Hogan with Marcus Howard and Albert Lin.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Price not found in the specific listing.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/135108",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-08-31T18:20:03.865483Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-10-02",
              "run_id": "run_6dace2035fc5",
              "run_label": "Ginny Hogan, Oct 2 – Oct 3",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_e791c901646a",
              "venue_id": "venue_city_lights_theater",
              "title": "Eureka Day",
              "event_time": "2026-10-02T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-10-02T19:30:00",
              "event_date": "2026-10-02",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "Sharp comedy by Jonathan Spector about a progressive Berkeley private school whose board is thrown into conflict during a mumps outbreak. Runs September 24 through October 18, 2026.",
              "event_types": [
                "theater"
              ],
              "price_info": "Single tickets go on sale June 1",
              "url": "https://cltc.org/event/eureka-day/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-09-02T10:09:11.201902Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-10-02",
              "run_id": "run_4a0cceaa9027",
              "run_label": "Eureka Day, Sep 24 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_581049fb9011",
              "venue_id": "venue_f8",
              "title": "NO BIAS x TREKKIE TRAX",
              "event_time": "2026-10-02T21:00:00",
              "venue_name": "F8",
              "event_start": "2026-10-02T21:00:00",
              "event_date": "2026-10-02",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "NO BIAS and Japanese label TREKKIE TRAX join forces featuring Bored Lord, RITCHRD, and Discnogirl.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10 - $20",
              "url": "https://ra.co/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-09-02T10:39:00.610887Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_f8|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_4053a8f358c8",
              "venue_id": "venue_924_gilman",
              "title": "Counterparts, Drought, Brahm",
              "event_time": "Friday, October 2, 2026 6:00pm-8:30pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-10-02T18:00:00",
              "event_date": "2026-10-02",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "A heavy hardcore and melodic punk gig at 924 Gilman featuring Counterparts, Drought, and Brahm.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$$22/$25",
              "url": "http://maps.google.com/?q=$$22/$25",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-09-02T11:13:59.237531Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_924_gilman|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7eca2c5ea780",
              "venue_id": "venue_the_midway",
              "title": "Inquisitive",
              "event_time": "10/02/2026 9:00 PM",
              "venue_name": "The Midway",
              "event_start": "2026-10-02T21:00:00",
              "event_date": "2026-10-02",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "RIDE ∙ INDOORS",
              "event_types": [
                "dj_party"
              ],
              "price_info": "LAST CHANCE",
              "url": "https://www.tixr.com/groups/midwaysf/events/inquisitive-sf-debut-204939",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-09-02T11:30:22.920988Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fe153ca5289b",
              "venue_id": "venue_the_midway",
              "title": "Taiwan Golden Melody Night",
              "event_time": "10/02/2026 9:00 PM",
              "venue_name": "The Midway",
              "event_start": "2026-10-02T21:00:00",
              "event_date": "2026-10-02",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "GODS & MONSTERS ∙ INDOORS",
              "event_types": [
                "live_music"
              ],
              "price_info": "SOLD OUT",
              "url": "https://www.tixr.com/groups/midwaysf/events/taiwan-golden-melody-night-196850",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-09-02T11:30:22.920988Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_22a2b1f99038",
              "venue_id": "venue_discretion_brewing",
              "title": "1st Friday W/ Local Honey",
              "event_time": "2026-10-02T17:30:00",
              "venue_name": "Discretion Brewing",
              "event_start": "2026-10-02T17:30:00",
              "event_date": "2026-10-02",
              "venue_address": "2703 41st Ave Ste A, Soquel, CA 95073",
              "description": "Live Music 5:30-7:30pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_discretion_brewing",
                  "source_name": "Discretion Brewing",
                  "fetched_at": "2026-09-02T11:35:03.120781Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_discretion_brewing|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1242e2c9eb4b",
              "venue_id": "venue_madrone_art_bar",
              "title": "Max Cowan",
              "event_time": "October 2 @ 9:30 pm - 1:00 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-10-02T21:30:00",
              "event_date": "2026-10-02",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Max Cowan takes the piano from the East Bay to New Orleans, and through every funky congregation in between. As co-leader of funk powerhouse Atta Kid, keyboardist for funk pioneer, Zigaboo Modeliste, and longtime collaborator with Otis McDonald, Max's repertoire tours the B-sides of your soul. 7-9PM",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$10 cover",
              "url": "https://madroneartbar.com/event/max-cowan-20-2025-12-05/2026-10-02/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9ec0e8b98a88",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "The Brad Leali Jazz Quartet ft. Carla Helmbrecht",
              "event_time": "Friday, October 2, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-10-02T19:00:00",
              "event_date": "2026-10-02",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Friday, October 2, 2026 @ 7pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/the-brad-leali-jazz-quartet-ft-carla-helmbrecht-7/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_509b1bd96a00",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Atta Kid",
              "event_time": "Friday, October 2, 2026 @ 9pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-10-02T21:00:00",
              "event_date": "2026-10-02",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Friday, October 2, 2026 @ 9pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/atta-kid-3/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_99e2a090e840",
              "venue_id": "venue_fox_theatre_oak",
              "title": "HASAN HATES RONNY | RONNY HATES HASAN",
              "event_time": "October 2, 2026 9:30pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-10-02T21:30:00",
              "event_date": "2026-10-02",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Late Show Added by Popular Demand! LIVE SPECIAL TAPING - ft. Hasan Minhaj and Ronny Chieng",
              "event_types": [
                "comedy"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thefoxoakland.com/events/hasan-ronny-261002-late",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-09-03T11:12:55.502637Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_35b5c7ed8f31",
              "venue_id": "venue_brick_and_mortar",
              "title": "RAYNES + DAVID WIMBISH & THE COLLECTION",
              "event_time": "10.2 Show: 8:30PM",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-10-02T20:30:00",
              "event_date": "2026-10-02",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Event Details Brick & Mortar Music Hall Presents Raynes + David Wimbish & The Collection with David Wimbish & The Collection October 2, 2026 8:30 pm PDT (Doors: 7:30 pm ) Brick and Mortar Music Hall , 1710 Mission Street , San Francisco, CA ( map ) $29.64 Buy Tickets + Google Calendar Raynes British-American trio Raynes formed whenMat CharleyandJoe Berger, both born and raised inNorth Dakota, came across a video of UK nativeMark Raceon Instagram and fell in love—first withhis face, then with his voice. After a fewmessages and phone calls, Mark was on a plane to the USto start a band (a few months later, he had the flight number tattooed on his arm).Since then, Raynes has signed withSony Music Publishingand released six singles andfourEPs,drawing hundreds ofthousands of monthly listeners and tens of millions of streams and earningpress in Billboard and People. They’ve performedat BottleRock Festival andin clubs, concert halls,and amphitheaters across the US and the UK, developing a reputation as a high-energy live act.In 2025, Raynes’rendition of“I Want You to Want Me”was featured in an episode of Love Is Blind onNetflix.Known for their intricate vocal harmonies and unique instrumentation as well as their poetic lyrics,Raynes has yet to come up witha good answer as to what genre their music falls under. With allthree members coming from different musical backgrounds, the boys combine their diverseinfluences to form a group that draws inspiration from around the globe, incorporating elements offolk, rock, and chamber pop with Celtic and world music to create a wholly original—and difficult tocategorize—sound. David Wimbish & The Collection David Wimbish & The CollectionHeavy LoveAlbumBioDavid Wimbish wasn’t sure he had it in him to make another record. In the span of ayear, the folk-pop/rock singer, songwriter, and multi-instrumentalist went through abreakup, moved from Saxapahawto Asheville, entered a new relationship and becamea father, all while Hurricane Helene de",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$29.64",
              "url": "https://www.brickandmortarmusic.com/tm-event/raynes-and-david-wimbish-the-collection/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-09-03T11:13:51.689688Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_705dd5718f83",
              "venue_id": "venue_stookeys_blue_room",
              "title": "Wyatt Button Trio",
              "event_time": "Fri, Oct 02 at 8-10:30pm",
              "venue_name": "Stookey's Blue Room",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "1523 Sutter St, San Francisco, CA 94109",
              "description": "Jazz Beyond the Expected\nWyatt Button (piano/voice), Jaycie Grady (Drums) Theo Stathopulos (Bass)\n\n8-10:30pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.stookeysblueroom.com/event-details/wyatt-button-trio",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stookeys_blue_room",
                  "source_name": "Stookey's Blue Room",
                  "fetched_at": "2026-09-03T12:18:49.462512Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stookeys_blue_room|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f4c541d655ee",
              "venue_id": "venue_pacific_film_archive",
              "title": "Wet Sand",
              "event_time": "Oct 02, 2026 7 PM",
              "venue_name": "Pacific Film Archive",
              "event_start": "2026-10-02T19:00:00",
              "event_date": "2026-10-02",
              "venue_address": "2155 Center St, Berkeley, CA 94720",
              "description": "“Set against the backdrop of church-sanctioned, far-right political protests attacking LGBTQ anti-discrimination laws, director/cowriter [Elene] Naveriani works steadfastly to break the cycle through a collective reckoning that simultaneously destroys and creates” (SFFILM).",
              "event_types": [
                "film"
              ],
              "price_info": "Get Tickets",
              "url": "https://bampfa.org/event/wet-sand",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_pacific_film_archive",
                  "source_name": "Pacific Film Archive",
                  "fetched_at": "2026-09-03T12:22:05.484170Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_pacific_film_archive|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ca08d0ec3685",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-02",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-02",
              "event_date": "2026-10-02",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "San Francisco Playhouse. A beloved puppet takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "Tickets On Sale",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-09-04T10:15:07.852694Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-02",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_faa2eef28a65",
              "venue_id": "venue_cafe_du_nord",
              "title": "Tyler Ballgame",
              "event_time": "10/2/2026 8:00 pm",
              "venue_name": "Cafe Du Nord",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Live Nation & Hardly Strictly Out of the Park: Tyler Ballgame with DUG Fri, Oct 2 Doors: 7:00 pm | Show: 8:00 pm Tickets: $30.36 Buy Tickets 21 and up Tyler Ballgame was born from the concept of radical presence in expression—the idea that each live performance is an opportunity to transcend the ordinary digital world, and surrender to the magic of a truly human experience. With a vibrant blend of alternative indie pop, Tyler's sound evokes a sense of nostalgia, joy, and classic song-craft. Now, he's gearing up to release his debut full-length album, “For The First Time, Again,” produced by longtime collaborators Jonathan Rado and Ryan Pollie. Rounded in this ethos of presence, Tyler's music is built on strong melodic hooks and draws subtle inspiration from the classic songwriting of the '60s and '70s. - $2 per ticket bought online will be supporting Sweet Relief - Cafe Du Nord's Preferred Viewing Available, General Admission Not Included For any event that is listed as 18 or 21 and over, ANY ticket holder unable to present valid identification indicating that they are of age will not be admitted to this event, and will not be eligible for a refund. Any event listed as All Ages, means 6 years of age or older. ALL tickets are standing room only unless otherwise specified. If you need special accommodations, contact info@cafedunord.com. Support acts are subject to change without refund. Professional Cameras are not allowed without prior approval. Professional Camera defined as detachable lens or of professional grade as determined by the venue staff. When in doubt, just email us ahead of the show! We might be able to get you a Photo Pass depending on Artist’s approval. Artists Tyler Ballgame Video Tyler Ballgame was born from the concept of radical presence in expression—the idea that each live performance is an opportunity to transcend the ordinary digital world, and surrender to the magic of a truly human experience. With a vibrant blend of alternative indie pop, Ty",
              "event_types": [
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://cafedunord.com/tm-event/tyler-ballgame/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cafe_du_nord_and_swedish_american_hall",
                  "source_name": "Cafe Du Nord and Swedish American Hall",
                  "fetched_at": "2026-09-04T10:21:43.132381Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cafe_du_nord|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_0cee015950c0",
              "venue_id": "venue_swedish_american",
              "title": "Duff Goldman",
              "event_time": "10/2/2026 9:00 pm",
              "venue_name": "Swedish American Hall",
              "event_start": "2026-10-02T21:00:00",
              "event_date": "2026-10-02",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "Live Nation Presents: Duff Goldman Presents: The Tao of Duff Fri, Oct 2 Doors: 8:00 pm | Show: 9:00 pm Tickets: $39.63 - $105.55 Buy Tickets 21 and up Duff Goldman takes audiences on a wild, flour-dusted ride – from his great-grandmother outrunning Cossacks to his own adventures in fast-food joint, fine-dining kitchens, metal bands, Food Network, and the iconic Charm City Cakes. Along the way, he’ll stretch paper-thin phyllo, tell big stories, deliver even bigger laughs, and perhaps hand out a bit of apple strudel. It’s part history lesson, park baking demonstration, part stand-up comedy – and entirely Duff. Come for the pastry; stay for the stories. VIP: 1 General Admission ticket Early entry (1hr before GA doors) Pre-show VIP Experience with Duff Goldman show is first come first served open seating For any event that is listed as 18 or 21 and over, ANY ticket holder unable to present valid identification indicating that they are of age will not be admitted to this event, and will not be eligible for a refund. Any event listed as All Ages, means 6 years of age or older. ALL tickets are standing room only unless otherwise specified. If you need special accommodations, contact info@cafedunord.com. Support acts are subject to change without refund. Professional Cameras are not allowed without prior approval. Professional Camera defined as detachable lens or of professional grade as determined by the venue staff. When in doubt, just email us ahead of the show! We might be able to get you a Photo Pass depending on Artist’s approval. Artists Duff Goldman Duff Goldman is a classically trained chef, best-selling author and artist known for his dazzling, creative approach to food and desserts. He believes in the power of inner creativity and is on a mission to spread fun and joy through the simple science of baking. Duff first rose to fame on the hit Food Network show Ace of Cakes, as he welcomed viewers into his innovative cake shop, Charm City Cakes, where he and his team",
              "event_types": [
                "workshop"
              ],
              "price_info": "Buy Tickets",
              "url": "https://cafedunord.com/tm-event/duff-goldman-presents-the-tao-of-duff/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_cafe_du_nord_and_swedish_american_hall",
                  "source_name": "Cafe Du Nord and Swedish American Hall",
                  "fetched_at": "2026-09-04T10:21:43.132381Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_swedish_american|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_ee5bf90a63c9",
              "venue_id": "venue_henflings",
              "title": "John Rybak + Friends",
              "event_time": "2026-10-02T20:00:00",
              "venue_name": "Henfling's Tavern",
              "event_start": "2026-10-02T20:00:00",
              "event_date": "2026-10-02",
              "venue_address": "9450 Highway 9, Ben Lomond, CA 95005",
              "description": "Live acoustic blues, rock, and groove performance by John Rybak + Friends at Henfling's Tavern.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Free",
              "url": "https://www.jambase.com/show/john-rybak-friends-henflings-tavern-20261002",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_henflings",
                  "source_name": "Henfling's Tavern",
                  "fetched_at": "2026-09-04T10:41:15.215331Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_henflings|2026-10-02",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            }
          ]
        },
        "2026-10-03": {
          "date": "2026-10-03",
          "updated_at": "2026-09-04T10:30:58.888554Z",
          "events": [
            {
              "event_id": "evt_18aa3beae020",
              "venue_id": "venue_4_star_theater",
              "title": "LIVE MUSIC: The Sleeves",
              "event_time": "Oct 3, 2026 8:00 PM – 11:00 PM",
              "venue_name": "4 Star Theater",
              "event_start": "2026-10-03T20:00:00",
              "event_date": "2026-10-03",
              "venue_address": "2200 Clement St, San Francisco, CA 94121",
              "description": "Fred has performed works by and sometimes alongside composers John Luther Adams, Gavin Bryars, Sylvie Courvoisier, Alvin Curran, George Lewis, Annea Lockwood, René Lussier, Jose Maceda, Meredith Monk, Pauline Oliveros, Terry Riley, and Christian Wolff; improvised with Lotte Anker, Derek Bailey, Han Bennink, Peter Brötzmann, Lol Coxhill, Janet Feder, gabby fluke-mogul, Tim Hodgkinson, Joëlle Léandre, Phil Minton, Ikue Mori, Butch Morris, Bob Ostertag, Evan Parker, Zeena Parkins, Paula Sanchez, Susana Santos Silva and Camel Zekri, to name a few; collaborated with classical virtuosi Evelyn Glennie, Katia Labèque, Viktoria Mullova, and Werner Bärtschi; and—as session musician—recorded on albums by, for example, Brian Eno, The Residents, Robert Wyatt, The Swans, Violent Femmes, Material, Negativland, John Zorn, Matthew and the Unfortunates, and Half Japanese.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://www.4-star-movies.com/calendar-of-events/live-music-the-sleeves",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_4_star_theater",
                  "source_name": "4 Star Theater",
                  "fetched_at": "2026-04-07T09:59:05.318099Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_4_star_theater|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_48e90c755ac8",
              "venue_id": "venue_greek_theatre",
              "title": "Jon Batiste",
              "event_time": "Oct 3 2026 8pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-10-03T20:00:00",
              "event_date": "2026-10-03",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "That same year, he was the subject of Matthew Heineman’s moving Netflix documentary American Symphony , released in partnership with Barack Obama and Michelle Obama’s Higher Ground. The film chronicles Batiste’s professional triumphs in 2022 — marked by nine Grammy nominations and five wins for his 2021 album We Are — while he simultaneously confronts his wife’s cancer recurrence. He also co-wrote the film’s original song “It Never Went Away,” which earned an Oscar nomination for Best Original Song and a Grammy Award for Best Song Written for Visual Media.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thegreekberkeley.com/events/jon-batiste-261003",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-04-11T00:48:26.312249Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_greek_theatre|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d67ab9b48e2e",
              "venue_id": "venue_california_theatre",
              "title": "The New World - Symphony San Jose",
              "event_time": "2026-10-03T19:30:00",
              "venue_name": "California Theatre",
              "event_start": "2026-10-03T19:30:00",
              "event_date": "2026-10-03",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "Celebrate 250 years of the American spirit with music that reflects the nation's past, present, and promise. Aaron Copland's Billy the Kid has become synonymous with the American West. Pianist Joyce Yang delivers the Bay-area premiere of Jonathan Leshnoff's Rhapsody on America. Antonín Dvořák's greatest work, his New World Symphony, remains a profound reflection of cultural identity, hope, and discovery.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Contact venue for pricing",
              "url": "https://www.symphonysanjose.org/concerts/the-new-world/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-04-11T09:57:53.864931Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_symphony_san_jose",
                  "source_name": "Symphony San Jose",
                  "fetched_at": "2026-04-12T19:09:10.200571Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-08-12T10:48:24.659205Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_california_theatre|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_eaa7bcb654c8",
              "venue_id": "venue_the_independent",
              "title": "ROYA",
              "event_time": "10.3 9:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-10-03T21:00:00",
              "event_date": "2026-10-03",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List ROYA Sat, Oct 3 Doors: 8:30 pm | Show: 9:00 pm 21 and up Please note - there is a delivery delay set for 2 weeks prior to show. Buy Tickets Share + Google Calendar Related Events Kelly McFarling Jul 2 Buy Tickets Chinese American Bear Jul 19 Buy Tickets Artists ROYA ROYA is an electronic/dance-pop duo from Aarhus, Denmark, formed by Line Gade and Sebastian Igens. Line's distinctive vocals and introspective lyrics merge with Sebastian's bold, syncopated productions to create music that is both emotionally resonant and playfully inventive. Spontaneity drives their process: tracks often start as live experiments, offhand samples, or fleeting ideas, evolving into instinctive, genre-blurring compositions. In just a year, ROYA has built a global community – THE ROYALS – with over 3 million followers across platforms, and 90+ million streams. Following sold-out European tours, including notable performances in the UK, Germany, and most recently a tour in Australia. ROYA’s creativity extends beyond music. Their “BOY (Zacaria)” pre-save campaign turned fans into co-creators: for every pre-save, the duo moved 100 meters from their studio, culminating in a surreal live show inside an Icelandic ice cave. Their latest single, “Just Talk,” went viral before release. A 90-second teaser sparked a fan-led countdown, amassing over 10 million views and a million likes. The track’s message – finding strength in vulnerability – resonates deeply: “silence cannot keep you safe; don't wear your secrets like a holy crown.” Through sound and imagery, ROYA blend sincerity with playfulness. Their songwriting is “fluid, almost intuitive, even spiritual – we always follow the first impulse and trust the process.” In 2026, they’ll play a summer tour in Europe followed by a North American tour before returning to their home country, Denmark, to play their biggest homecoming concerts so far—continuing a journey guided by instinct, fueled by fans, and fearless in following the flo",
              "event_types": [
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/roya/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-05-13T10:32:34.851154Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_independent|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_dfb4a55eb3ef",
              "venue_id": "venue_the_ritz",
              "title": "All Shall Perish",
              "event_time": "2026-10-03T19:00:31-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-10-03T19:00:31",
              "event_date": "2026-10-03",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "Prepare for an intense evening of heavy metal and deathcore from this influential Oakland-based band.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35 Advance – $40 Day-of-Show",
              "url": "https://www.ticketweb.com/event/all-shall-perish-carnifex-extermination-the-ritz-tickets/14887193",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-05-15T23:30:40.559805Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_ritz|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_296ca0c35985",
              "venue_id": "venue_the_fillmore",
              "title": "My Moring Jacket",
              "event_time": "oct 3 8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-10-03T20:00:00",
              "event_date": "2026-10-03",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "The acclaimed American rock band brings their expansive, eclectic sound and legendary live performance to the stage [3.1.5]. Expect a night of genre-blending rock, indie, and psychedelic tunes.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/my-morning-jacket-san-francisco-california-10-03-2026/event/1C0064761A40801B",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T21:39:26.952332Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-06-05T10:13:38.208208Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b4e7991e7bec",
              "venue_id": "venue_the_uc_theatre",
              "title": "Castle Rat: Summon The Beasts Tour 2026",
              "event_time": "Oct 03 - Show: 7:30 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-10-03T19:30:00",
              "event_date": "2026-10-03",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "Unto Others, Wraith Knight",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theuctheatre.org/shows/castle-rat-03-oct",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-06-04T11:03:37.246762Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-10T10:33:42.275715Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4d0fa2bf8068",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Kehlani World Tour",
              "event_time": "oct 3 6:30pm",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-10-03T18:30:00",
              "event_date": "2026-10-03",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "R&B sensation Kehlani brings 'THE KEHLANI WORLD TOUR' to the Shoreline Amphitheatre to support their self-titled album. The show features an impressive lineup of supporting acts, including Durand Bernarr, Isaia Huron, TheARTI$t, and WASEEL.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/the-kehlani-world-tour-north-america-mountain-view-california-10-03-2026/event/1C0064B4BF7F680C",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-06-04T12:24:46.770694Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-10T10:33:42.275715Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_df33b77872a4",
              "venue_id": "venue_oakland_arena",
              "title": "Billy Strings",
              "event_time": "oct 3 7:30pm",
              "venue_name": "Oakland Arena",
              "event_start": "2026-10-03T19:30:00",
              "event_date": "2026-10-03",
              "venue_address": "7000 Coliseum Way, Oakland, CA 94621",
              "description": "Copyright © 2026 Oakland Arena. Privacy Notice | Cookie Preferences | Your Privacy Choices | Ad Choices | Terms of Use | Accessibility / Site Map a carbon house experience",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.theoaklandarena.com/events/detail/billy-strings-1",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-25T10:40:49.247198Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_oakland_arena",
                  "source_name": "Oakland Arena",
                  "fetched_at": "2026-06-28T17:26:37.381079Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_oakland_arena|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_605bd1e150be",
              "venue_id": "venue_castro_theater",
              "title": "Geordie Greep",
              "event_time": "oct 3 8pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-10-03T20:00:00",
              "event_date": "2026-10-03",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/geordie-greep-261003",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-25T10:40:49.247198Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-06-28T16:19:31.551632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4496467f7c0c",
              "venue_id": "venue_ashby_stage",
              "title": "The Fall Show",
              "event_time": "2026-10-03T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-10-03T20:00:00",
              "event_date": "2026-10-03",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Long-lasting love is marked by both comfort and conflict. In The Fall Show, an older couple's unexpected romance unfolds against a maelstrom of memory and movement. Lovers collide, chaos erupts, and tenderness persists in an intimate examination of love 'til the very end.",
              "event_types": [
                "theater"
              ],
              "price_info": "$25 - $80 (sliding scale)",
              "url": "https://shotgunplayers.org/online/article/the-fall-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-06-30T10:25:39.676498Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_shotgun_players",
                  "source_name": "Shotgun Players",
                  "fetched_at": "2026-07-04T10:27:48.342982Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-10-03",
              "run_id": "run_538dc31103b5",
              "run_label": "The Fall Show, Sep 26 – Oct 25",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b608ba588ef4",
              "venue_id": "venue_ivy_room",
              "title": "Bestial Mouths, Crow Jane, Ssleeping",
              "event_time": "Saturday Oct 3 8:00 pm ciderup shows xxvi presents BESTIAL MOUTHS (RECORD RELEASE) + CROW JANE + SSLEEPING DESIRESS DJ MISFAILED BDAY PARTY PURCHASE TICKETS",
              "venue_name": "Ivy Room",
              "event_start": "2026-10-03T20:00:00",
              "event_date": "2026-10-03",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "ciderup shows xxvi presents - DJ MISFAILED BDAY PARTY (genre - darkwave)",
              "event_types": [
                "live_music",
                "rock",
                "electronic",
                "dj_party"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/184243",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-06-30T12:17:32.380701Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-30T18:59:56.104919Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_ivy_room|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bb32a879c765",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Deerhoof",
              "event_time": "Saturday October 3 2026 7:30PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-10-03T19:30:00",
              "event_date": "2026-10-03",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Saturday October 3 2026\n 7:30PM doors -- music at 8:30PM\n  •••  21 AND OVER\n$27 in advance / $30 at the door\n$33.01 in advance [27 face value +6.01 service fee]\nDeerhoof \n pop noise punk\nLas Sucias \n industrial noise tropical\nOtioxi \n punk",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$ 27 in advance / $30 at the door",
              "url": "http://www.bottomofthehill.com/20261003.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-07-05T11:13:43.716331Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-06T11:10:01.105806Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ae121c76c139",
              "venue_id": "venue_masonic_hall",
              "title": "Danny Elfman",
              "event_time": "oct 3 8:30pm",
              "venue_name": "Masonic Hall",
              "event_start": "2026-10-03T20:30:00",
              "event_date": "2026-10-03",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Renowned composer and former Oingo Boingo frontman Danny Elfman brings his iconic musical vision to the Masonic Hall for a memorable night of music. The performance features a mix of his legendary film scores and classic rock hits.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$64+",
              "url": "https://www.ticketmaster.com/danny-elfman-san-francisco-california-10-03-2026/event/1C0064DEB21BBF87",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-12T11:45:29.263581Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-07-14T18:41:49.124012Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_masonic_hall|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_98946101e19e",
              "venue_id": "venue_fox_theatre_oak",
              "title": "HASAN HATES RONNY | RONNY HATES HASAN",
              "event_time": "October 3, 2026 6:00pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-10-03T18:00:00",
              "event_date": "2026-10-03",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "3rd Show Added by Popular Demand! LIVE SPECIAL TAPING - ft. Hasan Minhaj and Ronny Chieng",
              "event_types": [
                "comedy"
              ],
              "price_info": "$73+",
              "url": "https://thefoxoakland.com/events/hasan-minhaj-ronny-chieng-261003",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-07-18T10:39:34.717215Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-18T11:36:11.622544Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2191af6187aa",
              "venue_id": "venue_thee_stork_club",
              "title": "Handsome Dick Manitoba",
              "event_time": "oct 3 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-10-03T20:00:00",
              "event_date": "2026-10-03",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "Sat., 10/3/26 Handsome Dick Manitoba (of The Dictators), The Bonstones, Fuzz Attack 8pm, $20 adv., $25 door Handsome Dick Manitoba Richard “Handsome Dick” Manitoba, also known as “The Handsomest Man In Rock & Roll”, and the “World’s Greatest Entertainer” (at least since Sammy Davis Jr. left us) was born Richard Blum in The Bronx, New York, January 29, 1954. Richard is a musician, most well known for being the lead singer (for most of 45 years) with the New York City legendary punk band, THE DICTATORS . https://handsomedickmanitoba.com/ https://www.instagram.com/handsomedickmanitoba/?hl=en The Bonstones East Bay spawned melodic punk at its finest. https://thebonstones.bandcamp.com/ https://www.instagram.com/thebonstones/?hl=en Fuzz Attack SF garage punk. https://fuzzattack.bandcamp.com/ https://www.instagram.com/fuzzattacksf/?hl=en",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$20/$25",
              "url": "https://wl.seetickets.us/event/handsome-dick-manitoba-the-bonstones-fuzz-attack/701161?afflky=TheeStorkClub",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-08-06T11:16:26.119873Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_1815219e85b0",
              "venue_id": "venue_924_gilman",
              "title": "Membership Meeting",
              "event_time": "Saturday, October 3, 2026 4:00pm-6:00pm",
              "venue_name": "924 Gilman",
              "event_start": "2026-10-03T16:00:00",
              "event_date": "2026-10-03",
              "venue_address": "924 Gilman St, Berkeley, CA 94710",
              "description": "https://zoom.us/j/99973704675",
              "event_types": [
                "community",
                "livestream"
              ],
              "price_info": "",
              "url": "https://zoom.us/j/99973704675",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_924_gilman",
                  "source_name": "924 Gilman",
                  "fetched_at": "2026-08-02T12:42:16.147880Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_924_gilman|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_69dbb782e8bb",
              "venue_id": "venue_siesta_valley_bowl",
              "title": "The Samples and Freddy Jones Band",
              "event_time": "October 3, 2026 8:00 PM",
              "venue_name": "Siesta Valley Bowl",
              "event_start": "2026-10-03T20:00:00",
              "event_date": "2026-10-03",
              "venue_address": "100 Gateway Blvd, Orinda, CA 94563",
              "description": "The Samples39 years after starting his full-fledged music career with The Samples, Sean Kelly continues to delight fans with music that transcends genres, age and shatters the rules of the established music industry. Throughout his career, Sean has been the driving influence of 20 albums and over 1 million records sold.Sean started playing guitar at age 16 listening to Neil Young, Rolling Stones and Jackson Browne. Those influences mixed with his own poignant and timeless lyrics, a unique and striking voice and a mind for melodies led to songs like Little Silver Ring, Feel Us Shaking and Wild River. For many fans, these aren’t new songs or old songs, but anthems to their lives that represent the first time they met their wife or the joys of their times at college.The Samples are more than a band – they represent a culture of fans and music that go beyond who happens to be playing in the band at any given time. There have been many members of The Samples, but Sean Kelly has been the consistent factor throughout all of the changes.Sean’s journeys across America have taken place in rental cars, tour buses and pickup trucks that would have literally taken him to the moon and back over the last quarter of a century. There is a lot of music in store in 2026 and beyond from Sean Kelly and The Samples.Freddy Jones BandThe Freddy Jones Band remains one of the most enduring names in American rock, defined by infectious melodies, heartfelt lyrics, and an unmistakable live energy. Led by founding member Marty Lloyd—writer and voice behind the hit “In a Daydream”—the band also features longtime bassist Rich Ross.In 2026 they continue to evolve with the release of their new single “No Money in Vegas,” produced by Grammy winner JJ Blair. Their live shows blend classic fan favorites with compelling new material, showcasing the authenticity and chemistry that have driven their three-decade legacy.‍",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "On Sale Friday August 7 10 AM",
              "url": "https://www.ticketmaster.com/event/1C0065047ADE7374",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_siesta_valley_bowl",
                  "source_name": "Siesta Valley Bowl",
                  "fetched_at": "2026-08-06T10:45:14.842570Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_siesta_valley_bowl|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3a95d51972ac",
              "venue_id": "venue_san_jose_civic",
              "title": "Sonic Live In Concert",
              "event_time": "Oct 3, 2026 @ 8:00pm",
              "venue_name": "San Jose Civic",
              "event_start": "2026-10-03T20:00:00",
              "event_date": "2026-10-03",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "Celebrate 35 years of one of the most iconic video game franchises of all time: Sonic the Hedgehog.  This new concert experience brings together, live on stage, the most iconic music and incredibl…",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://events.timely.fun/jc0x91t0/event/78365125",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-08-09T12:20:24.263699Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-08-12T10:48:24.659205Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fe675cfabca0",
              "venue_id": "venue_regency_ballroom",
              "title": "HAMDI FC VS. SAN FRANCISCO",
              "event_time": "Oct 3, 2026 8:00 PM",
              "venue_name": "Regency Ballroom",
              "event_start": "2026-10-03T20:00:00",
              "event_date": "2026-10-03",
              "venue_address": "1300 Van Ness Ave, San Francisco, CA 94109",
              "description": "dubstep, bass music, drum and bass",
              "event_types": [
                "dj_party"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theregencyballroom.com/events/detail?event_id=1528354",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_regency_ballroom",
                  "source_name": "Regency Ballroom",
                  "fetched_at": "2026-08-13T10:47:46.409905Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_regency_ballroom|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_79c340f9d20f",
              "venue_id": "venue_halcyon",
              "title": "Anyasa, Arjuna & Shivani",
              "event_time": "10/3/2026 10:00pm",
              "venue_name": "Halcyon",
              "event_start": "2026-10-03T22:00:00",
              "event_date": "2026-10-03",
              "venue_address": "314 11th St, San Francisco, CA 94103",
              "description": "Keep track of what’s coming up by saving events, sharing them with friends, or even listening to new music in the app.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$12",
              "url": "https://link.dice.fm/Qb6ca159ccc6?pid=d6c08999",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_halcyon",
                  "source_name": "Halcyon",
                  "fetched_at": "2026-08-15T10:42:45.274456Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_halcyon|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f805bd479710",
              "venue_id": "venue_great_american_music_hall",
              "title": "Igorrr, Secret Chiefs 3, Violent Magic Orchestra",
              "event_time": "oct 3 7:30pm",
              "venue_name": "Great American",
              "event_start": "2026-10-03T19:30:00",
              "event_date": "2026-10-03",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "all ages",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "$32.50/$38",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_1a60382dcaf2",
              "venue_id": "venue_rickshaw_stop",
              "title": "Ecca Vandal, Speed Of Light",
              "event_time": "oct 3 9pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-10-03T21:00:00",
              "event_date": "2026-10-03",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "all ages; sold out",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_f86678858bd7",
              "venue_id": "venue_public_works",
              "title": "Jantsen, Twopercent & Similar Outskirts",
              "event_time": "2026-10-03T21:00:00",
              "venue_name": "Public Works",
              "event_start": "2026-10-03T21:00:00",
              "event_date": "2026-10-03",
              "venue_address": "161 Erie St, San Francisco, CA 94103",
              "description": "Jantsen with support from Twopercent, Similar Outskirts, and more, presented by Public Works & VEXRA.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Starts at $38.02",
              "url": "https://dothebay.com/events/2026/10/3/jantsen-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_public_works",
                  "source_name": "Public Works",
                  "fetched_at": "2026-08-17T10:45:28.908286Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_public_works|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c6a43e7ee067",
              "venue_id": "venue_z_space",
              "title": "King Lear",
              "event_time": "October 3 @ 7:00 pm - 10:00 pm",
              "venue_name": "Z Space",
              "event_start": "2026-10-03T19:00:00",
              "event_date": "2026-10-03",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "Directed by Michael Socrates Moran Music composed by Paul Dresher Oakland Theater Project and New Performance Traditions are thrilled to present their most ambitious co-production to date: a bold, music-infused […]",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://dresherensemble.org/event/king-lear-by-william-shakespeare/2026-10-03/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-08-17T14:41:50.422468Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_paul_dresher_ensemble",
                  "source_name": "Paul Dresher Ensemble",
                  "fetched_at": "2026-08-26T10:26:36.842099Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_z_space|2026-10-03",
              "run_id": "run_e3a81a6d4f91",
              "run_label": "King Lear, Sep 25 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f8a118965460",
              "venue_id": "venue_the_riptide",
              "title": "O69 BINGO! By the fireplace",
              "event_time": "Saturday, October 3 6:00 PM - 8:00 PM",
              "venue_name": "The Riptide",
              "event_start": "2026-10-03T18:00:00",
              "event_date": "2026-10-03",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "Every Saturday Jean the Bingo Queen or Dr. Bird make dreams come true with Bingo. It's Free to play, so don't miss the fun! Next level fun with O69 Jell-O shots...",
              "event_types": [
                "sports"
              ],
              "price_info": "Free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6f4567c80265",
              "venue_id": "venue_sc_civic_auditorium",
              "title": "United Sounds of America",
              "event_time": "2026-10-03T19:30:00",
              "venue_name": "Santa Cruz Civic Auditorium",
              "event_start": "2026-10-03T19:30:00",
              "event_date": "2026-10-03",
              "venue_address": "307 Church St, Santa Cruz, CA 95060",
              "description": "The Santa Cruz Symphony presents a concert celebrating the rich and diverse landscape of American orchestral music. Enjoy a dynamic evening highlighting iconic classics and contemporary American masterworks.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_santa_cruz_symphony",
                  "source_name": "Santa Cruz Symphony",
                  "fetched_at": "2026-08-22T11:06:19.948084Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sc_civic_auditorium|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_2ea84b567586",
              "venue_id": "venue_crepe_place",
              "title": "Mama's Broke",
              "event_time": "2026-10-03",
              "venue_name": "The Crepe Place",
              "event_start": "2026-10-03T20:00:00",
              "event_date": "2026-10-03",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "TICKETS",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$20",
              "url": "https://thecrepeplace.com/shows-list/mamas-broke-saturday-october-3-8pm-20",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f18ade4c266d",
              "venue_id": "venue_colligan_theater",
              "title": "Senator John Laird and State Ballot Measures",
              "event_time": "Saturday, October 3 10 – 11am",
              "venue_name": "Colligan Theater",
              "event_start": "2026-10-03T10:00:00",
              "event_date": "2026-10-03",
              "venue_address": "1010 River St, Santa Cruz, CA 95060",
              "description": "10am to 11am, Senator John Laird and State Ballot Measures, Calendar: Colligan Events, No location, October 3, 2026",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_colligan_theater",
                  "source_name": "Colligan Theater",
                  "fetched_at": "2026-08-22T12:44:15.808279Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_colligan_theater|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_58bb3ce4e72a",
              "venue_id": "venue_indexical",
              "title": "Marielle V Jakobsons + Leia Hohenfeld",
              "event_time": "2026-10-03",
              "venue_name": "Indexical",
              "event_start": "2026-10-03T20:00:00",
              "event_date": "2026-10-03",
              "venue_address": "1050 River St #119, Santa Cruz, CA 95060",
              "description": "Saturday, October 3, Indexical presents an evening with Bay Area composer and multi-instrumentalist Marielle V Jakobsons and fluitist Leia Hohenfeld. Marielle V Jakobsons performs selections from her 2026 album The Patterns Lost to Air with accompaniment from David Golightly on keys. Leia Hohenfeld opens the evening.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "$18 Advance / $20 Door / FREE or discounted for Members",
              "url": "https://www.indexical.org/events/2026-10-03-marielle-v-jakobsons-leia-hohenfeld",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_indexical",
                  "source_name": "Indexical",
                  "fetched_at": "2026-08-22T12:50:51.248673Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_indexical|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7617664d9ed8",
              "venue_id": "venue_act_theater",
              "title": "Alfred Hitchcock's North by Northwest",
              "event_time": "2026-10-03",
              "venue_name": "ACT Theater",
              "event_start": "2026-10-03",
              "event_date": "2026-10-03",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "\"I am thrilled, excited and perhaps a little apprehensive to bring the iconic North by Northwest home to the US! I just hope that American audiences will love it as much as our British audiences did. What I am not apprehensive about is bringing its message; one of nations coming together in peace and friendship to make the world a better place. I think we can all raise a glass to that! I am also itching to return to A.C.T. and San Francisco, a piece of my heart will always remain in California and I cannot wait to return to your beautiful theatre, vivid audience and magic state.\" —Emma Rice",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-08-22T13:54:28.481304Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_act_theater|2026-10-03",
              "run_id": "run_8f5d72a961cd",
              "run_label": "Alfred Hitchcock's North by Northwest, Sep 22 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_c44cca17c4ad",
              "venue_id": "venue_verdi_club",
              "title": "Private Event",
              "event_time": "2026-10-03T18:00:00",
              "venue_name": "Verdi Club",
              "event_start": "2026-10-03T18:00:00",
              "event_date": "2026-10-03",
              "venue_address": "2424 Mariposa St, San Francisco, CA 94110",
              "description": "",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.verdiclub.net/events-calendar/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_verdi_club",
                  "source_name": "Verdi Club",
                  "fetched_at": "2026-08-22T14:55:24.428239Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_verdi_club|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_df83d703ff38",
              "venue_id": "venue_bayfront_theater",
              "title": "The Improvised Twilight Zone",
              "event_time": "2026-10-03",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-10-03",
              "event_date": "2026-10-03",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "Inspired by the classic anthology series, this performance delivers eerie, surreal, and mind-bending improvised sci-fi stories created on the spot.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Not specified",
              "url": "https://www.improv.org/shows",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-08-22T15:11:24.975133Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-10-03",
              "run_id": "run_8082e94123ce",
              "run_label": "The Improvised Twilight Zone, Oct 3 – Oct 10",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_304426044e44",
              "venue_id": "venue_crows_nest_sc",
              "title": "MATT MASIH & THE MESSENGERS",
              "event_time": "Saturday October 3rd 08:00 PM",
              "venue_name": "The Crow's Nest",
              "event_start": "2026-10-03T20:00:00",
              "event_date": "2026-10-03",
              "venue_address": "2218 East Cliff Dr, Santa Cruz, CA 95062",
              "description": "Saturday October 3rd Funk, soul and groove Starts at 08:00 PM",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$8 cover",
              "url": "https://www.facebook.com/mattmasihmusic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crows_nest_sc",
                  "source_name": "The Crow's Nest",
                  "fetched_at": "2026-08-22T15:19:13.909618Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crows_nest_sc|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3311c38c538c",
              "venue_id": "venue_sc_beach_boardwalk",
              "title": "Fall Girl Scout Overnight",
              "event_time": "2026-10-03",
              "venue_name": "Santa Cruz Beach Boardwalk",
              "event_start": "2026-10-03",
              "event_date": "2026-10-03",
              "venue_address": "400 Beach St, Santa Cruz, CA 95060",
              "description": "Daisy, Brownie, Junior, Cadette, and Senior Troops camp under the stars and enjoy Boardwalk fun at this epic overnight event!",
              "event_types": [
                "community"
              ],
              "price_info": "$99.95",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sc_beach_boardwalk",
                  "source_name": "Santa Cruz Beach Boardwalk",
                  "fetched_at": "2026-08-22T16:30:12.819028Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_sc_beach_boardwalk|2026-10-03",
              "run_id": "run_da99b56bf87a",
              "run_label": "Fall Girl Scout Overnight, Oct 2 – Oct 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3baf8504de80",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Love Notes",
              "event_time": "2026-10-03",
              "venue_name": "San Jose CPA",
              "event_start": "2026-10-03",
              "event_date": "2026-10-03",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-10-03",
              "run_id": "run_1ea648ade196",
              "run_label": "Love Notes, Aug 22 – Oct 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_3f488bfc15bd",
              "venue_id": "venue_oasis",
              "title": "Princess w/ Nini Coco",
              "event_time": "Sat, Oct 3 •  9:30 PM",
              "venue_name": "Oasis",
              "event_start": "2026-10-03T21:30:00",
              "event_date": "2026-10-03",
              "venue_address": "298 11th St, San Francisco, CA 94103",
              "description": "Eventbrite - OASIS presents Princess w/ NINI COCO - Saturday, October 3, 2026 at OASIS, San Francisco, CA. Find event and ticket information.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "From $23.53",
              "url": "https://www.eventbrite.com/e/princess-w-nini-coco-tickets-1992947342149?aff=ebdssbdestsearch",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_eventbrite_sf",
                  "source_name": "Eventbrite SF",
                  "fetched_at": "2026-08-22T16:56:50.453316Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_oasis",
                  "source_name": "Oasis",
                  "fetched_at": "2026-08-28T21:03:01.054070Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_oasis|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_c9eaf79d6938",
              "venue_id": "venue_the_marsh_sf",
              "title": "Soul Story Theater",
              "event_time": "2026-10-03",
              "venue_name": "The Marsh SF",
              "event_start": "2026-10-03",
              "event_date": "2026-10-03",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "Suraya Keating’s Soul Story Theater Solo Performance Program for Women Class Description Facilitated by Suraya Keating, LMFT, Registered Drama Therapist & Soul Story Coach The Soul Story Theater Solo Performance Program is a 13-week creative journey for women who long to transform meaningful life experiences into an original solo performance. Through expressive arts, storytelling, writing, movement, and theater, you’ll discover the deeper meaning within your life’s journey while finding the courage to share your authentic voice. This transformational experience culminates in a live performance where each participant presents her original soul story before a supportive audience. During this immersive journey, you will: Unearth the story your soul has been longing to tell and shape it into a compelling, authentic performance piece. Transform limiting narratives into empowering ones, discovering the resilience, wisdom, and personal mythology woven throughout your life’s journey. Awaken your creative voice through an inspiring blend of writing, storytelling, movement, and theater while deepening your connection to your inner muse. Receive personalized coaching as you write, devise, rehearse, and confidently perform your original solo piece. Experience the power of a courageous circle of women who will witness, encourage, and celebrate your creative unfolding every step of the way. What’s Included 13-week hybrid program combining online coaching with in-person rehearsals 10 live Zoom group sessions (most Thursdays, 7:15–9:15 PM PT) 2 in-person rehearsal intensives (Saturdays, 10am-3pm) Two 55-minute individual coaching sessions via Zoom Public culminating performance with a live audience Fall 2026 Schedule Program Dates: September 10 – December 12, 2026 Zoom Sessions Thursdays | 7:15–9:15 PM (PT) September 10 & 24 October 1, 8 & 22 November 5, 12 & 19 December 3 plus Zoom Dress Rehearsal on Dec 10 In-Person Rehearsals at The Marsh SF Studio Saturdays | 10am-3pm October 3",
              "event_types": [
                "workshop"
              ],
              "price_info": "",
              "url": "https://themarsh.org/suraya-keating-soul-story-theater-solo-performance-program-for-women/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-08-22T17:28:42.838285Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-10-03",
              "run_id": "run_f0998957edb6",
              "run_label": "Soul Story Theater, Sep 10 – Dec 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_ccfbcf0ae370",
              "venue_id": "venue_park_hall_ben_lomond",
              "title": "The Addams Family",
              "event_time": "2026-10-03",
              "venue_name": "Park Hall",
              "event_start": "2026-10-03T20:00:00",
              "event_date": "2026-10-03",
              "venue_address": "9400 Mill St, Ben Lomond, CA 95005",
              "description": "The Addams Family theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://mctshows.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_park_hall_ben_lomond",
                  "source_name": "Park Hall",
                  "fetched_at": "2026-08-22T19:38:45.882590Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_park_hall_ben_lomond|2026-10-03",
              "run_id": "run_8d42d89c5c45",
              "run_label": "The Addams Family, Sep 18 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c6c6357b5157",
              "venue_id": "venue_park_hall_ben_lomond",
              "title": "Rumors",
              "event_time": "2026-10-03T14:00:00",
              "venue_name": "Park Hall",
              "event_start": "2026-10-03T14:00:00",
              "event_date": "2026-10-03",
              "venue_address": "9400 Mill St, Ben Lomond, CA 95005",
              "description": "A comedy by Neil Simon, directed by Marnae Taylor. Charley, the deputy mayor of New York, and his wife Myra Brock, on the evening of their tenth wedding anniversary, had an elegant dinner party which goes histrically wrong. Four couples arrive expecting a night of sophistication—only to discover the host has had a terrible mishap and his wife is missing. Desperate to cover up the scandal, they spin wilder and wilder stories, turning confusion into chaos as rumors fly faster than champagne corks. With a niche fit, a whiplash, mitigated jealousy, a recurring back spasm, comedy ensues. Brimming with razor-sharp wit, slapstick mishaps, and Simon's trademark charm, Rumors is a laugh-out-loud comedy that proves the truth may be the funniest thing of all.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "",
              "url": "https://mctshows.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_park_hall_ben_lomond",
                  "source_name": "Park Hall",
                  "fetched_at": "2026-08-22T19:38:45.882590Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_park_hall_ben_lomond|2026-10-03",
              "run_id": "run_b17f8875ebd5",
              "run_label": "Rumors, Sep 18 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5fdf175091da",
              "venue_id": "venue_the_mint",
              "title": "Shingo Nakamura & Myrne",
              "event_time": "2026/10/03 Sat: Oct 3 (2pm-8pm)",
              "venue_name": "The Mint",
              "event_start": "2026-10-03T14:00:00",
              "event_date": "2026-10-03",
              "venue_address": "1942 Market St, San Francisco, CA 94102",
              "description": "progressive house",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$21.05 b4 4 / $33-69.75 | 21+",
              "url": "https://ra.co/events/2501071",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_mint|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_87fe5fd37be8",
              "venue_id": "venue_the_midway",
              "title": "DJ_Dave",
              "event_time": "2026/10/03 Sat: Oct 3 (9pm)",
              "venue_name": "The Midway",
              "event_start": "2026-10-03T21:00:00",
              "event_date": "2026-10-03",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "GODS & MONSTERS ∙ INDOORS",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$30 | 21+",
              "url": "https://www.tixr.com/groups/midwaysfgv/events/dj-dave-200108",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-08-30T10:57:54.572474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_600aec6f3f4d",
              "venue_id": "venue_the_midway",
              "title": "Elephante",
              "event_time": "2026/10/03 Sat: Oct 3 (9pm-2am)",
              "venue_name": "The Midway",
              "event_start": "2026-10-03T21:00:00",
              "event_date": "2026-10-03",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "trap, big room house, pop EDM",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$25-56 | 21+",
              "url": "https://www.tixr.com/groups/midwaysf/events/elephante-198432",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-08-30T10:57:54.572474Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_f9d5ff83d5b0",
              "venue_id": "venue_the_monarch",
              "title": "NotLo, Bass Temple, Soosi & Baby Kush",
              "event_time": "2026/10/03 Sat: Oct 3 (9pm-2am)",
              "venue_name": "The Monarch",
              "event_start": "2026-10-03T21:00:00",
              "event_date": "2026-10-03",
              "venue_address": "101 6th St, San Francisco, CA 94103",
              "description": "dubstep, bass music",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$11-28 | 21+",
              "url": "https://posh.vip/e/bass-n-babes-presents-notl?t=monarch",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monarch|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_1f397d12df1c",
              "venue_id": "venue_dna_lounge",
              "title": "Afterlife",
              "event_time": "2026/10/03 Sat: Oct 3 (9:30pm-2am)",
              "venue_name": "DNA Lounge",
              "event_start": "2026-10-03T21:30:00",
              "event_date": "2026-10-03",
              "venue_address": "375 Eleventh Street, San Francisco, CA 94103",
              "description": "downtempo, witch house, midtempo, darkwave, industrial, synthwave",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10 pre / $15 | 18+",
              "url": "https://www.dnalounge.com/calendar/2026/10-03d.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_dna_lounge|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_fd799601321d",
              "venue_id": "venue_the_sound_room",
              "title": "Dmitri Matheny Group. Louie! Louie! Louie!",
              "event_time": "Saturday, October 3, 2026 7:30 PM",
              "venue_name": "The Sound Room",
              "event_start": "2026-10-03T19:30:00",
              "event_date": "2026-10-03",
              "venue_address": "2147 Broadway, Oakland, CA 94612",
              "description": "Flugelhornist DMITRI MATHENY has been lauded as “one of the most emotionally expressive improvisers of his generation” (International Review of Music). An honors graduate of Berklee College of Music, Dmitri Matheny vaulted onto the jazz scene in the 1990s as the protégé of jazz legend Art Farmer. Since then he has garnered critical acclaim and a loyal international following, releasing twelve CDs and touring extensively throughout the United States, Europe and Asia.The San Francisco Chronicle calls Matheny “one of the jazz world’s most talented horn players.”\n\nAccording to All About Jazz, the Dmitri Matheny Group is “an all-star jazz band featuring some of the most accomplished musicians in the western United States.”\n\nDmitri Matheny flugelhorn, Dave Ellis saxophones, David Udolf piano, Ron Belcher bass, Leon Joyce Jr. drums\n\nTikets at Dmitri Matheny Group. Louie Louie! Louie!",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.soundroom.org/events/dmitri-matheny-group-louie-louie-louie",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_sound_room",
                  "source_name": "The Sound Room",
                  "fetched_at": "2026-08-26T10:25:42.190144Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_sound_room|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_61f2cb7e3502",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Little Shop of Horrors",
              "event_time": "2026-10-03",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-10-03",
              "event_date": "2026-10-03",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Book & Lyrics by Howard Ashman, Music by Alan Menken. Based on the film by Roger Corman, Screenplay by Charles Griffith. Directed by Ben Villegas Randle, Musical Direction by Jad Bernardo, Choreography by Leslie Waggoner",
              "event_types": [
                "theater",
                "live_music"
              ],
              "price_info": "",
              "url": "https://nctcsf.org/event/little-shop/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-08-26T11:06:39.262369Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-10-03",
              "run_id": "run_5315ef200ae4",
              "run_label": "Little Shop of Horrors, Sep 12 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d65bf7f3d366",
              "venue_id": "venue_toyota_pavilion",
              "title": "Roxette 40th Anniversary Tour 2026",
              "event_time": "2026-10-03T18:30:00",
              "venue_name": "Toyota Pavilion at Concord",
              "event_start": "2026-10-03T18:30:00",
              "event_date": "2026-10-03",
              "venue_address": "2000 Kirker Pass Rd, Concord, CA 94521",
              "description": "Roxette 40th Anniversary Tour with special guests Taylor Dayne and Nick Lowe with Los Straitjackets.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.livenation.com/event/G5vYZ9km2g7hA/roxette-40th-anniversary-tour-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_toyota_pavilion",
                  "source_name": "Toyota Pavilion at Concord",
                  "fetched_at": "2026-08-26T11:41:34.951729Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_toyota_pavilion|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_4045ff46f81b",
              "venue_id": "venue_guild_theatre",
              "title": "Killer Queen",
              "event_time": "OCT\n03\n8:00 PM",
              "venue_name": "Guild Theatre",
              "event_start": "2026-10-03T20:00:00",
              "event_date": "2026-10-03",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "DOORS OPEN: 7:00 PM • SHOW: 8:00 PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.guildtheatre.com/shows/killer-queen-03-oct",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-08-28T10:40:15.787828Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_guild_theatre|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bc0259a73fc3",
              "venue_id": "venue_the_freight__salvage",
              "title": "El Khat",
              "event_time": "2026-10-03T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-10-03T19:00:00",
              "event_date": "2026-10-03",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Hardly Strictly Bluegrass Out of the Park presents: El Khat Junkyard Funk from Yemen! doors 7pm / showtime 8pm All Out of the Park shows donate a part of the proceeds to the Sweet Relief Musicians Fund “Brilliant!” - Gilles Peterson “Vigorous psychedelic stomps … an exciting new discovery.” - Uncut El Khat is a homemade junkyard band led by multi-instrumentalist Eyal El Wahab. Th eir original compositions are inspired by the music of the golden age in Aden, Yemen. Experimenting with DIY, self-made instruments as an expression of a minimalist life philosophy—while remaining loyal to traditional Yemeni percussive roots—the three-piece developed a unique Arabic-Yemeni style. Although their detachment from any nation or flag is a driving force behind the group, the heart of their music and heritage remains deeply rooted in Yemeni culture. The constant divisions created by war and migration have given rise to a reassembled identity, one that resonates strongly throughout El Khat’s music. With a fourth album to be released in 2026, El Khat continues to forge a sound that bridges past and present—keeping Yemeni culture alive while reimagining its future.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "TICKETS SOLD BY CO-PRESENTER",
              "url": "https://tickets.worldclassmusic.live/events/wcml/2175555",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9fdaec01f9ae",
              "venue_id": "venue_california_jazz_conservatory",
              "title": "Fall Open House",
              "event_time": "2026-10-03",
              "venue_name": "CA Jazz Conservatory",
              "event_start": "2026-10-03T19:30:00",
              "event_date": "2026-10-03",
              "venue_address": "2087 Addison St, Berkeley, CA 94704",
              "description": "Fall open house event",
              "event_types": [
                "community",
                "workshop"
              ],
              "price_info": "Free",
              "url": "https://concerts.jazzschool.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_jazz_conservatory",
                  "source_name": "CA Jazz Conservatory",
                  "fetched_at": "2026-08-28T12:15:46.788864Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_california_jazz_conservatory|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ff48a6827667",
              "venue_id": "venue_sfjazz_miner",
              "title": "JAHARI STAMPLEY FAMILY SOUL TRIO",
              "event_time": "2026-10-03 11:00 AM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-10-03T11:00:00",
              "event_date": "2026-10-03",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Members Only\n\nLivestream Only",
              "event_types": [
                "livestream",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/athome/fridays-live/jahari-stampley-family-soul-trio/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_6581fa666b7b",
              "venue_id": "venue_sfjazz_lab",
              "title": "CYRILLE AIMÉE",
              "event_time": "2026-10-03 7:00 PM",
              "venue_name": "SFJAZZ Lab",
              "event_start": "2026-10-03T19:00:00",
              "event_date": "2026-10-03",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "Winner of the Sarah Vaughan International Vocal Competition, Cyrille Aimée truly has jazz in her blood. Raised by a French father and Dominican mother in the northern French town of Samois-sur-Seine – the last home of Roma jazz giant Django Reinhardt – Aimée found inspiration in the music of Reinhardt and the freedom of the gypsy lifestyle, singing on street corners during travels across Europe. Winning the Montreux Jazz Festival Vocal Competition in 2007 helped finance her self-produced debut album, and finishing as a finalist in the 2012 Thelonious Monk International Jazz Vocal Competition elevated Aimée’s visibility to a global level as a major new figure in jazz. A performer possessed of an infectious joy, lightness of touch and deep feeling for the lyric, Aimée released her breakout 2014 hit on Mack Avenue, It’s a Good Day , mixing Roma jazz inspirations, bossa nova, flamenco and the Great American Songbook. A relocation to Costa Rica and new motherhood have instilled a fresh inspiration in Aimée, and for these performances, she performs a cross-section of her wide-ranging repertoire including music from her latest Whirlwind release, à Fleur de Peau and live session, Cyrille Aimée: 4.24 .",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/cyrille-aimee/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_lab|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_abcf193a2bfd",
              "venue_id": "venue_sfjazz_miner",
              "title": "HIROMI: THE TRIO PROJECT",
              "event_time": "2026-10-03 7:30 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-10-03T19:30:00",
              "event_date": "2026-10-03",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "with James Genus and Simon Phillips",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/hiromi-the-trio-project/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_4569ca42e2f3",
              "venue_id": "venue_temescal_arts_center",
              "title": "Improvisation Workshop - First Tuesdays",
              "event_time": "2026-10-03T20:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-10-03T20:00:00",
              "event_date": "2026-10-03",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Improvisation is the key - hosted by Lewis Jordan. Open Workshop and Playground in free improvisation. Spontaneously Assembled Small Groups will collaborate. Come to listen, to be heard, to see, to move. Inviting musicians, poets, dancers, to a non-hierarchical setting to improvise together. Spontaneously composing or conducting, we'll be on a quest for fire.",
              "event_types": [
                "workshop",
                "experimental"
              ],
              "price_info": "Donations encouraged",
              "url": "https://www.temescalartcenter.org/tacmusic.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-08-28T14:09:19.773505Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-10-03",
              "run_id": "run_16a4ae4ccea6",
              "run_label": "Improvisation Workshop - First Tuesdays, Sep 1 – Dec 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1c140f820e3e",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-10-03",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-10-03",
              "event_date": "2026-10-03",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-10-03",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_13f7df4a651e",
              "venue_id": "venue_the_pear_theatre",
              "title": "Private Lives",
              "event_time": "2026-10-03",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-10-03",
              "event_date": "2026-10-03",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "In this sparkling comedy of manners, two former lovers find themselves honeymooning with new spouses in adjoining rooms—only to discover that their passion for each other hasn't dimmed.",
              "event_types": [
                "theater"
              ],
              "price_info": "$46.00 - $48.00",
              "url": "https://www.thepear.org/whats-playing-now",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-08-28T18:26:07.122240Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-10-03",
              "run_id": "run_d1a58de7893a",
              "run_label": "Private Lives, Sep 25 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fc93ca5379c6",
              "venue_id": "venue_historic_bal_theatre",
              "title": "ULTIMATE ROLLING STONES TRIBUTE",
              "event_time": "Saturday, Oct 3 Show: 8:00 PM",
              "venue_name": "Historic BAL Theatre",
              "event_start": "2026-10-03T20:00:00",
              "event_date": "2026-10-03",
              "venue_address": "14808 E 14th St, San Leandro, CA 94578",
              "description": "This high-energy tribute show stars Rudy Colombini of the Unauthorized Rolling Stones celebrating the music and swagger of the legendary rock band. Fans can expect a night filled with classic anthems and raw rock and roll energy.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.baltheatre.com/tm-event/ultimate-rolling-stones-tribute/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_historic_bal_theatre",
                  "source_name": "Historic BAL Theatre",
                  "fetched_at": "2026-08-28T18:55:07.595027Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_historic_bal_theatre|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_238715d0db74",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Renée Fleming Sings Strauss",
              "event_time": "Saturday, Oct 3, 2026 | 7:30 pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-10-03T19:30:00",
              "event_date": "2026-10-03",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "Overview A delectable double dose of Richard Strauss, administered by two of his greatest living interpreters, soprano Renée Fleming and debuting guest conductor Santtu-Matias Rouvali. In the late-life cycle Four Last Songs, Strauss bids a tender farewell to his life in music. Along the way, he pays tribute to Pauline, his diva-soprano spouse, as well as his horn-playing father—radiant French horn solos grace each of the songs. Ein Heldenleben, the irony-infused symphonic poem that Strauss wrote in his mid-30s, is an impassioned portrait of human successes and failures, told with a flair for the dramatic.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "LEARN MORE",
              "url": "https://www.sfsymphony.org/Buy-Tickets/2026-27/Renee-Fleming-Strauss",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-08-28T19:38:14.129031Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_89e8326acf54",
              "venue_id": "venue_the_monkey_house",
              "title": "Antonio",
              "event_time": "10/03/2026",
              "venue_name": "The Monkey House",
              "event_start": "2026-10-03",
              "event_date": "2026-10-03",
              "venue_address": "1638 University Avenue, Berkeley, CA",
              "description": "Musician Antonio takes the stage at The Monkey House for a night of live acoustic music. The performance provides an engaging, up-close showcase for local music lovers.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monkey_house",
                  "source_name": "The Monkey House",
                  "fetched_at": "2026-08-28T21:37:06.591184Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monkey_house|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_66f2967f67de",
              "venue_id": "venue_club_fox",
              "title": "Soucano & Key Elements",
              "event_time": "2026-10-03T19:00:00",
              "venue_name": "Club Fox",
              "event_start": "2026-10-03T19:00:00",
              "event_date": "2026-10-03",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Saturday October 3rdLatin Rock Legacy PresentsSOUCANOw/KEY ELEMENTS – Latin Jazz EnsembleDoors 7PM / Show 8PM",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://www.eventbrite.com/e/soucano-and-key-elements-latin-jazz-ensemble-tickets-1997126955485?aff=oddtdtcreator",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fox",
                  "source_name": "Club Fox",
                  "fetched_at": "2026-08-28T22:45:26.741794Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_club_fox|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_78734e690e1b",
              "venue_id": "venue_rhythmix",
              "title": "The Locals: Opening Reception",
              "event_time": "2026-10-03T18:00:00",
              "venue_name": "Rhythmix",
              "event_start": "2026-10-03T18:00:00",
              "event_date": "2026-10-03",
              "venue_address": "2513 Blanding Ave, Alameda, CA 94501",
              "description": "Opening reception for \"The Locals\" exhibit at K Gallery. Exhibit dates listed as September 11 to October 25, 2026.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://www.rhythmix.org/upcoming-exhibits/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rhythmix",
                  "source_name": "Rhythmix",
                  "fetched_at": "2026-08-28T23:14:01.025318Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rhythmix|2026-10-03",
              "run_id": "run_566a8f02098a",
              "run_label": "The Locals: Opening Reception, Sep 11 – Oct 25",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_6dc0b0d6348e",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-10-03",
              "venue_name": "De Young",
              "event_start": "2026-10-03",
              "event_date": "2026-10-03",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-10-03",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6988325cca1a",
              "venue_id": "venue_punch_line",
              "title": "LESLIE LIAO",
              "event_time": "Oct 3, 2026 7:00 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-10-03T19:00:00",
              "event_date": "2026-10-03",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Stand-up comedian, writer, and actress Leslie Liao shares her relatable, matter-of-fact humor about navigating life as a single Chinese-American woman in Los Angeles. She has been featured as a Variety \"Comic to Watch\" and recently released her debut special, Silky Smooth.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/leslie-liao-san-francisco-california-10-03-2026/event/1C0064A4DF1E99D4",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_de0e71a1378a",
              "venue_id": "venue_punch_line",
              "title": "LESLIE LIAO",
              "event_time": "Oct 3, 2026 9:15 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-10-03T21:15:00",
              "event_date": "2026-10-03",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Stand-up comedian, writer, and actress Leslie Liao shares her relatable, matter-of-fact humor about navigating life as a single Chinese-American woman in Los Angeles. She has been featured as a Variety \"Comic to Watch\" and recently released her debut special, Silky Smooth.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/leslie-liao-san-francisco-california-10-03-2026/event/1C0064A4DF1799BD",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1dc51215b79e",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "HEATHER MCDONALD",
              "event_time": "Sat Oct 3, 2026 7:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-10-03T19:00:00",
              "event_date": "2026-10-03",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Comedian and Juicy Scoop podcast host Heather McDonald brings her hilarious pop culture commentary and stand-up to Cobb's Comedy Club.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/heather-mcdonald-san-francisco-california-10-03-2026/event/1C0064F513B63766",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_486482a32e49",
              "venue_id": "venue_shapeshifters",
              "title": "Gravitational Lensing: Feminist Film Dialogues",
              "event_time": "Saturday, October 3, 2026 7pm",
              "venue_name": "Shapeshifters",
              "event_start": "2026-10-03T19:00:00",
              "event_date": "2026-10-03",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "Program 17: Family Portraits/Relational Exercises includes a spectrum of diaristic films—from uncanny documentary to autobiographical re-enactments—that manifest different ways filmmakers choose to represent their relationships to family and, more broadly, to home (both literal and conceptual) through cinematic language.",
              "event_types": [
                "film"
              ],
              "price_info": "San Francisco Cinematheque",
              "url": "https://buytickets.at/shapeshifterscinema/2379534",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shapeshifters",
                  "source_name": "Shapeshifters",
                  "fetched_at": "2026-08-30T10:04:33.112973Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-10-03",
              "run_id": "run_8afbca984fe1",
              "run_label": "Gravitational Lensing: Feminist Film Dialogues, Sep 9 – Nov 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8bf71fecd6f7",
              "venue_id": "venue_castro_theater",
              "title": "Effervescence! Harp & Strings",
              "event_time": "2026-10-03T16:00:00",
              "venue_name": "Castro Theater",
              "event_start": "2026-10-03T16:00:00",
              "event_date": "2026-10-03",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Featuring Marina Roznitovsky Oster, harp soloist, with Bay Philharmonic Strings and Woodwinds performing Debussy, Handel, Mendelssohn, and more under conductor Jane K. Brown, including the world premieres of \"Iguazu\" and \"Una Luz en el Mar\" by Alfredo Rolando Ortiz.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://bayphil.org/calendar/effervescence",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_philharmonic",
                  "source_name": "Bay Philharmonic",
                  "fetched_at": "2026-08-30T10:17:31.682410Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_castro_theater|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_ff2729301617",
              "venue_id": "venue_brava_theater",
              "title": "Bay Bridges",
              "event_time": "Saturday, Oct  3  7:30 PM",
              "venue_name": "Brava Theater",
              "event_start": "2026-10-03T19:30:00",
              "event_date": "2026-10-03",
              "venue_address": "2781 24th St, San Francisco, CA 94110",
              "description": "Get ready for an evening of bold, boundary-pushing music with the SF Contemporary Players at Brava Theater . Bay Bridges brings together five distinctive works that explore movement, transformation, memory, and connection—from Shuying Li ’s vivid Migration and Matthew Evan Taylor ’s restless Pursuit to Inés Thiebaut ’s atmospheric apeiron , Michael Gilbertson ’s delicate Breath and Shadow , and Darius Milhaud' ’s colorful Stanford Serenade , featuring SF Contemporary Players oboist Kyle Bruckmann . With West Coast premieres and a program spanning acoustic instruments, live electronics, improvisation, and more, this is a chance to experience the Bay Area’s adventurous contemporary music scene all in one night.",
              "event_types": [
                "live_music",
                "experimental"
              ],
              "price_info": "Price:\n$15 tickets ($10 for Supermusers)",
              "url": "https://www.groupmuse.com/events/16966-sf-contemporary-music-players-presents-bay-bridges",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_groupmuse",
                  "source_name": "Groupmuse",
                  "fetched_at": "2026-08-30T10:42:11.507915Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brava_theater|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_b3044ca798d5",
              "venue_id": "venue_the_setup",
              "title": "THE SETUP AT THE LOST CHURCH",
              "event_time": "2026-10-03 8:00 PM",
              "venue_name": "The Setup",
              "event_start": "2026-10-03T20:00:00",
              "event_date": "2026-10-03",
              "venue_address": "222 Hyde St, San Francisco, CA 94102",
              "description": "Immerse yourself in an underground and intimate comedy setting at the charming Lost Church in North Beach. Prepare to witness top-tier talent, including comedians who have graced the stages of The New Yorker, Netflix, Comedy Central, and HBO.",
              "event_types": [
                "comedy"
              ],
              "price_info": "GET TICKETS",
              "url": "https://setupcomedy.com/tickets-3/lost-church-saturday-october-3rd-8pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_setup",
                  "source_name": "The Setup",
                  "fetched_at": "2026-08-30T11:15:30.522192Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_setup|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_34c36b20759c",
              "venue_id": "venue_mitchell_park_center",
              "title": "Hannah Marks Quartet",
              "event_time": "10/03/2026 8:00 PM",
              "venue_name": "Mitchell Park",
              "event_start": "2026-10-03T20:00:00",
              "event_date": "2026-10-03",
              "venue_address": "3700 Middlefield Rd, Palo Alto, CA 94303",
              "description": "Earthwise welcomes Hannah Marks Quartet. Vinnie Golia opens.More info/Tickets: https://www.eventbrite.com/e/earthwise-welcomes-hannah-marks-quartet-tickets-1996918639406",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: https://www",
              "url": "https://www.bayimproviser.com/EventView.aspx?e=23378",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_bay_improviser",
                  "source_name": "Bay Improviser",
                  "fetched_at": "2026-08-31T10:04:42.136151Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_mitchell_park_center|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_5f69501c2c6e",
              "venue_id": "venue_yoshis",
              "title": "MILES ELECTRIC BAND",
              "event_time": "October 3, 2026 - 7:30 PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-10-03T19:30:00",
              "event_date": "2026-10-03",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "BRINGING TOGETHER MILES DAVIS ALUMNI AND THE NEXT GENERATION OF MODERN JAZZ STARS",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$59 - $99",
              "url": "https://yoshis.com/events/buy-tickets/miles-electric-band/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c92c86e9b74a",
              "venue_id": "venue_presidio_theater",
              "title": "Okaidja Afroso:  Àbor Édíŋ",
              "event_time": "OCT 3, 2026",
              "venue_name": "Presidio Theatre",
              "event_start": "2026-10-03T19:30:00",
              "event_date": "2026-10-03",
              "venue_address": "99 Moraga Ave, San Francisco, CA 94129",
              "description": "Okaidja Afroso was born into a family of musicians and storytellers in the town of Kokrobite on the west coast of Ghana. He began his career as a dancer with the celebrated Ghana Dance Ensemble. As he toured internationally Okaidja expanded his artistic reach becoming a master multi-instrumentalist, singer-songwriter, and arranger. His uncle was the town’s notorious composer who spared no one with the songs he wrote about life in their small fishing village. Okaidja’s mother was a colorful lead singer in her spiritual church. Her powerful songs of praise earned her the name “the spiritual singer.” As a young boy Okaidja sang while he worked on fishing boats. The fishermen would sing a cappella songs as they worked, and Okaidja passed the long days learning the songs of the great sea.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.presidiotheatre.org/show-details/okaidja-afroso-abor-edi",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_presidio_theater",
                  "source_name": "Presidio Theatre",
                  "fetched_at": "2026-08-31T13:00:36.584647Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_presidio_theater|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_97f58357640c",
              "venue_id": "venue_piedmont_center",
              "title": "Oakland Art Association Gallery Show",
              "event_time": "2026-10-03T11:00:00",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-10-03T11:00:00",
              "event_date": "2026-10-03",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-08-31T13:20:32.956554Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-10-03",
              "run_id": "run_06f2ed2f4513",
              "run_label": "Oakland Art Association Gallery Show, Sep 26 – Nov 1",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2a6a14f2a6a6",
              "venue_id": "venue_piedmont_center",
              "title": "Mads Tolling Trio",
              "event_time": "2026-10-03T19:30:00",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-10-03T19:30:00",
              "event_date": "2026-10-03",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "Two-time GRAMMY Award-Winning jazz violinist Mads Tolling with pianist John R. Burr and GRAMMY-nominated vocalist Kenny Washington.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Early-bird pricing available until September 10",
              "url": "https://ticketsignup.io/Mads",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-08-31T13:20:32.956554Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_16e4dc92e370",
              "venue_id": "venue_montgomery_theater",
              "title": "Sing Along",
              "event_time": "Oct 3, 2026 @ 7:30pm",
              "venue_name": "Montgomery Theater",
              "event_start": "2026-10-03T19:30:00",
              "event_date": "2026-10-03",
              "venue_address": "271 S Market St, San Jose, CA 95113",
              "description": "Following the success of Sing Along 1, this new edition returns with a broader and richer program featuring new songs from the golden age. In this evening, we sing together through a selection of be…",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://events.timely.fun/jc0x91t0/event/78448839",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_montgomery_theater",
                  "source_name": "Montgomery Theater",
                  "fetched_at": "2026-08-31T13:44:58.544329Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-09-03T12:03:36.612547Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_montgomery_theater|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cf825273ba17",
              "venue_id": "venue_california_theatre",
              "title": "The New World – Symphony San Jose",
              "event_time": "2026-10-03T14:30:00",
              "venue_name": "California Theatre",
              "event_start": "2026-10-03T14:30:00",
              "event_date": "2026-10-03",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "| Performances: Oct. 3-4 |  \n \n\nCelebrate 250 years of the American spirit with music that reflects the nation’s past, present, and promise.\nAaron Copland’s Billy the Kid has become synonymous with th…",
              "event_types": [
                "classical",
                "live_music",
                "dance"
              ],
              "price_info": "",
              "url": "https://events.timely.fun/jc0x91t0/event/78315499",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-08-31T13:56:21.266463Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_california_theatre|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_4b7d3643e1e1",
              "venue_id": "venue_yerba_buena_center",
              "title": "GaHee Park: Behind the Curtain",
              "event_time": "2026-10-03",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-03",
              "event_date": "2026-10-03",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Park invites us to peek behind the curtain, as she lays claim to her own power as a surrealist painter working across fantasy and intimacy.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/gahee-park-behind-the-curtain/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-03",
              "run_id": "run_5353f80886f6",
              "run_label": "GaHee Park: Behind the Curtain, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_72bd9086a9d2",
              "venue_id": "venue_yerba_buena_center",
              "title": "Rael San Fratello: Prototypes",
              "event_time": "2026-10-03",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-03",
              "event_date": "2026-10-03",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The most comprehensive presentation to date of the renowned Bay Area design studio Rael San Fratello.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/rael-san-fratello-prototypes-and-provocations/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-03",
              "run_id": "run_cd09bf07fb68",
              "run_label": "Rael San Fratello: Prototypes, Sep 25 – Jan 31",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_94c2365051bd",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dread Scott: The Body Politic",
              "event_time": "2026-10-03",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-03",
              "event_date": "2026-10-03",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The exhibition reflects Dread Scott’s longtime commitment to art that confronts political issues and interrogates American patriotism.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dread-scott-the-body-politic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-03",
              "run_id": "run_995f7fbf41ba",
              "run_label": "Dread Scott: The Body Politic, Sep 25 – Jan 31",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7615c664c5fe",
              "venue_id": "venue_yerba_buena_center",
              "title": "A New Leaf",
              "event_time": "Saturday, October 3, 2026, 2 PM",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-03T14:00:00",
              "event_date": "2026-10-03",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "See Elaine May’s “A New Leaf” (1971) as part of a weekly film series exploring voyeurism and theatricality, cocktail charm and social taboos.",
              "event_types": [
                "film"
              ],
              "price_info": "Tickets: $15",
              "url": "https://ybca.org/event/a-new-leaf-through-an-open-window-film-series/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_18b2c81aa300",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dream",
              "event_time": "2026-10-03",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-03",
              "event_date": "2026-10-03",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public art installation commissioned by YBCA and co-sponsored by San Francisco Public Works.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dream-public-art/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-03",
              "run_id": "run_b6a5ba4e8809",
              "run_label": "Dream, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6acfd14fef21",
              "venue_id": "venue_yerba_buena_center",
              "title": "SoMa Mahal Kita",
              "event_time": "2026-10-03",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-03",
              "event_date": "2026-10-03",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A message of love for the SoMa neighborhood and community, inspired by weaving practices in the Phillipines and the colors of the Filipino flag.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/soma-mahal-kita-soma-i-love-you-ciriaco-sayoc/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-03",
              "run_id": "run_0c5141fff335",
              "run_label": "SoMa Mahal Kita, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d0929d066cff",
              "venue_id": "venue_yerba_buena_center",
              "title": "We Rooted in Flight",
              "event_time": "2026-10-03",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-03",
              "event_date": "2026-10-03",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public artwork inviting passerbyers to join in the journey of collective flight",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/we-fly-for-a-liberated-we-we-rooted-in-flight/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-03",
              "run_id": "run_1d34139aedcf",
              "run_label": "We Rooted in Flight, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1893a3a5aa0d",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-10-03T14:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-10-03T14:00:00",
              "event_date": "2026-10-03",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-10-03",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_86fee4721d19",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-10-03T18:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-10-03T18:00:00",
              "event_date": "2026-10-03",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-10-03",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 2,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_9666b0311053",
              "venue_id": "venue_biscuits__blues",
              "title": "Tony Lindsay and Future Perfect Band",
              "event_time": "2026-10-03T18:30:00",
              "venue_name": "Biscuits & Blues",
              "event_start": "2026-10-03T18:30:00",
              "event_date": "2026-10-03",
              "venue_address": "401 Mason St, San Francisco, CA 94102",
              "description": "11-time Grammy-winning vocalist Tony Lindsay, longtime frontman for Santana, brings an evening of soul, R&B, and classic grooves.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "",
              "url": "https://biscuitsandblues.com",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_biscuits__blues",
                  "source_name": "Biscuits & Blues",
                  "fetched_at": "2026-08-31T16:25:33.031111Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_biscuits__blues|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_0056e7f79164",
              "venue_id": "venue_stay_gold_deli",
              "title": "Phazed Out / Into Dust / Drop Step",
              "event_time": "2026-10-03T19:00:00",
              "venue_name": "Stay Gold Deli",
              "event_start": "2026-10-03T19:00:00",
              "event_date": "2026-10-03",
              "venue_address": "2635 San Pablo Ave, Oakland, CA 94612",
              "description": "Hardcore punk show featuring Phazed Out, Kill 'Em All, Into Dust, Drop Step, and All Hope Lost. All ages.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10",
              "url": "http://www.foopee.com/punk/the-list/by-club/Stay_Gold_Deli.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stay_gold_deli",
                  "source_name": "Stay Gold Deli",
                  "fetched_at": "2026-08-31T16:43:30.435878Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_stay_gold_deli|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_9c23fb33cbdd",
              "venue_id": "venue_white_horse",
              "title": "Butch Fest",
              "event_time": "2026-10-03T18:00:00",
              "venue_name": "White Horse Inn",
              "event_start": "2026-10-03T18:00:00",
              "event_date": "2026-10-03",
              "venue_address": "6551 Telegraph Ave, Oakland, CA 94609",
              "description": "A community celebration organized by Shitty Little Theatre Productions honoring butch identity and culture.",
              "event_types": [
                "theater"
              ],
              "price_info": "$12",
              "url": "https://www.eventbrite.com/e/butch-fest-tickets",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_white_horse",
                  "source_name": "White Horse Inn",
                  "fetched_at": "2026-08-31T17:48:56.702708Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_white_horse|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_7c650d9c3199",
              "venue_id": "venue_great_star_theater",
              "title": "Dee Coco Johnson: The Cover Story",
              "event_time": "October 3, 2026",
              "venue_name": "Great Star Theater",
              "event_start": "2026-10-03",
              "event_date": "2026-10-03",
              "venue_address": "636 Jackson Street, San Francisco, CA 94133",
              "description": "Dee Coco Johnson live in concert bringing you an exciting array of the music you love. This is an energetic show with singers, dancers and all the glitz, glamour of a Broadway show. Don’t miss out it will be epic!",
              "event_types": [
                "live_music",
                "rnb_soul_funk",
                "dance"
              ],
              "price_info": "",
              "url": "http://deecoco.eventbrite.com/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_great_star_theater",
                  "source_name": "Great Star Theater",
                  "fetched_at": "2026-08-31T18:08:20.593452Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_great_star_theater|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_323b9d5e107b",
              "venue_id": "venue_tupelo",
              "title": "DJ Kevey Kev & Black Diamond",
              "event_time": "Saturday October 3rd 9:00PM - 1:30AM",
              "venue_name": "Tupelo",
              "event_start": "2026-10-03T21:00:00",
              "event_date": "2026-10-03",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "Funky Grooves and booty shaking tunes from some of San Francisco’s sickest musicians. DJ Kevey Kev at 9, BD at 10. $5 cover",
              "event_types": [
                "dj_party",
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$5 cover",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_209510f54502",
              "venue_id": "venue_rooster_t_feathers",
              "title": "Ginny Hogan",
              "event_time": "2026-10-03 2026-10-03T19:00:00",
              "venue_name": "Rooster T. Feathers",
              "event_start": "2026-10-03",
              "event_date": "2026-10-03",
              "venue_address": "157 W El Camino Real, Sunnyvale, CA 94087",
              "description": "Stand-up comedy show featuring Ginny Hogan with Marcus Howard and Albert Lin.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Price not found in the specific listing.",
              "url": "https://rooster-t-feathers.seatengine-sites.com/events/135108",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rooster_t_feathers",
                  "source_name": "Rooster T. Feathers",
                  "fetched_at": "2026-08-31T18:20:03.865483Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rooster_t_feathers|2026-10-03",
              "run_id": "run_6dace2035fc5",
              "run_label": "Ginny Hogan, Oct 2 – Oct 3",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_2235e9064f89",
              "venue_id": "venue_city_lights_theater",
              "title": "Eureka Day",
              "event_time": "2026-10-03T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-10-03T19:30:00",
              "event_date": "2026-10-03",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "Sharp comedy by Jonathan Spector about a progressive Berkeley private school whose board is thrown into conflict during a mumps outbreak. Runs September 24 through October 18, 2026.",
              "event_types": [
                "theater"
              ],
              "price_info": "Single tickets go on sale June 1",
              "url": "https://cltc.org/event/eureka-day/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-09-02T10:09:11.201902Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-10-03",
              "run_id": "run_4a0cceaa9027",
              "run_label": "Eureka Day, Sep 24 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_967a3b3400e8",
              "venue_id": "venue_cafe_zoe_pizza_guy",
              "title": "Live Music by Receita de Samba",
              "event_time": "2026-10-03T01:00:00",
              "venue_name": "Cafe Zoe",
              "event_start": "2026-10-03T01:00:00",
              "event_date": "2026-10-03",
              "venue_address": "1929 Menalto Ave, Menlo Park, CA 94025",
              "description": "Brazilian jazz performance at Neighborhood Pizza Guy & Cafe Zoe.",
              "event_types": [
                "live_music",
                "jazz",
                "latin_world"
              ],
              "price_info": "",
              "url": "https://neighborhood.pizza/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cafe_zoe_pizza_guy",
                  "source_name": "Cafe Zoe",
                  "fetched_at": "2026-09-02T10:14:27.017935Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cafe_zoe_pizza_guy|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_1804b2c30f61",
              "venue_id": "venue_f8",
              "title": "Defend Our Beauty",
              "event_time": "2026-10-03T21:00:00",
              "venue_name": "F8",
              "event_start": "2026-10-03T21:00:00",
              "event_date": "2026-10-03",
              "venue_address": "1192 Folsom St, San Francisco, CA 94103",
              "description": "Club night featuring Mozhgan, Amino, Christopher Foor, The Baptist, M66, Xolo, Adri, Prerogative, and Ross Milam.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10 - $20",
              "url": "https://ra.co/events/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_f8",
                  "source_name": "F8",
                  "fetched_at": "2026-09-02T10:39:00.610887Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_f8|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_882994dfee85",
              "venue_id": "venue_the_midway",
              "title": "Bolo the DJ",
              "event_time": "10/03/2026 12:00 AM",
              "venue_name": "The Midway",
              "event_start": "2026-10-03T00:00:00",
              "event_date": "2026-10-03",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "SVN WEST ∙ ROOFTOP ∙ OUTDOORS",
              "event_types": [
                "dj_party"
              ],
              "price_info": "TICKETS",
              "url": "https://wl.seetickets.us/event/bolo-the-dj/700225?afflky=NonPlusUltra&utm_source=themidway&utm_medium=venuewebsite",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-09-02T11:30:22.920988Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0a1bea498bf7",
              "venue_id": "venue_the_midway",
              "title": "Global Connect",
              "event_time": "10/03/2026 2:00 PM",
              "venue_name": "The Midway",
              "event_start": "2026-10-03T14:00:00",
              "event_date": "2026-10-03",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "TERRACE ∙ OUTDOORS",
              "event_types": [
                "dj_party"
              ],
              "price_info": "TICKETS",
              "url": "https://www.tixr.com/groups/midwaysf/events/global-connect-ft-j-espinosa-double-b-more-205404",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-09-02T11:30:22.920988Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_69b469349d3a",
              "venue_id": "venue_the_midway",
              "title": "Day Dream",
              "event_time": "10/03/2026 2:00 PM",
              "venue_name": "The Midway",
              "event_start": "2026-10-03T14:00:00",
              "event_date": "2026-10-03",
              "venue_address": "900 Marin St, San Francisco, CA 94124",
              "description": "DAY PARTY ∙ 620 JONES ∙ MUSIC ∙ DJ",
              "event_types": [
                "dj_party"
              ],
              "price_info": "TICKETS",
              "url": "https://www.tixr.com/groups/midwaysf/events/local-governance-presents-day-dream-204620",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_midway",
                  "source_name": "The Midway",
                  "fetched_at": "2026-09-02T11:30:22.920988Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_midway|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5299d7a91ff6",
              "venue_id": "venue_cow_palace",
              "title": "Women of Rodeo",
              "event_time": "2026-10-03T17:00:00",
              "venue_name": "Cow Palace",
              "event_start": "2026-10-03T17:00:00",
              "event_date": "2026-10-03",
              "venue_address": "2600 Geneva Ave, Daly City, CA 94014",
              "description": "This dedicated all-women rodeo competition celebrates the skill and athleticism of cowgirls competing in western disciplines like barrel racing and breakaway roping. Spectators can enjoy high-energy arena action honoring the vital role of women in rodeo history and sports.",
              "event_types": [
                "sports"
              ],
              "price_info": "Not specified",
              "url": "https://www.cowpalace.com/event/women-of-rodeo/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cow_palace",
                  "source_name": "Cow Palace",
                  "fetched_at": "2026-09-02T11:32:56.966259Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cow_palace|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_37e79dd8d83a",
              "venue_id": "venue_madrone_art_bar",
              "title": "Madrone x Gamescape: Monthly Game Night",
              "event_time": "October 3 @ 4:00 pm - 7:00 pm",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-10-03T16:00:00",
              "event_date": "2026-10-03",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Join us for our monthly Game Night with Gamescape! 🎲♟️ Come solo or bring friends and choose from a mix of party games, strategy games, chess, puzzles, and more. The Gamescape crew will be on hand to help you find a game and get started. Free, 21+, and outside food is welcome! 1st Saturdays of [&hellip;]",
              "event_types": [
                "sports"
              ],
              "price_info": "Free",
              "url": "https://madroneartbar.com/event/madrone-x-gamescape-monthly-game-night/2026-10-03/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_281b80ec789b",
              "venue_id": "venue_madrone_art_bar",
              "title": "Pop Life",
              "event_time": "October 3 @ 9:00 pm - 1:30 am",
              "venue_name": "Madrone Art Bar",
              "event_start": "2026-10-03T21:00:00",
              "event_date": "2026-10-03",
              "venue_address": "500 Divisadero Street, San Francisco, CA 94117",
              "description": "Have fun with your friends at POP LIFE - the music video party. Every first Saturday of the month! Disco, Soul, Top 40 Pop Hits, Party Anthems, Hip-Hop, One Hit Wonders, Guilty Pleasures, and more $10 at the door / 9pm-1:45am / 21+ / no dress code, dress how ya like!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$10 at the door",
              "url": "https://madroneartbar.com/event/the-pr-mj-experience-2026-02-07-2026-07-04-2026-10-03/2026-10-03/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_madrone_art_bar",
                  "source_name": "Madrone Art Bar",
                  "fetched_at": "2026-09-03T10:11:03.794683Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_madrone_art_bar|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0f403f889174",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Marcus Shelby",
              "event_time": "Saturday, October 3, 2026 @ 7pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-10-03T19:00:00",
              "event_date": "2026-10-03",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Saturday, October 3, 2026 @ 7pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $45 per show",
              "url": "https://keysjazzbistro.com/event/marcus-shelby-quartet/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_737d352ec074",
              "venue_id": "venue_fox_theatre_oak",
              "title": "HASAN HATES RONNY | RONNY HATES HASAN",
              "event_time": "October 3, 2026 9:00pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-10-03T21:00:00",
              "event_date": "2026-10-03",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "4th Show Added By Popular Demand! LIVE SPECIAL TAPING - ft. Hasan Minhaj and Ronny Chieng",
              "event_types": [
                "comedy"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thefoxoakland.com/events/hasan-minhaj-ronny-chieng-261003-late",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-09-03T11:12:55.502637Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cbeb277abb22",
              "venue_id": "venue_the_monarch",
              "title": "NotLö",
              "event_time": "3 October 2026 9:00 PM",
              "venue_name": "The Monarch",
              "event_start": "2026-10-03T21:00:00",
              "event_date": "2026-10-03",
              "venue_address": "101 6th St, San Francisco, CA 94103",
              "description": "Bae Area, we are so excited to cultivate an immersive dancefloor for our queer fairy dubstep community.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "Buy Ticket",
              "url": "https://www.eventbrite.com/e/bass-n-babes-presents-notlo-tickets-1997594793802",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monarch",
                  "source_name": "The Monarch",
                  "fetched_at": "2026-09-03T13:00:26.245791Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monarch|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0c6fee0695ec",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-03",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-03",
              "event_date": "2026-10-03",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "San Francisco Playhouse. A beloved puppet takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "Tickets On Sale",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-09-04T10:15:07.852694Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-03",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b93b2b042e6c",
              "venue_id": "venue_artists_television_access",
              "title": "Incredibly Strange Music",
              "event_time": "2026-10-03T20:00:00",
              "venue_name": "ATA",
              "event_start": "2026-10-03T20:00:00",
              "event_date": "2026-10-03",
              "venue_address": "992 Valencia St, San Francisco, CA 94110",
              "description": "A program of unusual music videos and anomalous musical footage hosted in person by beatnik remixer 99 Hooker presenting his real-time media delirium Avatar Pit, alongside vintage footage of Louis Prima & Keely Smith, Liberace, Spike Jones, The Residents, and The Animals.",
              "event_types": [
                "film"
              ],
              "price_info": "$12",
              "url": "http://www.othercinema.com/calendar/index.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_artists_television_access",
                  "source_name": "ATA",
                  "fetched_at": "2026-09-04T10:17:33.463128Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_artists_television_access|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_4dfd207247c6",
              "venue_id": "venue_belle_cora",
              "title": "Hipsteria",
              "event_time": "2026-10-03T18:00:00",
              "venue_name": "Belle Cora",
              "event_start": "2026-10-03T18:00:00",
              "event_date": "2026-10-03",
              "venue_address": "565 Green St, San Francisco, CA 94133",
              "description": "Hipsteria brings its lively blend of jazz, soul, swing, and party music to Belle Cora. Featuring 'Tender Tim' on drums and vocals, drawing on a repertoire spanning jazz standards, blues, R&B, bossa nova, funk, and dance classics.",
              "event_types": [
                "live_music",
                "jazz",
                "rnb_soul_funk"
              ],
              "price_info": "Free",
              "url": "https://offbeatsf.com/event/hipsteria/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_belle_cora",
                  "source_name": "Belle Cora",
                  "fetched_at": "2026-09-04T10:27:58.918702Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_belle_cora|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_85151e5da770",
              "venue_id": "venue_aura_kitchen_sj",
              "title": "Markus Schulz",
              "event_time": "Sat, Oct 3 •  9:30 PM",
              "venue_name": "Aura Kitchen + Bar",
              "event_start": "2026-10-03T21:30:00",
              "event_date": "2026-10-03",
              "venue_address": "389 S 1st St, San Jose, CA 95113",
              "description": "Markus is a three-time winner of DJ Times’ America’s Best DJ award and has performed at leading electronic music events including Tomorrowland, EDC, Ultra, Transmission, Creamfields, and Electronic Family . He is also known for his legendary open-to-close sets at venues including Space Miami, Avalon Los Angeles, Stereo Montreal, Amnesia Ibiza, and Ministry of Sound.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "From $28.52",
              "url": "https://www.eventbrite.com/e/markus-schulz-live-in-san-jose-tickets-1995410151478?aff=ebdssbdestsearch",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_eventbrite_sj",
                  "source_name": "Eventbrite SJ",
                  "fetched_at": "2026-09-04T10:29:52.660454Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_aura_kitchen_sj|2026-10-03",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            }
          ]
        },
        "2026-10-04": {
          "date": "2026-10-04",
          "updated_at": "2026-09-04T10:15:24.587353Z",
          "events": [
            {
              "event_id": "evt_b0a01ed373af",
              "venue_id": "venue_masonic_hall",
              "title": "Bilmuri - Kinda Hard Tour",
              "event_time": "Oct 4 2026 7pm",
              "venue_name": "Masonic Hall",
              "event_start": "2026-10-04T19:00:00",
              "event_date": "2026-10-04",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "Genre-blurring alternative project Bilmuri, led by Johnny Franck, brings his high-energy \"Kinda Hard Tour\" to the Masonic Hall. The show features a unique blend of post-hardcore, pop, and country elements for an unforgettable live experience.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Check website for ticket prices",
              "url": "https://www.ticketmaster.com/bilmuri-kinda-hard-tour-tickets-san-francisco-california-10-04-2026/event/1C006095B5B82A9D",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-04-13T07:12:45.598271Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_masonic_hall|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a2895d5e30fb",
              "venue_id": "venue_the_ritz",
              "title": "HAMMERFALL + EVERGREY + ELVENKING",
              "event_time": "2026-10-04T19:00:23-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-10-04T19:00:23",
              "event_date": "2026-10-04",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "A powerful night of heavy metal featuring the melodic and symphonic sounds of Hammerfall, Evergrey, and Elvenking. This triple-bill offers a showcase of technical mastery and epic storytelling within the power metal genre.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$30 Advance – $35 Day-of-Show",
              "url": "https://www.ticketweb.com/event/hammerfall-evergrey-elvenking-the-ritz-tickets/14831803",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-04-13T05:23:07.709302Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_ritz|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0ef5f5b89f46",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "Acid Mothers Temple",
              "event_time": "Sunday October 4 2026 7:30PM doors -- music at 8 :00PM",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-10-04T19:30:00",
              "event_date": "2026-10-04",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "Sunday October 4 2026\n  7:30PM doors -- music at 8:00PM\n  •••  21 AND OVER\n$22 in advance / $25 at the door\n$27.51 in advance [22 face value +5.51 service fee]\nAcid Mothers Temple \n  featuring Cotton Casino\n Psychedelic rock · space rock\nMagick Potion \n acid rock\nThe Green Door \n alt rock\n Krisa Cupcake \n spinning '60s and '70s international psych / rock",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$22/$25",
              "url": "http://www.bottomofthehill.com/20261004.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-05-03T11:09:54.201713Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b987646c14a1",
              "venue_id": "venue_the_chapel",
              "title": "Rum Jungle",
              "event_time": "Sun Oct 4 2026 8:00PM",
              "venue_name": "The Chapel",
              "event_start": "2026-10-04T20:00:00",
              "event_date": "2026-10-04",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "Australian surf rock and indie outfit Rum Jungle headline The Chapel with special guests Trestles.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$23.00-$28.00",
              "url": "https://wl.seetickets.us/event/rum-jungle/689221?afflky=TheChapel",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-05-13T10:22:43.984937Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_chapel|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3c21df357c6e",
              "venue_id": "venue_the_uc_theatre",
              "title": "The Green - TITLES Tour 2026",
              "event_time": "Oct 04 - Show: 8:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-10-04T20:00:00",
              "event_date": "2026-10-04",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "For over 15 years, The Green has been a cornerstone of the reggae music scene, seamlessly blending island roots with global appeal. Based in Hawaii, the band has become one of the most beloved and influential acts to emerge from the islands, pioneering U.S. mainland tours and sharing stages with reggae legends like Rebelution, Iration, SOJA, and Jamaica’s own Damian Marley. Their widespread acclaim caught the attention of Grammy-winning superstar Bruno Mars, who invited them to open for his sold-out shows at Honolulu’s Blaisdell Arena in 2014 and Hawaii’s iconic Aloha Stadium in 2018. With themes of family, resilience, and unity woven into their music, The Green has cultivated a devoted global fanbase. Classics like \"All I Need,\" \"Love I,\" and \"Wake Up\" continue to resonate with long-time listeners, while collaborations with artists such as J Boog on tracks like \"Feelings,\" \"Never Give Up,\" and \"Fire up Di Roses\" draw in new audiences. Their recent single,Day by Day, featuring fellow Hawaii artist Kolohe Kai, celebrates the Aloha spirit and furthers their mission of spreading positivity.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "BUY TICKETS $32.50 + FEES",
              "url": "https://www.theuctheatre.org/shows/the-green-04-oct",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-05-17T10:24:27.652407Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_536161320c00",
              "venue_id": "venue_california_theatre",
              "title": "The New World – Symphony San Jose",
              "event_time": "2026-10-04T14:30:00",
              "venue_name": "California Theatre",
              "event_start": "2026-10-04T14:30:00",
              "event_date": "2026-10-04",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "Celebrate 250 years of the American spirit with music that reflects the nation's past, present, and promise. Aaron Copland's Billy the Kid has become synonymous with the American West. Pianist Joyce Yang delivers the Bay-area premiere of Jonathan Leshnoff's Rhapsody on America. Antonín Dvořák's greatest work, his New World Symphony, remains a profound reflection of cultural identity, hope, and discovery.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "$35 - $125",
              "url": "https://www.symphonysanjose.org/the-new-world/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_california_theatre",
                  "source_name": "California Theatre",
                  "fetched_at": "2026-05-19T13:44:15.885509Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_symphony_san_jose",
                  "source_name": "Symphony San Jose",
                  "fetched_at": "2026-05-28T22:02:03.422774Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_california_theatre|2026-10-04",
              "run_id": "run_f857517e558c",
              "run_label": "The New World – Symphony San Jose, Oct 3 – Oct 4",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cda4a1f74c3b",
              "venue_id": "venue_ivy_room",
              "title": "Street Walking Cheetahs & Guests",
              "event_time": "Sunday Oct 4 3:00 pm",
              "venue_name": "Ivy Room",
              "event_start": "2026-10-04T15:00:00",
              "event_date": "2026-10-04",
              "venue_address": "860 San Pablo Ave, Albany, CA 94706",
              "description": "High-energy Los Angeles punk rock band The Street Walking Cheetahs headlines an action-packed afternoon show at the Ivy Room. They will be joined by local favorites SF Rejects, The Seagulls, and Screaming Bloody Marys.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "PURCHASE TICKETS",
              "url": "https://www.ivyroom.com/#/events/184396",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ivy_room",
                  "source_name": "Ivy Room",
                  "fetched_at": "2026-05-28T18:57:57.118250Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_ivy_room|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_41b34d5689e0",
              "venue_id": "venue_the_fillmore",
              "title": "My Moring Jacket",
              "event_time": "oct 4 8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-10-04T20:00:00",
              "event_date": "2026-10-04",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "The acclaimed American rock band brings their expansive, eclectic sound and legendary live performance to the stage [3.1.5]. Expect a night of genre-blending rock, indie, and psychedelic tunes.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/my-morning-jacket-seven-7-show-san-francisco-california-10-03-2026/event/1C00647DAA0A87C3",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T21:39:26.952332Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-06-05T10:13:38.208208Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8b7affc95735",
              "venue_id": "venue_shoreline_amphitheatre",
              "title": "Kehlani World Tour",
              "event_time": "oct 4 6:30pm",
              "venue_name": "Shoreline Amphitheatre",
              "event_start": "2026-10-04T18:30:00",
              "event_date": "2026-10-04",
              "venue_address": "1 Amphitheatre Pkwy, Mountain View, CA 94043",
              "description": "R&B sensation Kehlani brings 'THE KEHLANI WORLD TOUR' to the Shoreline Amphitheatre to support their self-titled album. The show features an impressive lineup of supporting acts, including Durand Bernarr, Isaia Huron, TheARTI$t, and WASEEL.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/the-kehlani-world-tour-north-america-mountain-view-california-10-04-2026/event/1C0064B4C4777710",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shoreline_amphitheatre",
                  "source_name": "Shoreline Amphitheatre",
                  "fetched_at": "2026-06-04T12:24:46.770694Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-10T10:33:42.275715Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_shoreline_amphitheatre|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5a77dd8edf4d",
              "venue_id": "venue_bing_concert_hall",
              "title": "Sounds of California",
              "event_time": "2026-10-04 2:30 PM",
              "venue_name": "Bing Hall",
              "event_start": "2026-10-04T14:30:00",
              "event_date": "2026-10-04",
              "venue_address": "327 Lasuen St, Stanford, CA 94305",
              "description": "Longtime friends Simone Porter and Blake Pouliot come together for a program of works for the violin, all by composers with California connections. Accompanied by Hsin-I Huang on piano.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$16 - $81",
              "url": "https://live.stanford.edu/events/26-27season/bing-concert-hall/sounds-of-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-06-28T10:01:31.235430Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "v_bing_concert_hall",
                  "source_name": "Bing Hall",
                  "fetched_at": "2026-07-12T10:15:49.517189Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_bing_concert_hall|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_044157770af4",
              "venue_id": "venue_thee_stork_club",
              "title": "Shearling, Towhead",
              "event_time": "oct 4 7pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-10-04T19:00:00",
              "event_date": "2026-10-04",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "This show is 21+ Serving as a spiritual continuation of the now-defunct Sprain, Shearling exhibits the reunion of a now decade-old collaborative force between guitarists Alexander Kent and Sylvie Simmmons. A subsequent recruiting of percussionist Andrew Chanover, bassist Wesley Nelson, and Keyboardist Elizabeth Carver filled out their orchestrally-minded roster. The band was mostly quiet for its first year of existence, avoiding live performances to instead focus on their brazen debut ‘ Motherfucker, I am Both: “Amen” and \"Hallelujah\"…’ The record retains Sprain’s characteristic commitment to intensity, further mutated through a newfound lens of collagist approach. Featuring only a single, hour-plus-long song, Motherfucker is a demanding exhibition of uncompromising ethos. Shearling’s aggressive live performances and meticulous recordings demonstrate an ambition, audacity, and emotional vulnerability that few contemporary bands can parallel. \"Shearling present a work that could grow to be one of the great cult albums of alternative music.\" - Beats Per Minute \"Calling Motherfucker both a wildly bold and ambitious debut would still be an understatement\" - New Noise Magazine https://shearlingofficial.bandcamp.com/album/motherfucker-i-am-both-amen-and-hallelujah",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15/$18",
              "url": "https://wl.seetickets.us/event/shearling-fka-sprain/691227?afflky=TheeStorkClub",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-18T11:36:11.622544Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-07-22T13:17:19.589171Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2b9e605a82c1",
              "venue_id": "venue_cornerstone",
              "title": "In Her Own Words, Every Avenue, Felicity",
              "event_time": "oct 4 7:30pm",
              "venue_name": "Cornerstone",
              "event_start": "2026-10-04T19:30:00",
              "event_date": "2026-10-04",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Cornerstone presents a co-headlining pop-punk and alternative show featuring In Her Own Words and Every Avenue.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$31.90",
              "url": "https://www.prekindle.com/event/in-her-own-words-x-every-avenue-tickets-berkeley",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-24T10:42:11.416886Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-07-29T13:11:21.085840Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cornerstone|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_021a5a636944",
              "venue_id": "venue_san_jose_civic",
              "title": "Gaurav Kapoor Live",
              "event_time": "Oct 4, 2026 @ 5:00pm",
              "venue_name": "San Jose Civic",
              "event_start": "2026-10-04T17:00:00",
              "event_date": "2026-10-04",
              "venue_address": "135 W San Carlos St, San Jose, CA 95113",
              "description": "Gaurav Kapoor is taking his comedy global with his USA and Canada tour! Known for his sharp observational humor and effortless storytelling, he has amassed over 1.2M Instagram followers and 90 mil…",
              "event_types": [
                "comedy"
              ],
              "price_info": "",
              "url": "https://events.timely.fun/jc0x91t0/event/78260389",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_san_jose_civic",
                  "source_name": "San Jose Civic",
                  "fetched_at": "2026-08-09T12:20:24.263699Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-08-12T10:48:24.659205Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_san_jose_civic|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ccb0c763434a",
              "venue_id": "venue_castro_theater",
              "title": "OCTO OCTA",
              "event_time": "Sunday, October 04, 2026\nDoors: 5:30 pm | Show: 6:00 pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-10-04T18:00:00",
              "event_date": "2026-10-04",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.",
              "event_types": [
                "dj_party"
              ],
              "price_info": "$35+",
              "url": "https://thecastro.com/events/octo-octa-261004",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-08-12T11:02:23.281020Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "s_19hz",
                  "source_name": "19hz",
                  "fetched_at": "2026-08-22T21:21:24.242225Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_castro_theater|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1a80dd52ff82",
              "venue_id": "venue_palace_of_fine_arts",
              "title": "Yasmin Levy, \"One More Night\"",
              "event_time": "2026-10-04T20:00:00",
              "venue_name": "Palace of Fine Arts",
              "event_start": "2026-10-04T20:00:00",
              "event_date": "2026-10-04",
              "venue_address": "3601 Lyon St, San Francisco, CA 94123",
              "description": "Her concerts are more than performances.. they are intimate journeys through memory, longing, love and resilience. With every song, Yasmin opens a space of raw emotion and timeless beauty, inviting the audience to feel, remember and connect beyond language and borders. Joined by her exceptional ensemble, Yasmin Levy brings to the stage an evening of passion, vulnerability and unforgettable musical storytelling.",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "From $64.48",
              "url": "https://palaceoffineartstheatre.com/events/yasmin-levy",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_palace_of_fine_arts",
                  "source_name": "Palace of Fine Arts",
                  "fetched_at": "2026-08-12T11:14:42.836547Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_eventbrite_sf",
                  "source_name": "Eventbrite SF",
                  "fetched_at": "2026-08-13T10:57:37.163184Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_palace_of_fine_arts|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_967c3ab66a4a",
              "venue_id": "venue_great_american_music_hall",
              "title": "Groundation, The Quasi Kings",
              "event_time": "oct 4 8pm",
              "venue_name": "Great American",
              "event_start": "2026-10-04T20:00:00",
              "event_date": "2026-10-04",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "all ages",
              "event_types": [
                "live_music",
                "latin_world"
              ],
              "price_info": "$30/$35",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_27ae94161673",
              "venue_id": "venue_rickshaw_stop",
              "title": "Ecca Vandal, Speed Of Light",
              "event_time": "oct 4 9pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-10-04T21:00:00",
              "event_date": "2026-10-04",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "all ages",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$35.25",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_fdb6e7bea4c0",
              "venue_id": "venue_brick_and_mortar",
              "title": "Hotel Fictiion",
              "event_time": "oct 4 8pm",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-10-04T20:00:00",
              "event_date": "2026-10-04",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Event Details Brick & Mortar Music Hall Presents RC AVENUE October 4, 2026 8:00 pm PDT (Doors: 7:00 pm ) Brick and Mortar Music Hall , 1710 Mission Street , San Francisco, CA ( map ) $27.58 Buy Tickets + Google Calendar RC AVENUE RC AVENUE is a Filipino-American singer, songwriter, and producer bringing a modern edge to the sounds of 70's funk, disco, soul and pop. Inspired by artists like Bruno Mars, Stevie Wonder and Michael Jackon, his infectious records have earned over 32 million streams worldwide, while his high-energy live shows have built a growing audience across North America. JUST ANNOUNCED Geordie Kieffer December 06, 2026 RC AVENUE October 04, 2026 Dani Offline — Lover's Discourse Live October 13, 2026 Denise Julia November 14, 2026 AZ Chike November 05, 2026 Follow us on Instagram Join the Brick & Mortar Newsletter",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$23.97",
              "url": "https://www.brickandmortarmusic.com/tm-event/rc-avenue/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-09-03T11:13:51.689688Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_e3c874ea06e8",
              "venue_id": "venue_hardly_strictly_bluegrass",
              "title": "AJ Lee and Blue Summit",
              "event_time": "oct 4",
              "venue_name": "Hardly Strictly Bluegrass",
              "event_start": "2026-10-04",
              "event_date": "2026-10-04",
              "venue_address": "Golden Gate Park, San Francisco, CA 94118",
              "description": "all ages",
              "event_types": [
                "live_music",
                "folk",
                "latin_world",
                "festival"
              ],
              "price_info": "free",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_hardly_strictly_bluegrass|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_2761c8d87f03",
              "venue_id": "venue_kilowatt",
              "title": "Steel Beams",
              "event_time": "oct 4 8pm",
              "venue_name": "Kilowatt",
              "event_start": "2026-10-04T20:00:00",
              "event_date": "2026-10-04",
              "venue_address": "3160 16th St, San Francisco, CA 94103",
              "description": "21+",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$22.46",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_kilowatt|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_feb4849f10f1",
              "venue_id": "venue_z_space",
              "title": "King Lear",
              "event_time": "October 4 @ 2:00 pm - 5:00 pm",
              "venue_name": "Z Space",
              "event_start": "2026-10-04T14:00:00",
              "event_date": "2026-10-04",
              "venue_address": "450 Florida St, San Francisco, CA 94110",
              "description": "Directed by Michael Socrates Moran Music composed by Paul Dresher Oakland Theater Project and New Performance Traditions are thrilled to present their most ambitious co-production to date: a bold, music-infused […]",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://dresherensemble.org/event/king-lear-by-william-shakespeare/2026-10-04/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_z_space",
                  "source_name": "Z Space",
                  "fetched_at": "2026-08-17T14:41:50.422468Z",
                  "strategy_used": "EXTRACT"
                },
                {
                  "source_id": "s_paul_dresher_ensemble",
                  "source_name": "Paul Dresher Ensemble",
                  "fetched_at": "2026-08-26T10:26:36.842099Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_z_space|2026-10-04",
              "run_id": "run_e3a81a6d4f91",
              "run_label": "King Lear, Sep 25 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_eea487d919b8",
              "venue_id": "venue_the_riptide",
              "title": "Nashville Honeymoon",
              "event_time": "Sunday, October 4 7:30 PM - 10:30 PM",
              "venue_name": "The Riptide",
              "event_start": "2026-10-04T19:30:00",
              "event_date": "2026-10-04",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "NASHVILLE HONEYMOON FEATURING JOE GOLDMARK \n\nNashville Honeymoon was born in Berkeley and nurtured in live music venues on both sides of the Bay, Nashville Honeymoon is a honkytonk band that plays their own special brand of California country.  Hank and Lynne started performing together almost accidentally - a happy accident, as it turns out, because it sparked a musical collaboration that has produced three albums and brought them to venues ranging from the iconic Ivy Room to San Francisco’s Great American Music Hall. \n\nJoe Goldmark, the pedal steel visionary, will be featured each month so that 1st Sunday vibe he has created at the Riptide keeps rolling along.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_88791785feba",
              "venue_id": "venue_mello_center",
              "title": "United Sounds of America",
              "event_time": "2026-10-04T14:00:00",
              "venue_name": "Henry J. Mello Center",
              "event_start": "2026-10-04T14:00:00",
              "event_date": "2026-10-04",
              "venue_address": "250 E Beach St, Watsonville, CA 95076",
              "description": "The Santa Cruz Symphony presents a concert celebrating the rich and diverse landscape of American orchestral music. Enjoy a dynamic evening highlighting iconic classics and contemporary American masterworks.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_santa_cruz_symphony",
                  "source_name": "Santa Cruz Symphony",
                  "fetched_at": "2026-08-22T11:06:19.948084Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_mello_center|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_ec3a6782c884",
              "venue_id": "venue_crepe_place",
              "title": "Grateful Sunday with Matt Hartle",
              "event_time": "2026-10-04",
              "venue_name": "The Crepe Place",
              "event_start": "2026-10-04T20:00:00",
              "event_date": "2026-10-04",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15",
              "url": "https://thecrepeplace.com/shows-list/sunday-march-16-6-9pm-in-the-garden-grateful-sundays-with-the-hartle-gold-band-10-at-the-door-bcmcw-smpmp-pjf4m-ez6xm-nchcm-nneap",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_afd7cb5cc231",
              "venue_id": "venue_act_theater",
              "title": "Alfred Hitchcock's North by Northwest",
              "event_time": "2026-10-04",
              "venue_name": "ACT Theater",
              "event_start": "2026-10-04",
              "event_date": "2026-10-04",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "\"I am thrilled, excited and perhaps a little apprehensive to bring the iconic North by Northwest home to the US! I just hope that American audiences will love it as much as our British audiences did. What I am not apprehensive about is bringing its message; one of nations coming together in peace and friendship to make the world a better place. I think we can all raise a glass to that! I am also itching to return to A.C.T. and San Francisco, a piece of my heart will always remain in California and I cannot wait to return to your beautiful theatre, vivid audience and magic state.\" —Emma Rice",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-08-22T13:54:28.481304Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_act_theater|2026-10-04",
              "run_id": "run_8f5d72a961cd",
              "run_label": "Alfred Hitchcock's North by Northwest, Sep 22 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_cae1845a3347",
              "venue_id": "venue_bayfront_theater",
              "title": "The Improvised Twilight Zone",
              "event_time": "2026-10-04",
              "venue_name": "BATS Bayfront Theater",
              "event_start": "2026-10-04",
              "event_date": "2026-10-04",
              "venue_address": "Fort Mason Center, 2 Marina Blvd, San Francisco, CA 94123",
              "description": "BATS Improv presents: The Improvised Twilight Zone",
              "event_types": [
                "comedy"
              ],
              "price_info": "Not specified",
              "url": "https://www.improv.org/shows",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bayfront_theater",
                  "source_name": "BATS Bayfront Theater",
                  "fetched_at": "2026-08-22T15:11:24.975133Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_bayfront_theater|2026-10-04",
              "run_id": "run_8082e94123ce",
              "run_label": "The Improvised Twilight Zone, Oct 3 – Oct 10",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7153161aa38f",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Love Notes",
              "event_time": "2026-10-04",
              "venue_name": "San Jose CPA",
              "event_start": "2026-10-04",
              "event_date": "2026-10-04",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-10-04",
              "run_id": "run_1ea648ade196",
              "run_label": "Love Notes, Aug 22 – Oct 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_716e69636c6a",
              "venue_id": "venue_bing_concert_hall",
              "title": "Simone Porter & Blake Pouliot",
              "event_time": "2026-10-04 2:30 PM",
              "venue_name": "Bing Hall",
              "event_start": "2026-10-04T14:30:00",
              "event_date": "2026-10-04",
              "venue_address": "327 Lasuen St, Stanford, CA 94305",
              "description": "Presented by Stanford Live - Classical",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://live.stanford.edu/events/26-27season/bing-concert-hall/sounds-of-california/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stanford_live",
                  "source_name": "Stanford Live",
                  "fetched_at": "2026-08-22T17:37:12.926625Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bing_concert_hall|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_b16f8967b1ad",
              "venue_id": "venue_bargetto_winery",
              "title": "Yoga!",
              "event_time": "10/04/2026 10:45 am - 11:45 am",
              "venue_name": "Bargetto Winery",
              "event_start": "2026-10-04T10:45:00",
              "event_date": "2026-10-04",
              "venue_address": "3535 N Main St, Soquel, CA 95073",
              "description": "Bargetto Winery Yoga with Alison Trybom Lucas. $25 includes yoga class and a glass of Bargetto wine after class! Please bring your own mats and props…some blocks will be available. All levels welcome. Class is 60 minutes and starts at 10:45am Limited to 20 guests. Reservations required. Online: Click Here Email: callen@bargetto.com Phone: 831-475-2258 press […]",
              "event_types": [
                "community"
              ],
              "price_info": "$25",
              "url": "https://bargetto.com/events2/yoga-840/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bargetto_winery",
                  "source_name": "Bargetto Winery",
                  "fetched_at": "2026-08-22T19:05:36.747276Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bargetto_winery|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b257ba81a1d3",
              "venue_id": "venue_park_hall_ben_lomond",
              "title": "The Addams Family",
              "event_time": "2026-10-04",
              "venue_name": "Park Hall",
              "event_start": "2026-10-04T20:00:00",
              "event_date": "2026-10-04",
              "venue_address": "9400 Mill St, Ben Lomond, CA 95005",
              "description": "The Addams Family theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://mctshows.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_park_hall_ben_lomond",
                  "source_name": "Park Hall",
                  "fetched_at": "2026-08-22T19:38:45.882590Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_park_hall_ben_lomond|2026-10-04",
              "run_id": "run_8d42d89c5c45",
              "run_label": "The Addams Family, Sep 18 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b2ce0f713a6c",
              "venue_id": "venue_park_hall_ben_lomond",
              "title": "Rumors",
              "event_time": "2026-10-04T14:00:00",
              "venue_name": "Park Hall",
              "event_start": "2026-10-04T14:00:00",
              "event_date": "2026-10-04",
              "venue_address": "9400 Mill St, Ben Lomond, CA 95005",
              "description": "A comedy by Neil Simon, directed by Marnae Taylor. Charley, the deputy mayor of New York, and his wife Myra Brock, on the evening of their tenth wedding anniversary, had an elegant dinner party which goes histrically wrong. Four couples arrive expecting a night of sophistication—only to discover the host has had a terrible mishap and his wife is missing. Desperate to cover up the scandal, they spin wilder and wilder stories, turning confusion into chaos as rumors fly faster than champagne corks. With a niche fit, a whiplash, mitigated jealousy, a recurring back spasm, comedy ensues. Brimming with razor-sharp wit, slapstick mishaps, and Simon's trademark charm, Rumors is a laugh-out-loud comedy that proves the truth may be the funniest thing of all.",
              "event_types": [
                "theater",
                "comedy"
              ],
              "price_info": "",
              "url": "https://mctshows.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_park_hall_ben_lomond",
                  "source_name": "Park Hall",
                  "fetched_at": "2026-08-22T19:38:45.882590Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_park_hall_ben_lomond|2026-10-04",
              "run_id": "run_b17f8875ebd5",
              "run_label": "Rumors, Sep 18 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a39cc8ccf5f6",
              "venue_id": "venue_new_conservatory_nctc",
              "title": "Little Shop of Horrors",
              "event_time": "2026-10-04",
              "venue_name": "New Conservatory (NCTC)",
              "event_start": "2026-10-04",
              "event_date": "2026-10-04",
              "venue_address": "25 Van Ness Ave, San Francisco, CA 94102",
              "description": "Book & Lyrics by Howard Ashman, Music by Alan Menken. Based on the film by Roger Corman, Screenplay by Charles Griffith. Directed by Ben Villegas Randle, Musical Direction by Jad Bernardo, Choreography by Leslie Waggoner",
              "event_types": [
                "theater",
                "live_music"
              ],
              "price_info": "",
              "url": "https://nctcsf.org/event/little-shop/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_new_conservatory_nctc",
                  "source_name": "New Conservatory (NCTC)",
                  "fetched_at": "2026-08-26T11:06:39.262369Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_new_conservatory_nctc|2026-10-04",
              "run_id": "run_5315ef200ae4",
              "run_label": "Little Shop of Horrors, Sep 12 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7c0fa841e236",
              "venue_id": "venue_guild_theatre",
              "title": "Hardly Strictly Out Of The Park: Kathleen Edwards",
              "event_time": "OCT\n04\n8:00 PM",
              "venue_name": "Guild Theatre",
              "event_start": "2026-10-04T20:00:00",
              "event_date": "2026-10-04",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "Hardly Strictly Out of the Park Kathleen Edwards GENRE: Singer-songwriter Spotify | Apple Music | Youtube | Website Acclaimed singer, songwriter and performer Kathleen Edwards returns with her highly anticipated new album, Billionaire, August 22 on Dualtone Records. Evoking her debut, Failer, the new 10-song album is full of Edwards’ trademark lyrical sharpness and unflinching observations and was produced by Jason Isbell and Gena Johnson. Celebrated as one of the forebears of modern alt-country and Americana music, Edwards is beloved by fans and fellow musicians, and praised by The New York Times for her, “droll, observant and unsparing tone that is all her own. In her best lines, Edwards has the conversational vernacular and emotional eloquence of a great short-story writer.” Since debuting in 2003, Edwards has released five albums, including 2020’s Total Freedom — her first after stepping away from music for almost a decade. Released to overwhelming acclaim with pieces at The New Yorker, The New York Times, Rolling Stone and more, Pitchfork called it, “a creative breakthrough, written solely for the thrill of discovery,” while Rolling Stone declared it as, “devastatingly great.” Most recently, Edwards released a covers EP featuring special guests Isbell, Bahamas and Daniel Tashian and including renditions of Isbell’s “Traveling Alone,” Bruce Springsteen’s “Human Touch,” The Flaming Lips’ “Feeling Yourself Disintegrate,” Tom Petty’s “Crawling Back To You” and more. She has been nominated for multiple JUNO and Americana Awards and, in 2012, was awarded the SOCAN Songwriting Prize. – Doors 7PM // Show 8PM General Admission is standing room only. Mezzanine is on the second floor, reserved and fully seated. For more information please contact ticketing@guildtheatre.com",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "",
              "url": "https://www.guildtheatre.com/shows/kathleen-edwards-04-oct",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-08-28T10:40:15.787828Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_guild_theatre|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f1eaf7053309",
              "venue_id": "venue_the_freight__salvage",
              "title": "Holly Near",
              "event_time": "2026-10-04T14:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-10-04T14:00:00",
              "event_date": "2026-10-04",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Folk music icon and social activist Holly Near performs an evening of heartfelt, empowering songs drawn from her celebrated decades-long career.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$54/$59\n$30 LIVESTREAM\n(INCLUDES ALL FEES)",
              "url": "https://secure.thefreight.org/15951/15952",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3c5974b73eda",
              "venue_id": "venue_sfjazz_lab",
              "title": "BLAQUE DYNAMITE",
              "event_time": "2026-10-04 6:00 PM",
              "venue_name": "SFJAZZ Lab",
              "event_start": "2026-10-04T18:00:00",
              "event_date": "2026-10-04",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "GRAMMY-nominated drummer, producer, and composer Blaque Dynamite has become one of the most dynamic and influential beat masters of his generation, celebrated for a style that merges explosive technical mastery with deep groove, humor, and boundless creativity. Born Mike Mitchell Jr. in Houston, Texas, he emerged as a prodigious talent at a young age, absorbing gospel, jazz, funk, and hip-hop into a singular musical language. His remarkable versatility quickly made him one of the most sought-after drummers in contemporary music. Blaque Dynamite’s résumé spans collaborations with some of the most important artists in modern jazz and beyond, including Erykah Badu, Herbie Hancock, Stanley Clarke, Kamasi Washington, Robert Glasper, and Christian Scott aTunde Adjuah. Equally comfortable anchoring intricate jazz ensembles or driving groove-heavy experimental projects, he has earned widespread acclaim for his improvisational brilliance, rhythmic innovation, and magnetic stage presence. In recent years, Blaque Dynamite has expanded his profile as a bandleader, producer, and multimedia artist, releasing projects that blur the boundaries between jazz fusion, beat culture, electronic music, and comedy-infused performance art. His latest work continues to push contemporary Black music into adventurous new territory, combining virtuosic musicianship with fearless experimentation and unmistakable personality.",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/blaque-dynamite/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_lab|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_96b871ae1f2c",
              "venue_id": "venue_sfjazz_miner",
              "title": "HIROMI: THE TRIO PROJECT",
              "event_time": "2026-10-04 7:00 PM",
              "venue_name": "SFJAZZ Auditorium",
              "event_start": "2026-10-04T19:00:00",
              "event_date": "2026-10-04",
              "venue_address": "201 Franklin St, San Francisco, CA 94102",
              "description": "with James Genus and Simon Phillips",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://www.sfjazz.org/tickets/productions/26-27/hiromi-the-trio-project/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_sfjazz",
                  "source_name": "SFJAZZ",
                  "fetched_at": "2026-08-28T13:44:11.768189Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sfjazz_miner|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_a9d889baadde",
              "venue_id": "venue_temescal_arts_center",
              "title": "Improvisation Workshop - First Tuesdays",
              "event_time": "2026-10-04T20:00:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-10-04T20:00:00",
              "event_date": "2026-10-04",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Improvisation is the key - hosted by Lewis Jordan. Open Workshop and Playground in free improvisation. Spontaneously Assembled Small Groups will collaborate. Come to listen, to be heard, to see, to move. Inviting musicians, poets, dancers, to a non-hierarchical setting to improvise together. Spontaneously composing or conducting, we'll be on a quest for fire.",
              "event_types": [
                "workshop",
                "experimental"
              ],
              "price_info": "Donations encouraged",
              "url": "https://www.temescalartcenter.org/tacmusic.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-08-28T14:09:19.773505Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-10-04",
              "run_id": "run_16a4ae4ccea6",
              "run_label": "Improvisation Workshop - First Tuesdays, Sep 1 – Dec 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9cbbaeff7e49",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-10-04",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-10-04",
              "event_date": "2026-10-04",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-10-04",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_436d6fa985cd",
              "venue_id": "venue_california_theatre",
              "title": "The New World",
              "event_time": "2026-10-04T19:30:00",
              "venue_name": "California Theatre",
              "event_start": "2026-10-04T19:30:00",
              "event_date": "2026-10-04",
              "venue_address": "345 S 1st St, San Jose, CA 95113",
              "description": "Symphony San Jose presents a program celebrating American musical heritage, headlined by Antonín Dvořák's Symphony No. 9 (\"From the New World\") at the California Theatre.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_symphony_san_jose",
                  "source_name": "Symphony San Jose",
                  "fetched_at": "2026-08-28T17:58:01.719952Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_california_theatre|2026-10-04",
              "run_id": "run_1e138670f9e1",
              "run_label": "The New World, Oct 3 – Oct 4",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_1493efec8364",
              "venue_id": "venue_the_pear_theatre",
              "title": "Private Lives",
              "event_time": "2026-10-04",
              "venue_name": "The Pear Theatre",
              "event_start": "2026-10-04",
              "event_date": "2026-10-04",
              "venue_address": "1110 La Avenida St, Mountain View, CA 94043",
              "description": "In this sparkling comedy of manners, two former lovers find themselves honeymooning with new spouses in adjoining rooms—only to discover that their passion for each other hasn't dimmed.",
              "event_types": [
                "theater"
              ],
              "price_info": "$46.00 - $48.00",
              "url": "https://www.thepear.org/whats-playing-now",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_pear_theatre",
                  "source_name": "The Pear Theatre",
                  "fetched_at": "2026-08-28T18:26:07.122240Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_the_pear_theatre|2026-10-04",
              "run_id": "run_d1a58de7893a",
              "run_label": "Private Lives, Sep 25 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2d1e721f9771",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Renée Fleming Sings Strauss",
              "event_time": "Sunday, Oct 4, 2026 | 2:00 pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-10-04T14:00:00",
              "event_date": "2026-10-04",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "Overview A delectable double dose of Richard Strauss, administered by two of his greatest living interpreters, soprano Renée Fleming and debuting guest conductor Santtu-Matias Rouvali. In the late-life cycle Four Last Songs, Strauss bids a tender farewell to his life in music. Along the way, he pays tribute to Pauline, his diva-soprano spouse, as well as his horn-playing father—radiant French horn solos grace each of the songs. Ein Heldenleben, the irony-infused symphonic poem that Strauss wrote in his mid-30s, is an impassioned portrait of human successes and failures, told with a flair for the dramatic.",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "LEARN MORE",
              "url": "https://www.sfsymphony.org/Buy-Tickets/2026-27/Renee-Fleming-Strauss",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-08-28T19:38:14.129031Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7cd94f7ed41a",
              "venue_id": "venue_davies_symphony_hall",
              "title": "Lang Lang in Recital",
              "event_time": "Sunday, Oct 4, 2026 | 7:30 pm",
              "venue_name": "Davies Symphony Hall",
              "event_start": "2026-10-04T19:30:00",
              "event_date": "2026-10-04",
              "venue_address": "201 Van Ness Ave, San Francisco, CA 94102",
              "description": "A cookie is a small piece of data (text file) that a website – when visited by a user – asks your browser to store on your device in order to remember information about you, such as your language preference or login information. Those cookies are set by us and called first-party cookies. We also use third-party cookies – which are cookies from a domain different than the domain of the website you are visiting – for our advertising and marketing efforts. More specifically, we use cookies and other tracking technologies for the following purposes:",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "",
              "url": "https://www.sfsymphony.org/Buy-Tickets/2026-27/Lang-Lang-Recital",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_davies_symphony_hall",
                  "source_name": "Davies Symphony Hall",
                  "fetched_at": "2026-08-28T19:38:14.129031Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_davies_symphony_hall|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_57f3353d0cdd",
              "venue_id": "venue_levis_stadium",
              "title": "DENVER BRONCOS VS. SAN FRANCISCO 49ERS",
              "event_time": "2026-10-04T13:25:00",
              "venue_name": "Levis Stadium",
              "event_start": "2026-10-04T13:25:00",
              "event_date": "2026-10-04",
              "venue_address": "4900 Marie P DeBartolo Way, Santa Clara, CA 95054",
              "description": "The San Francisco 49ers battle the Denver Broncos in an intense cross-conference NFL matchup at Levi's Stadium.",
              "event_types": [
                "sports"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://levisstadium.com/event/broncos-vs-49ers-week-4-2026/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_levis_stadium",
                  "source_name": "Levis Stadium",
                  "fetched_at": "2026-08-28T23:07:52.237656Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_levis_stadium|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_782ad1c9ee7b",
              "venue_id": "venue_rhythmix",
              "title": "The Locals: Opening Reception",
              "event_time": "2026-10-04T18:00:00",
              "venue_name": "Rhythmix",
              "event_start": "2026-10-04T18:00:00",
              "event_date": "2026-10-04",
              "venue_address": "2513 Blanding Ave, Alameda, CA 94501",
              "description": "Opening reception for \"The Locals\" exhibit at K Gallery. Exhibit dates listed as September 11 to October 25, 2026.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://www.rhythmix.org/upcoming-exhibits/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rhythmix",
                  "source_name": "Rhythmix",
                  "fetched_at": "2026-08-28T23:14:01.025318Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_rhythmix|2026-10-04",
              "run_id": "run_566a8f02098a",
              "run_label": "The Locals: Opening Reception, Sep 11 – Oct 25",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_ce60eb2f6ebb",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-10-04",
              "venue_name": "De Young",
              "event_start": "2026-10-04",
              "event_date": "2026-10-04",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-10-04",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_d5b9da4366fb",
              "venue_id": "venue_oakland_arena",
              "title": "Clasico de Mexico",
              "event_time": "Oct 04 / 2026",
              "venue_name": "Oakland Arena",
              "event_start": "2026-10-04",
              "event_date": "2026-10-04",
              "venue_address": "7000 Coliseum Way, Oakland, CA 94621",
              "description": "Copyright © 2026 Oakland Arena. Privacy Notice | Cookie Preferences | Your Privacy Choices | Ad Choices | Terms of Use | Accessibility / Site Map a carbon house experience",
              "event_types": [
                "sports"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.theoaklandarena.com/events/detail/clasico-de-mexico-chivas-de-guadalajara-vs-club-america",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_oakland_arena",
                  "source_name": "Oakland Arena",
                  "fetched_at": "2026-08-29T00:36:48.383706Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_oakland_arena|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9df7cb7b41a8",
              "venue_id": "venue_punch_line",
              "title": "S. F. COMEDY SHOWCASE",
              "event_time": "Oct 4, 2026 7:00 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-10-04T19:00:00",
              "event_date": "2026-10-04",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "This long-running weekly showcase at the Punch Line features a dynamic lineup of the San Francisco Bay Area's best up-and-coming and established stand-up comedians.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/s-f-comedy-showcase-san-francisco-california-10-04-2026/event/1C0064C9CF6D8B78",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_24562dab6acc",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "YAKOV SMIRNOFF",
              "event_time": "Sun Oct 4, 2026 3:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-10-04T15:00:00",
              "event_date": "2026-10-04",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Legendary comedian Yakov Smirnoff brings his classic Russian-American humor and signature observational comedy to Cobb's Comedy Club.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/yakov-smirnoff-san-francisco-california-10-04-2026/event/1C0064F50DDB34B7",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_19974427e85e",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "DIZNEY GAY: A PARODY DRAG SHOW",
              "event_time": "Sun Oct 4, 2026 7:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-10-04T19:00:00",
              "event_date": "2026-10-04",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "A fabulous and irreverent parody drag spectacular celebrating and satirizing beloved animated classics.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/dizney-gay-a-parody-drag-show-san-francisco-california-10-04-2026/event/1C00650B100DFCC9",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_70f99520bf6f",
              "venue_id": "venue_shapeshifters",
              "title": "Gravitational Lensing: Feminist Film Dialogues",
              "event_time": "2026-10-04",
              "venue_name": "Shapeshifters",
              "event_start": "2026-10-04",
              "event_date": "2026-10-04",
              "venue_address": "1007 W Grand Ave, Oakland, CA 94607",
              "description": "Program 17: Family Portraits/Relational Exercises includes a spectrum of diaristic films—from uncanny documentary to autobiographical re-enactments—that manifest different ways filmmakers choose to represent their relationships to family and, more broadly, to home (both literal and conceptual) through cinematic language.",
              "event_types": [
                "film"
              ],
              "price_info": "San Francisco Cinematheque",
              "url": "https://sfcinematheque.org/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_shapeshifters",
                  "source_name": "Shapeshifters",
                  "fetched_at": "2026-08-30T10:04:33.112973Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_shapeshifters|2026-10-04",
              "run_id": "run_8afbca984fe1",
              "run_label": "Gravitational Lensing: Feminist Film Dialogues, Sep 9 – Nov 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5becba7e0766",
              "venue_id": "venue_the_independent",
              "title": "RUSOWSKY",
              "event_time": "10.4.2026 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-10-04T20:00:00",
              "event_date": "2026-10-04",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List rusowsky Sun, Oct 4 Doors: 7:30 pm | Show: 8:00 pm 21 and up Please note - there is a delivery delay set for 2 weeks prior to show. Buy Tickets Share + Google Calendar Related Events Novulent Jun 19 Buy Tickets Mamas Gun Jun 20 Buy Tickets Artists rusowsky Back to Event List Upcoming Events Novulent Fri Jun 19 Mamas Gun Sat Jun 20 Out & Loud Thu Jun 25 The Lagoons Fri Jun 26 Bay Pride Amplified! Sat Jun 27 Kelly McFarling Thu Jul 2 Mac Gross Project – SF Rock Project Benefit + Against Medical Advice Album Release Fri Jul 3 High Fade Wed Jul 8 Young Franco Fri Jul 10 The Emo Night Tour Sat Jul 11 bad tuner x veggi Fri Jul 17 Los Tranquilos Sat Jul 18",
              "event_types": [
                "live_music"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://www.theindependentsf.com/tm-event/rusowsky/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-08-31T10:40:49.218190Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_independent|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5a78f0cc4d2a",
              "venue_id": "venue_piedmont_center",
              "title": "Oakland Art Association Gallery Show",
              "event_time": "2026-10-04T11:00:00",
              "venue_name": "Piedmont CFTA",
              "event_start": "2026-10-04T11:00:00",
              "event_date": "2026-10-04",
              "venue_address": "801 Magnolia Ave, Piedmont, CA 94611",
              "description": "",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_center",
                  "source_name": "Piedmont CFTA",
                  "fetched_at": "2026-08-31T13:20:32.956554Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_piedmont_center|2026-10-04",
              "run_id": "run_06f2ed2f4513",
              "run_label": "Oakland Art Association Gallery Show, Sep 26 – Nov 1",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_219cdffccf23",
              "venue_id": "venue_yerba_buena_center",
              "title": "GaHee Park: Behind the Curtain",
              "event_time": "2026-10-04",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-04",
              "event_date": "2026-10-04",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "Park invites us to peek behind the curtain, as she lays claim to her own power as a surrealist painter working across fantasy and intimacy.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/gahee-park-behind-the-curtain/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-04",
              "run_id": "run_5353f80886f6",
              "run_label": "GaHee Park: Behind the Curtain, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_01bebdc9f613",
              "venue_id": "venue_yerba_buena_center",
              "title": "Rael San Fratello: Prototypes",
              "event_time": "2026-10-04",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-04",
              "event_date": "2026-10-04",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The most comprehensive presentation to date of the renowned Bay Area design studio Rael San Fratello.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/rael-san-fratello-prototypes-and-provocations/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-04",
              "run_id": "run_cd09bf07fb68",
              "run_label": "Rael San Fratello: Prototypes, Sep 25 – Jan 31",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_044dead9d16b",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dread Scott: The Body Politic",
              "event_time": "2026-10-04",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-04",
              "event_date": "2026-10-04",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "The exhibition reflects Dread Scott’s longtime commitment to art that confronts political issues and interrogates American patriotism.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dread-scott-the-body-politic/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-04",
              "run_id": "run_995f7fbf41ba",
              "run_label": "Dread Scott: The Body Politic, Sep 25 – Jan 31",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1c7321d4f4eb",
              "venue_id": "venue_yerba_buena_center",
              "title": "Dream",
              "event_time": "2026-10-04",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-04",
              "event_date": "2026-10-04",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public art installation commissioned by YBCA and co-sponsored by San Francisco Public Works.",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/dream-public-art/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-04",
              "run_id": "run_b6a5ba4e8809",
              "run_label": "Dream, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f61338a21ae1",
              "venue_id": "venue_yerba_buena_center",
              "title": "SoMa Mahal Kita",
              "event_time": "2026-10-04",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-04",
              "event_date": "2026-10-04",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A message of love for the SoMa neighborhood and community, inspired by weaving practices in the Phillipines and the colors of the Filipino flag.",
              "event_types": [
                "art",
                "community"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/soma-mahal-kita-soma-i-love-you-ciriaco-sayoc/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-04",
              "run_id": "run_0c5141fff335",
              "run_label": "SoMa Mahal Kita, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f127cc0685e1",
              "venue_id": "venue_yerba_buena_center",
              "title": "We Rooted in Flight",
              "event_time": "2026-10-04",
              "venue_name": "Yerba Buena Center",
              "event_start": "2026-10-04",
              "event_date": "2026-10-04",
              "venue_address": "701 Mission Street, San Francisco, CA 94103",
              "description": "A public artwork inviting passerbyers to join in the journey of collective flight",
              "event_types": [
                "art"
              ],
              "price_info": "",
              "url": "https://ybca.org/event/we-fly-for-a-liberated-we-we-rooted-in-flight/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yerba_buena_center",
                  "source_name": "Yerba Buena Center",
                  "fetched_at": "2026-08-31T15:14:54.264135Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yerba_buena_center|2026-10-04",
              "run_id": "run_1d34139aedcf",
              "run_label": "We Rooted in Flight, Aug 7 – Jan 3",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a347c643a23e",
              "venue_id": "venue_grace_cathedral_organ",
              "title": "Organ Recital: Jeremy Bruns",
              "event_time": "2026-10-04T03:00:00",
              "venue_name": "Grace Cathedral Organ",
              "event_start": "2026-10-04T03:00:00",
              "event_date": "2026-10-04",
              "venue_address": "1100 California St, San Francisco, CA 94108",
              "description": "Organ recital performance",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "Not specified",
              "url": "https://gracecathedral.org/series/organ-recital-series/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_grace_cathedral_organ",
                  "source_name": "Grace Cathedral Organ",
                  "fetched_at": "2026-08-31T15:22:13.508004Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_grace_cathedral_organ|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_09bc4526e6b1",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-10-04T14:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-10-04T14:00:00",
              "event_date": "2026-10-04",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-10-04",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_bbcc63aa46c5",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-10-04T18:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-10-04T18:00:00",
              "event_date": "2026-10-04",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-10-04",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 2,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_9b8d54154aff",
              "venue_id": "venue_tupelo",
              "title": "Sunday Artist Series",
              "event_time": "Sunday October 4th 8:00PM - 12:00AM",
              "venue_name": "Tupelo",
              "event_start": "2026-10-04T20:00:00",
              "event_date": "2026-10-04",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "A weekly live music dance party throw down hosted by Shawn Stein with an all-pro house band and different guest vocalists each week. This is the perfect way to cap off your weekend!",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c9ef328f3de2",
              "venue_id": "venue_city_lights_theater",
              "title": "Eureka Day",
              "event_time": "2026-10-04T19:30:00",
              "venue_name": "City Lights Theater",
              "event_start": "2026-10-04T19:30:00",
              "event_date": "2026-10-04",
              "venue_address": "529 S. Second Street, San Jose, CA 95112",
              "description": "Guns. Grief. Ghosts. The stories of San Jose's Winchester Mystery House come to life again in this compelling one-artist show presented by actor Lisa Morse and playwright Joe Christiano.",
              "event_types": [
                "theater"
              ],
              "price_info": "Single tickets go on sale June 1",
              "url": "https://cltc.org/event/eureka-day/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_city_lights_theater",
                  "source_name": "City Lights Theater",
                  "fetched_at": "2026-09-02T10:09:11.201902Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_city_lights_theater|2026-10-04",
              "run_id": "run_4a0cceaa9027",
              "run_label": "Eureka Day, Sep 24 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a6ebdb32e981",
              "venue_id": "venue_discretion_brewing",
              "title": "The Back Porch Boys",
              "event_time": "2026-10-04",
              "venue_name": "Discretion Brewing",
              "event_start": "2026-10-04T17:30:00",
              "event_date": "2026-10-04",
              "venue_address": "2703 41st Ave Ste A, Soquel, CA 95073",
              "description": "Live Music 3-5pm",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_discretion_brewing",
                  "source_name": "Discretion Brewing",
                  "fetched_at": "2026-09-02T11:35:03.120781Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_discretion_brewing|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e12c48d67824",
              "venue_id": "venue_piedmont_piano_company",
              "title": "Steven Chanan",
              "event_time": "2026-10-04T17:00:00",
              "venue_name": "Piedmont Piano Co",
              "event_start": "2026-10-04T17:00:00",
              "event_date": "2026-10-04",
              "venue_address": "1728 San Pablo Ave, Oakland, CA 94612",
              "description": "Steven Chanan, solo recital, featuring music by Kapustin, Joplin, Bolcom, Bach, Chopin, Debussy, and Gershwin's \"Rhapsody in Blue.\"",
              "event_types": [
                "live_music",
                "classical"
              ],
              "price_info": "General Admission: $20 in advance / $25 at the door",
              "url": "https://piedmontpiano.com/calendar/2026/10/4/steven-chanan",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_piedmont_piano_company",
                  "source_name": "Piedmont Piano Co",
                  "fetched_at": "2026-09-03T10:22:09.546608Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_piedmont_piano_company|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_b7db5189916e",
              "venue_id": "venue_keys_jazz_bistro",
              "title": "Lori Carsillo",
              "event_time": "Sunday, October 4, 2026 @ 5pm",
              "venue_name": "Keys Jazz Bistro",
              "event_start": "2026-10-04T17:00:00",
              "event_date": "2026-10-04",
              "venue_address": "2243 Powell St, San Francisco, CA 94133",
              "description": "Sunday, October 4, 2026 @ 5pm",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "Tickets: $40 per show",
              "url": "https://keysjazzbistro.com/event/lori-carsillo-6/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_keys_jazz_bistro",
                  "source_name": "Keys Jazz Bistro",
                  "fetched_at": "2026-09-03T10:51:57.408606Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_keys_jazz_bistro|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_6f8c7a157f08",
              "venue_id": "venue_zellerbach",
              "title": "Tom Borrow, Piano Recital",
              "event_time": "October 4, 2026 3:00PM",
              "venue_name": "Cal Performances",
              "event_start": "2026-10-04T15:00:00",
              "event_date": "2026-10-04",
              "venue_address": "101 Zellerbach Hall, Berkeley, CA 94720",
              "description": "The rising star performs a program of immense technical and emotional range pairing Mozart’s Sonata in A minor with two works by Liszt. Learn More",
              "event_types": [
                "classical",
                "live_music"
              ],
              "price_info": "Subscribe May 5",
              "url": "https://secure.calperformances.org/31663",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_zellerbach",
                  "source_name": "Cal Performances",
                  "fetched_at": "2026-09-03T11:48:28.597904Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_zellerbach|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_b95327262474",
              "venue_id": "venue_bach_dds",
              "title": "Cyrille Aime Duo",
              "event_time": "Sun, 10/4/2026 @ 4:30 PM",
              "venue_name": "Bach Dancing",
              "event_start": "2026-10-04T16:30:00",
              "event_date": "2026-10-04",
              "venue_address": "311 Mirada Road, Half Moon Bay, CA 94019",
              "description": "bw + bsl && x + aw - ah / 2 - cw >= bsl) {\n                c.style.left = x + aw - ah / 2 - cw;\n            } else {\n                c.style.left = x + ah / 2;\n            }\n            if (y + ch + ah / 2 > bh + bst && y + ah / 2 - ch >= bst) {\n                c.style.top = y + ah / 2 - ch;\n            } else {\n                c.style.top = y + ah / 2;\n            }\n            c.style.visibility = \"visible\";\n            }\n            }\n            }\n\n            function msoCommentHide(com_id) {\n                if (msoBrowserCheck()) {\n                    c = document.all(com_id);\n                    if (null != c && null == c.length) {\n                        c.style.visibility = \"hidden\";\n                        c.style.left = -1000;\n                        c.style.top = -1000;\n                    }\n                }\n            }\n\n            function msoBrowserCheck() {\n                ms = navigator.appVersion.indexOf(\"MSIE\");\n                vers = navigator.appVersion.substring(ms + 5, ms + 6);\n                ie4 = (ms > 0) && (parseInt(vers) >= 4);\n                return ie4;\n            }\n            if (msoBrowserCheck()) {\n                document.styleSheets.dynCom.addRule(\".msocomanchor\", \"background: infobackground\");\n                document.styleSheets.dynCom.addRule(\".msocomoff\", \"display: none\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"visibility: hidden\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"position: absolute\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"top: -1000\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"left: -1000\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"width: 33%\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"background: infobackground\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"color: infotext\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"border-top: 1pt solid threedlightshadow\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"border-right: 2pt solid threedshadow\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"border-bottom: 2pt solid threedshadow\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"border-left: 1pt solid threedlightshadow\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"padding: 3pt 3pt 3pt 3pt\");\n                document.styleSheets.dynCom.addRule(\".msocomtxt\", \"z-index: 100\");\n            }\n            // -->\n        \n    \n    Sponsored by John and Julie Gerth\nCyrille Aimée is\n    one of today’s most distinctive jazz vocalists, winner of both the Sarah\n    Vaughan International Vocal Competition and the Montreux Jazz Festival Vocal\n    Competition, and a finalist in the Thelonious Monk International Jazz Vocal\n    Competition. Raised by a French father and Dominican mother in Samois‑sur‑Seine,\n    Django Reinhardt’s final home, she absorbed Roma jazz influences early on,\n    singing on street corners during travels across Europe.\n\nHer move to New York\n    propelled her onto the international stage. She performed and recorded with Roy\n    Hargrove, impressed the notoriously tough legendary Harlem Apollo audience, and\n    was invited by Stephen Sondheim to appear in a City Centre tribute with Wynton\n    Marsalis. Her Sondheim album Move On earned the composer’s praise, and her\n    version of “Marry Me a Little” received a Grammy nomination.\n\nNow based in New Orleans\n    after a creatively transformative period in Costa Rica and new motherhood,\n    Aimée continues to expand her musical world. Her latest release on Whirlwind\n    Recordings, à Fleur de Peau, created with producer Jake Sherman,\n    showcases her signature blend of jazz sophistication, global influences, and\n    irresistible rhythmic energy.\n\nCyrille Aimée – Vocals;\n    Mathis Picard – Piano\nArtist Website here\nVideo 1\nVideo 2",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$50/$40 Adults;$23/$12 Student",
              "url": "https://plugin.vbotickets.com/v5.0/event.asp?eid=202283&s=f940c74f-f780-4fcb-ac4c-a97565f2a7ec",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bach_dds",
                  "source_name": "Bach Dancing",
                  "fetched_at": "2026-09-03T11:57:58.328412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bach_dds|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_bbb6f0c70b49",
              "venue_id": "venue_hillside_club",
              "title": "Member Introductions",
              "event_time": "Oct 04, 2026, 10:00 AM – 11:30 AM",
              "venue_name": "Hillside Club",
              "event_start": "2026-10-04T10:00:00",
              "event_date": "2026-10-04",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "New members. and long time members, are welcome to learn about membership benefits and Club activities.",
              "event_types": [
                "community"
              ],
              "price_info": "",
              "url": "https://www.hillsideclub.org/event-details/member-introductions-october-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-09-04T10:10:10.864332Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hillside_club|2026-10-04",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_db8ed652b629",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-04",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-04",
              "event_date": "2026-10-04",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "San Francisco Playhouse. A beloved puppet takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "Tickets On Sale",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-09-04T10:15:07.852694Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-04",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-10-05": {
          "date": "2026-10-05",
          "updated_at": "2026-09-04T10:10:15.839571Z",
          "events": [
            {
              "event_id": "evt_db9023c200e2",
              "venue_id": "venue_castro_theater",
              "title": "SHE & HIM",
              "event_time": "October 5, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-10-05T20:00:00",
              "event_date": "2026-10-05",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "The pair returned to making their breezy pop in 2013 with Volume 3 , an album of summer pop that arrived in the spring of that year. In late 2014, the duo announced the release of a second covers album. Classics featured works by legendary musicians such as Aretha Franklin, Dusty Springfield, Frank Sinatra, and Elvis Costello. They followed that with another Christmas album, Christmas Party , in 2016. Still focusing on the 20th century holiday tunes, it included guest performances by The Chapin Sisters, Jenny Lewis, and Steve Shelley of Sonic Youth. 2022 saw the release of the covers LP Melt Away: A Tribute to Brian Wilson , which features Wilson-penned classics like “ Wouldn’t It Be Nice ,” “ Do it Again ” and “ Darlin ,”. 2025 saw a boost in the band’s profile as Deschanel’s very first song written for Volume One , “ I Thought I Saw Your Face Today ” became a spontaneous viral hit, introducing their music to a new generation of music fans.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "Sold Out!",
              "url": "https://thecastro.com/events/she-him-261005",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-06-04T13:01:24.778145Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-10T10:33:42.275715Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_castro_theater|2026-10-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_53bd30428c7d",
              "venue_id": "venue_mojo_lounge",
              "title": "Johnny's Lounge Open Mic",
              "event_time": "2026-10-05T20:00:00",
              "venue_name": "Mojo Lounge",
              "event_start": "2026-10-05T20:00:00",
              "event_date": "2026-10-05",
              "venue_address": "3714 Peralta Blvd, Fremont, CA 94536",
              "description": "Johnny's Lounge Open Mic (at the former Mojo Lounge). If you ever wanted to try comedy and check out the Bay Area's upcoming talent, come on out to this local watering hole in Fremont! Hosted by Alex Torres.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Free",
              "url": "https://www.meetup.com/south-bay-comedy-showcases/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_mojo_lounge",
                  "source_name": "Mojo Lounge",
                  "fetched_at": "2026-06-16T11:13:49.827449Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mojo_lounge|2026-10-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_bbaf064b91bd",
              "venue_id": "venue_the_ritz",
              "title": "SOULFLY + NAILBOMB + INCITE",
              "event_time": "2026-10-05T19:00:06-07:00",
              "venue_name": "The Ritz",
              "event_start": "2026-10-05T19:00:06",
              "event_date": "2026-10-05",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "SOULFLY\nNAILBOMB\nINCITE\n\n\n \n\nMONDAY OCTOBER 5, 2026",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$25 Advance – $30 Day-of-Show",
              "url": "https://www.ticketweb.com/event/soulfly-nailbomb-incite-the-ritz-tickets/14253104",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-07-28T19:30:29.445128Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_ritz|2026-10-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_024cadd37043",
              "venue_id": "venue_august_hall",
              "title": "Nick Hakim",
              "event_time": "oct 5 8pm",
              "venue_name": "August Hall",
              "event_start": "2026-10-05T20:00:00",
              "event_date": "2026-10-05",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "This website or its third-party tools process personal data. You can opt out of the sale of your personal information by clicking on the \"Do Not Sell or Share my Personal Information\" Link.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$39.80",
              "url": "https://www.augusthallsf.com/tm-event/nick-hakim/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-07-29T14:20:13.717420Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-10-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_1619449be842",
              "venue_id": "venue_masonic_hall",
              "title": "EsDeeKid",
              "event_time": "oct 5 8pm",
              "venue_name": "Masonic Hall",
              "event_start": "2026-10-05T20:00:00",
              "event_date": "2026-10-05",
              "venue_address": "1111 California St, San Francisco, CA 94108",
              "description": "UK hip-hop artist EsDeeKid takes the stage on the Council House Rat Tour to perform his gritty verses and underground anthems. The concert promises an intense, raw live rap experience.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$59.75",
              "url": "https://www.ticketmaster.com/esdeekid-council-house-rat-tour-san-francisco-california-10-05-2026/event/1C0064F0A7EEBB26",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_masonic_hall",
                  "source_name": "Masonic Hall",
                  "fetched_at": "2026-07-31T15:01:14.009029Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-09T12:18:13.496310Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_masonic_hall|2026-10-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1c499152fe26",
              "venue_id": "venue_bottom_of_the_hill",
              "title": "The Rat Utopia Experiment",
              "event_time": "oct 5 7:30pm",
              "venue_name": "Bottom of the Hill",
              "event_start": "2026-10-05T19:30:00",
              "event_date": "2026-10-05",
              "venue_address": "1233 17th St, San Francisco, CA 94107",
              "description": "circus punk, grunge-garage rock, xxx, xxx",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$15/$18",
              "url": "http://www.bottomofthehill.com/20261005.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_bottom_of_the_hill",
                  "source_name": "Bottom of the Hill",
                  "fetched_at": "2026-08-24T10:19:28.171858Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_bottom_of_the_hill|2026-10-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_2f0d1f759fce",
              "venue_id": "venue_the_riptide",
              "title": "Open Mic by Charlie Kaupp",
              "event_time": "October 5 7:00 PM - October 6 12:00 AM",
              "venue_name": "The Riptide",
              "event_start": "2026-10-05T19:00:00",
              "event_date": "2026-10-05",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "Best of The Bay Award Winning Charlie Kaupp's Riptide Open Mic !\n\nThe Riptide Wants to Hear Ya Sing! In person! Inside the bar!\n\n\nOpen Mic Night returns to The Riptide in person, every Monday night. Sign up in the bar starting at 7pm. Music starts at 8 and goes until 11pm.\n\n\n\nRules and format:\n\n\n\n• You get two songs or 10 minutes, whichever comes first\n• This is a music-only open mic, so no spoken word, comedy, poetry, dramatic readings, etc (unless you put it to music)\n• All genres, covers, and originals are accepted and encouraged\n• Since it's in a bar, it's a 21+ event. Sorry kids!\n• Sign-ups are first-come, first-served, but you can pick your slot\n• Come early and have a drink, stick around late and support the other performers\n• You may bring your own mic and your own instrument if you choose, or RESPECTFULLY use our house mics, guitar, or piano.",
              "event_types": [
                "community",
                "live_music"
              ],
              "price_info": "cover",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-10-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7be3bbe4c9e9",
              "venue_id": "venue_gray_area",
              "title": "Online Intensive Course",
              "event_time": "10/05/2026",
              "venue_name": "Gray Area",
              "event_start": "2026-10-05",
              "event_date": "2026-10-05",
              "venue_address": "2665 Mission St, San Francisco, CA 94110",
              "description": "Nasir Anthony Montalvo (b. 1999) is an experimental memory worker. Montalvo’s work challenges the erasure of Black and queer people from our historical record through archival study, obsolete and emergent technology, popular education, and the written word. Montalvo’s art and archival research has been exhibited locally and nationally, published in Syllabus, Sixty Inches From Center, The Advocate, and KC Studio, and collected by the Harvard Radcliffe Institute. Their work is referenced in curricula at Johns Hopkins University, Columbia University and Pomona College. Montalvo is founder of {B/qKC}: a community archive of Black queer midwestern history, and has been awarded fellowships with The Opportunity Agenda, Diaspora Solidarities Lab, and Gray Area in addition to their 2024-2026 studio residency at Charlotte Street. Montalvo is queer, Afro-Boricua, and from Kissimmee, Florida. They received their BS in Business & Technology from Stevens Institute of Technology.",
              "event_types": [
                "livestream"
              ],
              "price_info": "",
              "url": "https://grayarea.org/event/online-intensive-course-beyond-big-tech/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_gray_area",
                  "source_name": "Gray Area",
                  "fetched_at": "2026-08-22T11:08:17.231968Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_gray_area|2026-10-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3289a284448d",
              "venue_id": "venue_act_theater",
              "title": "Alfred Hitchcock's North by Northwest",
              "event_time": "2026-10-05",
              "venue_name": "ACT Theater",
              "event_start": "2026-10-05",
              "event_date": "2026-10-05",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "\"I am thrilled, excited and perhaps a little apprehensive to bring the iconic North by Northwest home to the US! I just hope that American audiences will love it as much as our British audiences did. What I am not apprehensive about is bringing its message; one of nations coming together in peace and friendship to make the world a better place. I think we can all raise a glass to that! I am also itching to return to A.C.T. and San Francisco, a piece of my heart will always remain in California and I cannot wait to return to your beautiful theatre, vivid audience and magic state.\" —Emma Rice",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-08-22T13:54:28.481304Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_act_theater|2026-10-05",
              "run_id": "run_8f5d72a961cd",
              "run_label": "Alfred Hitchcock's North by Northwest, Sep 22 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_81463af224b7",
              "venue_id": "venue_thee_stork_club",
              "title": "Freakyoke 10/5",
              "event_time": "October 05, 2026 8:00PM",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-10-05T20:00:00",
              "event_date": "2026-10-05",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "This show is 21+ Freakyoke Karaoke 1st and 3rd Mondays 8:00pm, FREE Do you want somewhere you can sing your favorite songs? We're talking alternative, metal, rock, pop, disco, and everything in between! If it's on YouTube, we got it!! Freakyoke karaoke is where it's at for folks that may not feel like they can sing freely and freakly at other karaoke! QUEER TRANS CENTERED KARAOKE!!",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "https://wl.seetickets.us/event/freakyoke-105/692291?afflky=TheeStorkClub",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_thee_stork_club",
                  "source_name": "Thee Stork Club",
                  "fetched_at": "2026-08-22T14:35:18.029489Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-10-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_a6d2c1ad825e",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Love Notes",
              "event_time": "2026-10-05",
              "venue_name": "San Jose CPA",
              "event_start": "2026-10-05",
              "event_date": "2026-10-05",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-10-05",
              "run_id": "run_1ea648ade196",
              "run_label": "Love Notes, Aug 22 – Oct 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_5a7786d49443",
              "venue_id": "venue_the_marsh_sf",
              "title": "Monday Night Marsh Stream",
              "event_time": "2026-10-05",
              "venue_name": "The Marsh SF",
              "event_start": "2026-10-05",
              "event_date": "2026-10-05",
              "venue_address": "1062 Valencia St, San Francisco, CA 94110",
              "description": "Program Director: Alexa Almira House Manager: Arnie Warshaw Light/Soundboard Operator: Alexa Almira About Monday Night Marsh Stephanie Weisman, our theater’s founder and artistic director, started The Marsh because she wanted a place for writers and performers like herself to easily develop their work. IN 1989, she planted a see by starting a Monday night performance series at The Hotel Utah on Bryant Street. Monday Night Marsh is the seed that sprouted into what is now The Marsh Theater: A Breeding Ground for New Performance. The program prides itself in sharing personal stories and unique experiences of all types, with a goal of amplifying the voices of our community. It is crucial, now more than ever, to share your story. Local celebrities like Josh Kornbluth, Marga Gomez, Irma Herrera, Diane Barnes, and so many others got their start on Monday Night Marsh. Every Monday (unless it’s a holiday), we feature 3 people who perform up to 20 minutes of their (work-in-progress) piece. Each group performs twice in a month. After each show, we do a Q&A with the audience and performers, which allows for the opportunity to give and receive any feedback. You can watch in person, or stream via zoom for free. Follow us on Instagram! @mondaynightmarsh You truly never know what you’re going to see at a MNM. Join us. Wonderful things can happen. Mondays at 7pm Two Ways to Watch! IN-PERSON In Person at The Marsh Theater in San Francisco 1062 Valencia Street San Francisco, CA 94110 Doors open at 6:30pm | Show starts at 7pm *STREAMING *Streaming tickets are pay-what-you-can Virtual doors open at 6:50pm | Show starts at 7pm Submit Your Piece! Are you a monologuist, solo performer, movement artist, solo musician, comedian, etc.? Whether you are in the very beginning stages of your piece, or have a polished piece on which you’re putting the final touches, MNM wants you! The submission period for the July-December (fall) 2026 series has closed. But fear not! We will soon be accepting sub",
              "event_types": [
                "theater",
                "livestream"
              ],
              "price_info": "",
              "url": "https://themarsh.org/monday-night-marsh-stream/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_the_marsh",
                  "source_name": "The Marsh",
                  "fetched_at": "2026-08-22T17:28:42.838285Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_marsh_sf|2026-10-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_d35e3fb60ed8",
              "venue_id": "venue_guild_theatre",
              "title": "Toadies: The Charmer Tour",
              "event_time": "OCT\n05\n8:00 PM",
              "venue_name": "Guild Theatre",
              "event_start": "2026-10-05T20:00:00",
              "event_date": "2026-10-05",
              "venue_address": "949 El Camino Real, Menlo Park, CA 94025",
              "description": "DOORS OPEN: 7:00 PM • SHOW: 8:00 PM",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.guildtheatre.com/shows/toadies-05-oct",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_guild_theatre",
                  "source_name": "Guild Theatre",
                  "fetched_at": "2026-08-28T10:40:15.787828Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_guild_theatre|2026-10-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_501e0d766b7b",
              "venue_id": "venue_the_freight__salvage",
              "title": "Bobby McFerrin: Circlesongs",
              "event_time": "2026-10-05T11:30:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-10-05T11:30:00",
              "event_date": "2026-10-05",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Account Login Cart Time remaining: 00:00 Enter Promo Code Promo Code (Optional) Activate Code Promo Code View Cart 0 Your cart has expired Your order contained expired items and your shopping cart has been emptied. Close Enter Promo Code Bobby McFerrin and MOTION: Circlesongs, Monday, October 5, 2026 12:00PM Event Summary Bobby McFerrin and Motion Read More Hide 10-time Grammy-winner Bobby McFerrin 's mission is to get the world singing. So, he's singing with MOTION almost every Monday afternoon right here at The Freight to welcome even more voices into the circle! Join Bobby and Bay Area’s MOTION featuring Bryan Dyer, David Worm , and Destani Wolf . They will lead Circlesongs at noon and encourage everyone to bring a spirit of adventure, curiosity, trust, and joy. Let it free your voice. Find your place in the circle. “You get people together and get them singing, and you instantly knock down all the walls – the creeds, the gender, age and race differences, everything. You’re all one at that point, lifting your voices.” – Bobby McFerrin Additional Options View Full Calendar Item details Date Monday, October 5, 2026 12:00PM Name Bobby McFerrin and MOTION: Circlesongs Description Please Note: Donor discount applied at checkout. Interested in donating? Click here. Tickets: $40.00 (includes fees) Doors: 11:30AM; Show: 12:00PM Please Note: Donor discount applied at checkout. Interested in donating? Click here. Tickets: $40.00 (includes fees) Doors: 11:30AM; Show: 12:00PM Select your tickets Available Groups Select Other Sold Out! General Admission Please select a group to display sections. Choose an available section to see ticket options Quantity for General Admission General Admission $35.00 ticket + $5.00 fees Price Quantity 0 1 2 3 4 5 6 7 8 9 10 Quantity General Admission Price Quantity 0 1 2 3 4 5 6 7 8 9 10 Additional information Americans with Disabilities Act Accessible Seating Accessible seating is only to be reserved for guests with disabilities and their com",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$40\n(INCLUDES ALL FEES)",
              "url": "https://secure.thefreight.org/15627/16137",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-10-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_529d791dcc7f",
              "venue_id": "venue_the_freight__salvage",
              "title": "Open Mic with Jamey Williams",
              "event_time": "2026-10-05T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-10-05T19:00:00",
              "event_date": "2026-10-05",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Account Login Cart Time remaining: 00:00 Enter Promo Code Promo Code (Optional) Activate Code Promo Code View Cart 0 Your cart has expired Your order contained expired items and your shopping cart has been emptied. Close Enter Promo Code Community Mondays: Open Mic with Jamey Williams, October 5, 2026 7:30PM Event Summary From September 14, 2026 7:30PM to December 7, 2026 7:30PM October 5, 2026 7:30PM Community Mondays: Open Mic with Jamey Williams 2026 CM: Fall In the spirit of early days of The Freight, we’re embracing a more intimate, café-style setting-- salon vibes, spontaneous connection, and up-close musical magic. All genres of music-making are welcome, and we’ll have a limited selection of instruments, mics, and amps on hand. Whether you're a longtime performer or new to the mic, come help us write the next chapter in a space that honors where it all began. All genres of music-making are welcome. We’ll have a limited selection of instruments and mics on hand as well as DI boxes and playback capability for backing tracks. Read More Hide Choose from the list below to jump directly to another offering of Select Another Event September 14, 2026 7:30PM September 21, 2026 7:30PM September 28, 2026 7:30PM October 5, 2026 7:30PM October 19, 2026 7:30PM October 26, 2026 7:30PM November 2, 2026 7:30PM November 9, 2026 7:30PM November 16, 2026 7:30PM November 30, 2026 7:30PM December 7, 2026 7:30PM Go to selected item Additional Options View Full Calendar Select your tickets Available Groups Select Other Sold Out! Available Sections Class Registration: $5.00 Please select a group to display sections. Choose an available section to see ticket options Quantity for Class Registration Sliding Scale Enter any amount more than $5.00 Price $ Quantity 0 1 2 3 4 5 6 7 8 9 10 Quantity Sliding Scale Enter any amount more than $5.00 Price $ Quantity 0 1 2 3 4 5 6 7 8 9 10 Add to Cart Choose from the list below to jump directly to another offering of Select Another Event September",
              "event_types": [
                "community",
                "live_music"
              ],
              "price_info": "SLIDING SCALE: $5.00+",
              "url": "https://secure.thefreight.org/16027/16030",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-10-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_84c52a016157",
              "venue_id": "venue_temescal_arts_center",
              "title": "Doors That Only Open in Silence",
              "event_time": "2026-10-05T19:30:00",
              "venue_name": "Temescal Arts Center",
              "event_start": "2026-10-05T19:30:00",
              "event_date": "2026-10-05",
              "venue_address": "511 48th St, Oakland, CA 94609",
              "description": "Open participation free improvisation non-hierarchical workshop. Bring your instrument or come to listen. No advance notice needed – just show up. Small groups will be randomly assembled from submitted names immediately before each group plays. Over by 10pm.",
              "event_types": [
                "workshop",
                "experimental"
              ],
              "price_info": "Free",
              "url": "https://www.temescalartcenter.org/tacmusic.html",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_temescal_arts_center",
                  "source_name": "Temescal Arts Center",
                  "fetched_at": "2026-08-28T14:09:19.773505Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_temescal_arts_center|2026-10-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_ce6874df8d3f",
              "venue_id": "venue_yoshis",
              "title": "EUGE GROOVE",
              "event_time": "October 5, 2026 - 7:30PM",
              "venue_name": "Yoshi's",
              "event_start": "2026-10-05T19:30:00",
              "event_date": "2026-10-05",
              "venue_address": "510 Embarcadero West, Oakland, CA 94607",
              "description": "CHART-TOPPING SMOOTH JAZZ SAXOPHONIST",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "$44 - $84",
              "url": "https://yoshis.com/events/buy-tickets/euge-groove-6/detail",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_yoshis",
                  "source_name": "Yoshi's",
                  "fetched_at": "2026-08-31T11:10:26.580906Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_yoshis|2026-10-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5d5a26cc47fc",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN MIC NIGHT",
              "event_time": "Mon Oct 5 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-10-05T19:00:00",
              "event_date": "2026-10-05",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "A legendary Monday night tradition at the Hotel Utah Saloon, this open mic is a cornerstone of San Francisco's singer-songwriter community. Local and visiting artists sign up via a random drawing to perform a song on the historic stage.",
              "event_types": [
                "community"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/OPEN-MIC-NIGHT/690192?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-08-31T12:12:52.447528Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-10-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3ad0b5d8916e",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-10-05T14:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-10-05T14:00:00",
              "event_date": "2026-10-05",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-10-05",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_6ab5a38aa2ad",
              "venue_id": "venue_club_fugazi",
              "title": "Dear San Francisco",
              "event_time": "2026-10-05T18:00:00",
              "venue_name": "Club Fugazi",
              "event_start": "2026-10-05T18:00:00",
              "event_date": "2026-10-05",
              "venue_address": "678 Beach Blanket Babylon Blvd, San Francisco, CA 94133",
              "description": "",
              "event_types": [
                "theater",
                "dance"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_club_fugazi",
                  "source_name": "Club Fugazi",
                  "fetched_at": "2026-08-31T15:56:34.365346Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_club_fugazi|2026-10-05",
              "run_id": "run_cb76b6dfad61",
              "run_label": "Dear San Francisco, Sep 17 – Jan 10",
              "showtime_index": 2,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_def3b9d1f663",
              "venue_id": "venue_tupelo",
              "title": "THE San Francisco Invitational Jam",
              "event_time": "Monday October 5th 9:00PM - 1:00AM",
              "venue_name": "Tupelo",
              "event_start": "2026-10-05T21:00:00",
              "event_date": "2026-10-05",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "Hosted by Andrew Coutti and Young Blake on drums and bass,, this is the definitive Jam in San Francisco. Each week there will be a different special guest vocalist, as well as myriad other exceptional local talent popping in no doubt. Talk to either host before the gig if you're interested in performing. We take this shit seriously though, so bring your chops :)",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-10-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9c765d55474f",
              "venue_id": "venue_stookeys_blue_room",
              "title": "SWITCH/BOARD! Die, Die, Derby!",
              "event_time": "Mon, Oct 05 at 7-8:30pm",
              "venue_name": "Stookey's Blue Room",
              "event_start": "2026-10-05T19:00:00",
              "event_date": "2026-10-05",
              "venue_address": "1523 Sutter St, San Francisco, CA 94109",
              "description": "Showtime 7-8:30pm\nFollowed by a 9pm screening of the film that inspired the plot!",
              "event_types": [
                "theater",
                "film"
              ],
              "price_info": "",
              "url": "https://www.stookeysblueroom.com/event-details/fancypants-presents-switch-board-die-die-derby-the-ann-margret-murders",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_stookeys_blue_room",
                  "source_name": "Stookey's Blue Room",
                  "fetched_at": "2026-09-03T12:18:49.462512Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_stookeys_blue_room|2026-10-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_2f35b21134c2",
              "venue_id": "venue_fox_theater_rwc",
              "title": "Into the Quiet Experience",
              "event_time": "2026-10-05T19:00:00",
              "venue_name": "Fox Theater Redwood City",
              "event_start": "2026-10-05T19:00:00",
              "event_date": "2026-10-05",
              "venue_address": "2209 Broadway, Redwood City, CA 94063",
              "description": "Join us for a multi-sensory, immersive evening with John Mark Comer and friends. Receive a signed copy of the book and experience Into the quiet through teaching, music, and quiet, reflective contemplation. All proceeds (excluding ticketing fees) go to support the work of Practicing the Way.",
              "event_types": [
                "live_music"
              ],
              "price_info": "Varies by seating section",
              "url": "https://foxrwc.showare.com/eventperformances.asp?evt=412",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theater_rwc",
                  "source_name": "Fox Theater Redwood City",
                  "fetched_at": "2026-09-03T14:15:06.396214Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theater_rwc|2026-10-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_da3839123edf",
              "venue_id": "venue_hillside_club",
              "title": "Paul Elder: Publisher and Bookseller",
              "event_time": "Oct 05, 2026, 7:30 PM – 9:00 PM",
              "venue_name": "Hillside Club",
              "event_start": "2026-10-05T19:30:00",
              "event_date": "2026-10-05",
              "venue_address": "2286 Cedar St, Berkeley, CA 94709",
              "description": "Hillside Club Historian David Mostardi presents a talk about the life and work of local publisher and bookseller Paul Elder.",
              "event_types": [
                "literary",
                "community"
              ],
              "price_info": "",
              "url": "https://www.hillsideclub.org/event-details/fireside-meeting-paul-elder-publisher-bookseller-berkeleyan",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hillside_club",
                  "source_name": "Hillside Club",
                  "fetched_at": "2026-09-04T10:10:10.864332Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hillside_club|2026-10-05",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-10-06": {
          "date": "2026-10-06",
          "updated_at": "2026-09-04T10:15:24.595036Z",
          "events": [
            {
              "event_id": "evt_d3c9810933e4",
              "venue_id": "venue_ashby_stage",
              "title": "How Memories Make Us",
              "event_time": "2026-10-06T19:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-10-06T19:00:00",
              "event_date": "2026-10-06",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "FEATURING JOSH KORNBLUTH LET’S BREAK IT DOWN SERIES In a magical twist, characters in our sci-fi fable The Motion, begin to lose key memories from their lives. This disorienting phenomenon brings about startling shifts in their identities. How much do your memories define you? Join renowned storyteller Josh Kornbluth to recount key memories from your life that have played a central role in making you the person you are today.",
              "event_types": [
                "literary"
              ],
              "price_info": "See website for details",
              "url": "https://shotgunplayers.org/online/article/break-it-down",
              "tags": [],
              "sources": [
                {
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-03-24T09:22:04.768655Z",
                  "strategy_used": "EXTRACT",
                  "source_id": "v_ashby_stage"
                },
                {
                  "source_id": "s_shotgun_players",
                  "source_name": "Shotgun Players",
                  "fetched_at": "2026-03-25T08:42:26.376356Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_3ab43566a39f",
              "venue_id": "venue_the_independent",
              "title": "ENTER SHIKARI",
              "event_time": "10.6 7:30 PM",
              "venue_name": "The Independent",
              "event_start": "2026-10-06T19:30:00",
              "event_date": "2026-10-06",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List Cure for Paranoia Tue, Oct 6 Doors: 7:30 pm | Show: 8:00 pm All Ages Please note - there is a delivery delay set for 2 weeks prior to show. Buy Tickets Share + Google Calendar Related Events FOUR SQUARE VOL. 2 – A HIP-HOP VIDEO GAME LIVE THEATRE EXPERIENCE Aug 14 Buy Tickets Krooked Kings Aug 15 Buy Tickets Artists Cure for Paranoia Cure for Paranoia is a hip-hop collective redefining the boundaries of modern rap with a sound inspired by legends like Outkast, The Roots, Odd Future and A Tribe Called Quest. Famed for their genre-bending approach and magnetic live shows, the group blends soulful instrumentals, razor-sharp lyricism, and infectious grooves with a mission to uplift. Cure for Paranoia isn’t afraid to speak their minds—championing mental health awareness and inspiring confidence in listeners through their honest, thought-provoking songwriting. With two Dallas Song of the Year awards to their name and three-time finalist status in the NPR Tiny Desk Contest, they’ve proven themselves as creative trailblazers and powerful voices in the Southern music scene. Whether you’re looking for socially conscious anthems, feel-good vibes, or a reminder that you’re not alone in the struggle, Cure for Paranoia is here to bring positive energy—and a cure for the ordinary. Cure for Paranoia's critically acclaimed full-band live show, featuring WE THEM GRAYS, blends the components of live instrumentation and dance music into the classic sensibilities of rap, R&B, funk, and jazz. Their thriving fanbase has brought Cure for Paranoia to stages like The Hollywood Bowl, South By Southwest, and the NPR Tiny Desk Concert Tour (as two-time finalists of the worldwide NPR Tiny Desk Contest) and reigning Dallas Hip-Hop Group of the Year from the Dallas Entertainment Awards in 2025. The band also repeated in the Song of the Year category, winning back to back with \"Love (Again)\" in 2025 and \"From Texas\" in 2024. In 2025, Cameron is dropping a verse a day called Projec",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/enter-shikari/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-18T07:25:47.483758Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_independent|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0b00bb656fda",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Cavetown",
              "event_time": "October 6, 2026 8:00pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-10-06T20:00:00",
              "event_date": "2026-10-06",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Running With Scissors Tour - chloe moriondo",
              "event_types": [
                "folk",
                "live_music"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thefoxoakland.com/events/cavetown-261006",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-04-18T07:48:06.867851Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f9b6def69c24",
              "venue_id": "venue_the_uc_theatre",
              "title": "PRESIDENT: North American Campaign 2026",
              "event_time": "Oct 06 7:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-10-06T19:00:00",
              "event_date": "2026-10-06",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "Oct 6 President, Showing Teeth, Cenobia a/a $37.50 6pm/7pm # @",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$37.50 + FEES",
              "url": "https://www.theuctheatre.org/shows/president-06-oct",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-04-30T12:51:51.787764Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_099f77ec4641",
              "venue_id": "venue_castro_theater",
              "title": "SAMMY RAE & THE FRIENDS",
              "event_time": "October 6, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-10-06T20:00:00",
              "event_date": "2026-10-06",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Their sound, which has attracted new fans by the thousands in the past few years, is a unique mélange of Sammy’s influences: classic rock, folk and funk and sprinkled with soul and jazz. Rae has been building toward this moment since moving to NYC from Connecticut in her early 20s. Finding herself without a built-in peer group, she simply built it herself: the literal and proverbial Friends. When she started playing shows, she made sure the audience was part of the family too. Everything that’s happened since – from EP’s “The Good Life” (2018) and “Let’s Throw a Party” (2021) to sold-out shows in major markets and secondary markets alike across North American and the UK & Europe, to high-profile festival sets around the world, including Bonnaroo’s main stage, Sound on Sound, All Things Go, and more – has been based on friends telling friends.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thecastro.com/events/sammy-rae-261006",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-05-06T11:49:34.527189Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_castro_theater|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0a3e2b8a9008",
              "venue_id": "venue_greek_theatre",
              "title": "JUNGLE – WORLD TOUR 2026",
              "event_time": "October 6, 2026 7:00pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-10-06T19:00:00",
              "event_date": "2026-10-06",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "all ages; sold out; no ins/outs",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thegreekberkeley.com/events/jungle-261006",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-06-01T15:33:04.336593Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_greek_theatre|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_cf65656b2ffd",
              "venue_id": "venue_the_fillmore",
              "title": "My Moring Jacket",
              "event_time": "oct 6 8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-10-06T20:00:00",
              "event_date": "2026-10-06",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "The acclaimed American rock band brings their expansive, eclectic sound and legendary live performance to the stage [3.1.5]. Expect a night of genre-blending rock, indie, and psychedelic tunes.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/my-morning-jacket-seven-7-show-san-francisco-california-10-03-2026/event/1C00647DAA0A87C3",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T21:39:26.952332Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-06-05T10:13:38.208208Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_acb90677e7cb",
              "venue_id": "venue_oakland_arena",
              "title": "aespa LIVE TOUR – SYNK : COMPLæXITY – in Oakland",
              "event_time": "oct 6 8pm",
              "venue_name": "Oakland Arena",
              "event_start": "2026-10-06T20:00:00",
              "event_date": "2026-10-06",
              "venue_address": "7000 Coliseum Way, Oakland, CA 94621",
              "description": "Copyright © 2026 Oakland Arena. Privacy Notice | Cookie Preferences | Your Privacy Choices | Ad Choices | Terms of Use | Accessibility / Site Map a carbon house experience",
              "event_types": [
                "live_music"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.theoaklandarena.com/events/detail/aespa-live-tour-synk-complaexity-in-oakland",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-25T10:40:49.247198Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_oakland_arena",
                  "source_name": "Oakland Arena",
                  "fetched_at": "2026-06-28T17:26:37.381079Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_oakland_arena|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fd10c2242fdd",
              "venue_id": "venue_the_ritz",
              "title": "Mia Asano",
              "event_time": "oct 6 6pm",
              "venue_name": "The Ritz",
              "event_start": "2026-10-06T18:00:00",
              "event_date": "2026-10-06",
              "venue_address": "400 S 1st St, San Jose, CA 95113",
              "description": "MIA ASANO\n\n \n\nTUESDAY OCTOBER 6, 2026",
              "event_types": [
                "live_music"
              ],
              "price_info": "$25",
              "url": "https://www.ticketweb.com/event/mia-asano-the-ritz-tickets/14241874",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-12T11:45:29.263581Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_ritz",
                  "source_name": "The Ritz",
                  "fetched_at": "2026-07-12T11:49:06.462632Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_ritz|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_deec9d2ab343",
              "venue_id": "venue_thee_stork_club",
              "title": "Non Plus Temps (album release)",
              "event_time": "oct 6 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-10-06T20:00:00",
              "event_date": "2026-10-06",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "21+",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$10/$12",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_14ec2b873ce1",
              "venue_id": "venue_rickshaw_stop",
              "title": "Dua Saleh",
              "event_time": "oct 6 8pm",
              "venue_name": "Rickshaw Stop",
              "event_start": "2026-10-06T20:00:00",
              "event_date": "2026-10-06",
              "venue_address": "155 Fell St, San Francisco, CA 94102",
              "description": "all ages",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "$24.50/$28",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_rickshaw_stop|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_0f4afcf6a646",
              "venue_id": "venue_swedish_american",
              "title": "Friqtao, Raffaele Magliuolo",
              "event_time": "oct 6 8pm",
              "venue_name": "Swedish American Hall",
              "event_start": "2026-10-06T20:00:00",
              "event_date": "2026-10-06",
              "venue_address": "2174 Market St, San Francisco, CA 94114",
              "description": "all ages",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_swedish_american|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_d646384b8acb",
              "venue_id": "venue_great_american_music_hall",
              "title": "The Menzingers, Hot Water Music, Weakened Friends",
              "event_time": "oct 6 7pm",
              "venue_name": "Great American",
              "event_start": "2026-10-06T19:00:00",
              "event_date": "2026-10-06",
              "venue_address": "859 O'Farrell St, San Francisco, CA 94109",
              "description": "all ages",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$40/$45",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_great_american_music_hall|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_1aec36276072",
              "venue_id": "venue_little_hill_lounge",
              "title": "JAZZ ON TUESDAYS",
              "event_time": "October 6, 2026 8 – 10:30pm",
              "venue_name": "Little Hill Lounge",
              "event_start": "2026-10-06T20:00:00",
              "event_date": "2026-10-06",
              "venue_address": "10753 San Pablo Ave, El Cerrito, CA 94530",
              "description": "8pm to 10:30pm, JAZZ ON TUESDAYS, Calendar: Outsound Presents, Location: Little Hill Lounge, 10753 San Pablo Ave, El Cerrito, CA 94530, USA, October 6, 2026",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "",
              "url": "https://calendar.google.com/calendar/event?eid=Y2hobTRkajQ3MHFqMGI5bWNrcW0yYjlrY2hoamdiOW9jZGg2NGI5aTY0cjM0bzlsY2NzbTJkaGg3MF8yMDI2MTAwN1QwMzAwMDBaIDY0MnV1MzBkYXJycTE1dXVsMWM5MjJvaTIwQGc",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_outsound",
                  "source_name": "Outsound",
                  "fetched_at": "2026-08-21T11:15:31.057227Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_little_hill_lounge|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_270a2319c357",
              "venue_id": "venue_the_riptide",
              "title": "Eileen's Punk Rock and Schlock Karaoke",
              "event_time": "October 6 9:30 PM - October 7 12:30 AM",
              "venue_name": "The Riptide",
              "event_start": "2026-10-06T21:30:00",
              "event_date": "2026-10-06",
              "venue_address": "3639 Taraval St, San Francisco, CA 94116",
              "description": "",
              "event_types": [
                "dj_party"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_riptide",
                  "source_name": "The Riptide",
                  "fetched_at": "2026-08-21T11:44:39.209960Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_riptide|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_37561bf68cba",
              "venue_id": "venue_rio_theatre_sc",
              "title": "Kishi Bashi",
              "event_time": "2026-10-06",
              "venue_name": "Rio Theatre",
              "event_start": "2026-10-06T20:00:00",
              "event_date": "2026-10-06",
              "venue_address": "1205 Soquel Ave, Santa Cruz, CA 95062",
              "description": "Kishi Bashi: Sonderlust 10th Anniversary Tourplus:: GeographerKishi Bashi is the pseudonym of Emmy-nominated singer, songwriter, and multi-instrumentalist Kaoru Ishibashi. A Berklee-trained virtuoso violinist, Kishi Bashi is acclaimed for his uplifting, high-energy concerts and his distinctive loop-based violin style. He has also earned recognition for his groundbreaking collaborations with major symphonies—including the National Symphony Orchestra, Chicago Philharmonic, Seattle Symphony, and Oregon Symphony—where he blends classical and pop influences in captivating performances. Beyond the orchestral stage, he has toured internationally with Regina Spektor and of Montreal, and released five acclaimed albums—beginning with his NPR-praised debut 151a (2012), followed by Sonderlust (2016), the documentary project Omoiyari (2019), and most recently Kantos (2024), a kaleidoscopic fusion of funk, jazz, and orchestral pop. Known for his cinematic storytelling and genre-bending sound, Kishi Bashi continues to push creative boundaries while captivating audiences worldwide.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n  \n\n\n\n\n  \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n  \n    \n      \n    \n    \n      \n        \n      \n    \n    \n    \n\n\n\n  \n\n\n\n  \n\n\n\n  \n\n\n\n  \n  \n    \n  \n\n\n    \n\n\n\n  \n\n\n\n\n  Show time: 8:00 PM, doors 7:00 PMTickets: $36.75Advance tickets: www.eventbrite.comEvent website: www.folkyeah.com",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "",
              "url": "https://www.riotheatre.com/events-2/2026/10/6/kishibanshi",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_rio_theatre_sc",
                  "source_name": "Rio Theatre",
                  "fetched_at": "2026-08-22T11:37:08.858495Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_rio_theatre_sc|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fd27966aa250",
              "venue_id": "venue_crepe_place",
              "title": "Jazz the Dog",
              "event_time": "2026-10-06",
              "venue_name": "The Crepe Place",
              "event_start": "2026-10-06T20:00:00",
              "event_date": "2026-10-06",
              "venue_address": "1134 Soquel Ave, Santa Cruz, CA 95062",
              "description": "",
              "event_types": [
                "live_music",
                "jazz"
              ],
              "price_info": "FREE",
              "url": "https://thecrepeplace.com/shows-list/jazz-the-dog-free-show-in-the-garden-tuesday-april-1-from-530-to-730pm",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_crepe_place",
                  "source_name": "The Crepe Place",
                  "fetched_at": "2026-08-22T12:08:33.229412Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_crepe_place|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_e33cf39f557f",
              "venue_id": "venue_act_theater",
              "title": "Alfred Hitchcock's North by Northwest",
              "event_time": "2026-10-06",
              "venue_name": "ACT Theater",
              "event_start": "2026-10-06",
              "event_date": "2026-10-06",
              "venue_address": "415 Geary St, San Francisco, CA 94102",
              "description": "\"I am thrilled, excited and perhaps a little apprehensive to bring the iconic North by Northwest home to the US! I just hope that American audiences will love it as much as our British audiences did. What I am not apprehensive about is bringing its message; one of nations coming together in peace and friendship to make the world a better place. I think we can all raise a glass to that! I am also itching to return to A.C.T. and San Francisco, a piece of my heart will always remain in California and I cannot wait to return to your beautiful theatre, vivid audience and magic state.\" —Emma Rice",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.act-sf.org/whats-on",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_act",
                  "source_name": "ACT",
                  "fetched_at": "2026-08-22T13:54:28.481304Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_act_theater|2026-10-06",
              "run_id": "run_8f5d72a961cd",
              "run_label": "Alfred Hitchcock's North by Northwest, Sep 22 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_51d50d303934",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Love Notes",
              "event_time": "2026-10-06",
              "venue_name": "San Jose CPA",
              "event_start": "2026-10-06",
              "event_date": "2026-10-06",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "A theatrical production",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-08-22T16:44:38.814706Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-10-06",
              "run_id": "run_1ea648ade196",
              "run_label": "Love Notes, Aug 22 – Oct 12",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "contains"
            },
            {
              "event_id": "evt_0fb9e038c083",
              "venue_id": "venue_the_freight__salvage",
              "title": "Benmont Tench",
              "event_time": "2026-10-06T19:00:00",
              "venue_name": "The Freight & Salvage",
              "event_start": "2026-10-06T19:00:00",
              "event_date": "2026-10-06",
              "venue_address": "2020 Addison Street, Berkeley, CA 94704",
              "description": "Account Login Cart Time remaining: 00:00 Enter Promo Code Promo Code (Optional) Activate Code Promo Code View Cart 0 Your cart has expired Your order contained expired items and your shopping cart has been emptied. Close Enter Promo Code Benmont Tench, Tuesday, October 6, 2026 8:00PM Event Summary Tuesday, October 6, 2026 8:00PM Benmont Tench Benmont Tench Additional Details Benmont Tench is a founding member of Tom Petty and The Heartbreakers and one of contemporary music’s finest organ players, piano players, anything- with-keys players. In addition to all of the Heartbreakers recordings, Tench has played on records by Stevie Nicks, Willie Nelson, Green Day, Bob Dylan, Neil Diamond, the Dixie Chicks, the Replacements, John Prine, Waylon Jennings, John Fogerty, Elvis Costello, the Rolling Stones, Johnny Cash, just to name a few. Jimmy Iovine, man of many hats and former Tom Petty and the Heartbreakers' producer, puts it this way: \"If you want a track to sound better, you just put Benmont's part higher in the mix.” Benmont Tench’s second solo LP The Melancholy Season was released March 7, 2024 on Dark Horse Records. The Melancholy Season is Benmont Tench's true arrival as a singer-songwriter, without compromise or doubt. It was produced by Jonathan Wilson–an acclaimed singer-songwriter and touring guitarist for Roger Waters who has worked on career-defining albums for Dawes, Father John Misty and Margo Price–with an attention to the space and intimacy where the best songs breathe and resonate. Website | Facebook | Instagram Read More Hide Additional Options View Full Calendar Please Note: Donor discount applied at checkout. Interested in donating? Click here. Advance Tickets: $44.00 (includes all fees); Day of Show Tickets: $49.00 (includes all fees) Doors: 7:00 PM; Show: 8:00 PM Select your tickets Available Groups Select Other Sold Out! General Admission Please select a group to display sections. Choose an available section to see ticket options Quantity for Gener",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "$44/$49\n(INCLUDES ALL FEES)",
              "url": "https://secure.thefreight.org/16070/16071",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_freight__salvage",
                  "source_name": "The Freight & Salvage",
                  "fetched_at": "2026-08-28T11:17:59.285598Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_freight__salvage|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_7a3b607e886d",
              "venue_id": "venue_berkeley_rep",
              "title": "The Cook",
              "event_time": "2026-10-06",
              "venue_name": "Berkeley Rep",
              "event_start": "2026-10-06",
              "event_date": "2026-10-06",
              "venue_address": "2025 Addison St, Berkeley, CA 94704",
              "description": "Written by Eduardo Machado, this play follows a devoted cook who promises to guard an aristocratic family's Havana mansion after they flee Castro's revolution, holding onto her vow across four decades of political and social upheaval.",
              "event_types": [
                "theater"
              ],
              "price_info": "",
              "url": "https://www.berkeleyrep.org/season/the-cook/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_berkeley_rep",
                  "source_name": "Berkeley Rep",
                  "fetched_at": "2026-08-28T14:28:56.174834Z",
                  "strategy_used": "EXTRACT"
                }
              ],
              "match_key": "venue_berkeley_rep|2026-10-06",
              "run_id": "run_b85aba299461",
              "run_label": "The Cook, Sep 4 – Oct 11",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_26c89eab34ca",
              "venue_id": "venue_the_monkey_house",
              "title": "OM",
              "event_time": "10/06/2026",
              "venue_name": "The Monkey House",
              "event_start": "2026-10-06",
              "event_date": "2026-10-06",
              "venue_address": "1638 University Avenue, Berkeley, CA",
              "description": "The Monkey House hosts an open mic night welcoming local musicians, poets, and storytellers to share their craft. Audience members and performers alike can enjoy a supportive, listening-room atmosphere.",
              "event_types": [
                "live_music"
              ],
              "price_info": "",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_monkey_house",
                  "source_name": "The Monkey House",
                  "fetched_at": "2026-08-28T21:37:06.591184Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_monkey_house|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_824327fa1e7a",
              "venue_id": "venue_de_young",
              "title": "Treasures of the Pharaohs Tour",
              "event_time": "2026-10-06",
              "venue_name": "De Young",
              "event_start": "2026-10-06",
              "event_date": "2026-10-06",
              "venue_address": "50 Hagiwara Tea Garden Dr, San Francisco, CA 94118",
              "description": "Join a museum guide on a tour to learn more about Treasures of the Pharaohs. The free audio tour is available for all visitors in our Bloomberg Connects digital guide. Private guided tours are available for a fee.Contact info museumguides@famsf.org 415.750.7678",
              "event_types": [
                "art",
                "workshop"
              ],
              "price_info": "",
              "url": "https://www.famsf.org/events/guided-tours-treasures-pharaohs",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_de_young",
                  "source_name": "De Young",
                  "fetched_at": "2026-08-28T23:26:10.133710Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_de_young|2026-10-06",
              "run_id": "run_fd5562b4ad43",
              "run_label": "Treasures of the Pharaohs Tour, Aug 4 – Jan 15",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_877d3a9f32ce",
              "venue_id": "venue_punch_line",
              "title": "BRIAN BABYLON",
              "event_time": "Oct 6, 2026 7:30 PM",
              "venue_name": "Punch Line",
              "event_start": "2026-10-06T19:30:00",
              "event_date": "2026-10-06",
              "venue_address": "444 Battery St, San Francisco, CA 94111",
              "description": "Comedian, radio host, and regular panelist Brian Babylon delivers an evening of smart, satirical stand-up comedy.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/brian-babylon-san-francisco-california-10-06-2026/event/1C0064ED02F5FAE9",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_punch_line",
                  "source_name": "Punch Line",
                  "fetched_at": "2026-08-29T00:51:16.225963Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_punch_line|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f12d5427a5d1",
              "venue_id": "venue_cobbs_comedy_club",
              "title": "RAY LAU",
              "event_time": "Tue Oct 6, 2026 7:00PM",
              "venue_name": "Cobb's Comedy Club",
              "event_start": "2026-10-06T19:00:00",
              "event_date": "2026-10-06",
              "venue_address": "915 Columbus Ave, San Francisco, CA 94133",
              "description": "Stand-up comedian Ray Lau performs live at Cobb's Comedy Club, delivering his unique brand of relatable storytelling and playful humor.",
              "event_types": [
                "comedy"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/ray-lau-san-francisco-california-10-06-2026/event/1C0064E7A4EEB526",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cobbs_comedy_club",
                  "source_name": "Cobb's Comedy Club",
                  "fetched_at": "2026-08-29T00:59:26.273361Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_cobbs_comedy_club|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_fce394c15682",
              "venue_id": "venue_hotel_utah_saloon",
              "title": "OPEN BLUEGRASS JAM",
              "event_time": "Tue Oct 6 7:00PM",
              "venue_name": "Hotel Utah",
              "event_start": "2026-10-06T19:00:00",
              "event_date": "2026-10-06",
              "venue_address": "500 4th St, San Francisco, CA 94107",
              "description": "Hotel Utah's weekly Open Bluegrass Jam! Tuesday nights from about 7pm onwards. It’s free, open to the public and all are welcome to play and / or listen. So come out and take part in the Bay Area’s bluegrass scene as we continue to rebuild after covid - We jam until we are done (but not past 10:30 as we have day jobs too). Come join this good time at the Hotel Utah.",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "21+, $0.00",
              "url": "https://wl.seetickets.us/event/Open-Bluegrass-Jam/690217?afflky=HotelUtahSaloon",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_hotel_utah_saloon",
                  "source_name": "Hotel Utah",
                  "fetched_at": "2026-08-31T12:12:52.447528Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_hotel_utah_saloon|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_0babffb95cdf",
              "venue_id": "venue_cornerstone",
              "title": "Evening Elephants",
              "event_time": "2026-10-06T20:00:00",
              "venue_name": "Cornerstone",
              "event_start": "2026-10-06T20:00:00",
              "event_date": "2026-10-06",
              "venue_address": "2367 Shattuck Ave, Berkeley, CA 94704",
              "description": "Indie/alternative rock group Evening Elephants live in concert at Cornerstone Craft Beer & Live Music.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$34",
              "url": "https://concerts50.com/concert/evening-elephants-in-berkeley-tickets-oct-06-2026",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_cornerstone",
                  "source_name": "Cornerstone",
                  "fetched_at": "2026-08-31T14:04:10.183515Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_cornerstone|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_73cd1be9c8f3",
              "venue_id": "venue_chase_center",
              "title": "Warriors vs. Lakers (Preseason)",
              "event_time": "October 6, 2026 - 7:00 PM",
              "venue_name": "Chase Center",
              "event_start": "2026-10-06T19:00:00",
              "event_date": "2026-10-06",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "",
              "event_types": [
                "sports"
              ],
              "price_info": "",
              "url": "https://chasecenter.com/events/20261006-gsw-vs-lal/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-08-31T17:38:13.687686Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_chase_center|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_79bea94104f3",
              "venue_id": "venue_tupelo",
              "title": "DJ Purple Karaoke",
              "event_time": "Tuesday October 6th 9:00PM - 1:00AM",
              "venue_name": "Tupelo",
              "event_start": "2026-10-06T21:00:00",
              "event_date": "2026-10-06",
              "venue_address": "1337 Grant Ave, San Francisco, CA 94133",
              "description": "DJ Purple is BACK! Since COVID imploded our world, we have gotten more calls wondering when Karaoke w/ DJ Purple was returning than anything else, and we sell a lot of ribs! Go get your vaccination shots, drink some tea with honey, and belt out your best songs with your friends. Fog machine standard.",
              "event_types": [
                "dj_party",
                "community"
              ],
              "price_info": "",
              "url": "https://tupelosf.com/#music-calendar",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_tupelo",
                  "source_name": "Tupelo",
                  "fetched_at": "2026-08-31T18:15:02.149048Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_tupelo|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_89cd8c53eefd",
              "venue_id": "venue_brick_and_mortar",
              "title": "TELESCREENS",
              "event_time": "10.6 Show: 8:00PM",
              "venue_name": "Brick and Mortar",
              "event_start": "2026-10-06T20:00:00",
              "event_date": "2026-10-06",
              "venue_address": "1710 Mission St, San Francisco, CA 94103",
              "description": "Event Details Brick & Mortar Music Hall + Popscene Presents TELESCREENS October 6, 2026 8:00 pm PDT (Doors: 7:00 pm ) Brick and Mortar Music Hall , 1710 Mission Street , San Francisco, CA ( map ) $25.00 Buy Tickets + Google Calendar TELESCREENS Telescreens’ third album Why the Lights Flicker is the NYC rockers’ most definitive statement to date, showcasing the band’s conceptual ambitiousness as well as their ability to write immensely satisfying music. Across this thrillingly sprawling record, the quartet— Jackson Hamm (vocals/guitar), Austin Brenner (bass), Josiah Valerius (keys/synth), and Oliver Graf (drums)—deliver full-throated anthems for breaking through the wall of endless modern noise, firmly situating the group in the estimable legacy of NYC rock music as well as within the history of the genre at large. Why the Lights Flicker is the culmination of everything Telescreens (the band name a hat- tip to George Orwell’s essential dystopian text 1984) set out to achieve from the moment they were gigging in earnest as hungry 18-year-olds. Hamm describes the band’s first record The Return from 2018 as “a concept album about a man who goes to space to try and find God to ask him the ultimate question: what happens after you die?” “Making that record taught us a lot about the recording process,” he adds while talking about Telescreens’ reach-for-the-stars approach that was present from the very beginning. “It was insanely ambitious.” To wit: After initial struggles to recreate the exploratory sounds of The Return to the live stage, a chance encounter with family friend and drummer Oliver Graf provided Telescreens with the final piece of their musical puzzle. “He jumped on the kit and he came in playing fucking hard,” Hamm recalls. “He’s the best fucking drummer in the world.” With Graf behind the kit, Telescreens brought forth last year’s follow-up 7, which came about during a three-day recording session in the midst of COVID lockdown anxiety and was dedicated to a",
              "event_types": [
                "live_music"
              ],
              "price_info": "$25.00",
              "url": "https://www.brickandmortarmusic.com/tm-event/telescreens/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_brick_and_mortar",
                  "source_name": "Brick and Mortar",
                  "fetched_at": "2026-09-03T11:13:51.689688Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_brick_and_mortar|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1a2b1753ad4b",
              "venue_id": "venue_the_chapel",
              "title": "Lilyisthatyou: The Flowers Have Feelings Tour",
              "event_time": "2026-10-06T20:00:00",
              "venue_name": "The Chapel",
              "event_start": "2026-10-06T20:00:00",
              "event_date": "2026-10-06",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "Pop artist Lilyisthatyou brings The Flowers Have Feelings Tour to San Francisco.",
              "event_types": [
                "live_music"
              ],
              "price_info": "$25.00 General Admission",
              "url": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQEFaZz53RcNWIupF52NYPilN5kktFTDoK-BXoOhwVueJb31TKaNfk9L2vloCe-hQw8dk_c5X8F199wq_Vq5BeV2hupRymQrb6SL2uvxzYsCGethxLD1VffGQhpUoRIO3y2RObfeXdtd4vH6DrgASPDQwyDYKlhPfjDQ",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-09-04T10:04:30.038559Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_the_chapel|2026-10-06",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "uncertain",
              "venue_match": ""
            },
            {
              "event_id": "evt_620532528e24",
              "venue_id": "venue_sf_playhouse",
              "title": "PETER PAN GOES WRONG",
              "event_time": "2026-10-06",
              "venue_name": "San Francisco Playhouse",
              "event_start": "2026-10-06",
              "event_date": "2026-10-06",
              "venue_address": "450 Post St, San Francisco, CA 94102",
              "description": "San Francisco Playhouse. A beloved puppet takes on Peter Pan, and everything goes spectacularly wrong in this brilliantly chaotic comedy.",
              "event_types": [
                "comedy",
                "theater"
              ],
              "price_info": "Tickets On Sale",
              "url": "https://sfplayhouse.org/2026-2027-season/peter-pan-goes-wrong/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_sf_playhouse",
                  "source_name": "San Francisco Playhouse",
                  "fetched_at": "2026-09-04T10:15:07.852694Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_sf_playhouse|2026-10-06",
              "run_id": "run_80e4def4f445",
              "run_label": "PETER PAN GOES WRONG, Sep 26 – Nov 28",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            }
          ]
        },
        "2026-10-07": {
          "date": "2026-10-07",
          "updated_at": "2026-09-04T10:39:45.271373Z",
          "events": [
            {
              "event_id": "evt_dde8c05501e8",
              "venue_id": "venue_center_for_the_performing_arts",
              "title": "Phantom of the Opera",
              "event_time": "2026-10-07T19:30:00",
              "venue_name": "Center for the Performing Arts",
              "event_start": "2026-10-07T19:30:00",
              "event_date": "2026-10-07",
              "venue_address": "255 S Almaden Blvd, San Jose, CA 95113",
              "description": "J EFFREY LO (Director) is a Filipino-American director and playwright, and TheatreWorks’ Associate Producer of Casting and Literary Management. Directing credits include TheatreWorks’ Miss Bennet, Tiger Style! , Little Shop of Horrors , The Language Archive, and The Santaland Diaries, as well as Vietgone and The Great Leap at Capital Stage, The Glass Menagerie and Chinglish at San Francisco Playhouse, a nd Bald Sisters and Between Riverside and Crazy at San Jose Stage Co. Awards include the Leigh Weimers Emerging Artist Award, the Arts Council Silicon Valley Emerging Artist Laureate, and Theatre Bay Area Director’s TITAN Award. Mr. Lo does work nationally promoting equity, diversity, and inclusion in the arts. He is a graduate of the multicultural Arts Leadership Institute and a proud alumnus of the UC Irvine Drama Department. JeffreyWritesAPlay.com",
              "event_types": [
                "theater"
              ],
              "price_info": "Check website for pricing",
              "url": "https://sanjosetheaters.org/event/phantom-of-the-opera/",
              "tags": [],
              "sources": [
                {
                  "source_name": "Center for the Performing Arts",
                  "fetched_at": "2026-03-22T20:32:01.508551Z",
                  "strategy_used": "LLM",
                  "source_id": "v_center_for_the_performing_arts"
                },
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-04-07T10:31:36.860678Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_san_jose_theaters",
                  "source_name": "San Jose Theaters",
                  "fetched_at": "2026-04-16T07:31:22.462994Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_center_for_the_performing_arts|2026-10-07",
              "run_id": "run_4bf50d8b06a2",
              "run_label": "Phantom of the Opera, Oct 7 – Oct 18",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_84c69035924f",
              "venue_id": "venue_castro_theater",
              "title": "SAMMY RAE & THE FRIENDS",
              "event_time": "October 7, 2026 8:00pm",
              "venue_name": "Castro Theater",
              "event_start": "2026-10-07T20:00:00",
              "event_date": "2026-10-07",
              "venue_address": "429 Castro St, San Francisco, CA 94114",
              "description": "Their sound, which has attracted new fans by the thousands in the past few years, is a unique mélange of Sammy’s influences: classic rock, folk and funk and sprinkled with soul and jazz. Rae has been building toward this moment since moving to NYC from Connecticut in her early 20s. Finding herself without a built-in peer group, she simply built it herself: the literal and proverbial Friends. When she started playing shows, she made sure the audience was part of the family too. Everything that’s happened since – from EP’s “The Good Life” (2018) and “Let’s Throw a Party” (2021) to sold-out shows in major markets and secondary markets alike across North American and the UK & Europe, to high-profile festival sets around the world, including Bonnaroo’s main stage, Sound on Sound, All Things Go, and more – has been based on friends telling friends.",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "SOLD OUT!",
              "url": "https://thecastro.com/events/sammy-rae-and-the-friends-261007",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_castro_theater",
                  "source_name": "Castro Theater",
                  "fetched_at": "2026-04-07T10:00:27.146710Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_castro_theater|2026-10-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_8f28a2c7bc3a",
              "venue_id": "venue_bill_graham_civic",
              "title": "THE NEIGHBOURHOOD",
              "event_time": "October 7, 2026 7:00pm",
              "venue_name": "Bill Graham Civic",
              "event_start": "2026-10-07T19:00:00",
              "event_date": "2026-10-07",
              "venue_address": "99 Grove St, San Francisco, CA 94102",
              "description": "LIVE 105 presents\nTHE WOURLD TOUR - AFTER\nNOISE DEPT.",
              "event_types": [
                "rock",
                "live_music"
              ],
              "price_info": "Sold Out!",
              "url": "https://billgrahamcivic.com/events/the-neighbourhood-261007",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_bill_graham_civic",
                  "source_name": "Bill Graham Civic",
                  "fetched_at": "2026-04-14T08:02:13.710391Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_bill_graham_civic|2026-10-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_9fba35f4efef",
              "venue_id": "venue_the_independent",
              "title": "DEER TICK",
              "event_time": "10.7 8:00 PM",
              "venue_name": "The Independent",
              "event_start": "2026-10-07T20:00:00",
              "event_date": "2026-10-07",
              "venue_address": "628 Divisadero St, San Francisco, CA 94117",
              "description": "Back to Event List Deer Tick Presley Haile Wed, Oct 7 Doors: 7:30 pm | Show: 8:00 pm 21 and up Please note - there is a delivery delay set for 2 weeks prior to show. Deer Tick VIP Pre-show Experience - One (1) General Admission ticket - Hear Deer Tick play a few songs not featured in the night’s setlist! - VIP-exclusive tour poster, signed by the band - Specially designed Deer Tick tote bag - Commemorative VIP laminate and lanyard - Merchandise shopping prior to doors opening to the public - Early entry to the venue Buy Tickets Share + Google Calendar Related Events Novulent Jun 19 Buy Tickets Mamas Gun Jun 20 Buy Tickets Artists Deer Tick The ninth studio album from Deer Tick, Coin-O-Matic casts a bright light on a little-known facet of the American mythos: the hidden histories of the band’s home state of Rhode Island, where the everyday dramas of working-class families long collided with the menace of the mafia underworld. As they tapped into their infinite fascination with that strange duality, singer/guitarist John McCauley, guitarist/singer Ian O’Neil, drummer/singer Dennis Ryan, and bassist Christopher Ryan assembled a batch of songs exploring desperation, grief, redemption, and resilience with both cinematic detail and lived-in emotionality. A sharp new turn from one of indie-rock’s most enduringly vital forces, Coin-O-Matic arrives as a complicated love letter to a way of life slowly slipping from the collective memory. The follow-up to Emotional Contracts (hailed by Uncut as one of 2023’s best albums), Coin-O-Matic takes its title from a cigarette-vending-machine company that served as the headquarters of Raymond Patriarca—a legendary mobster who ran one of the most ruthless crime families in U.S. history. “If you grew up in Rhode Island years ago, you’d see all these mobsters on the news and then run into them at a restaurant on Federal Hill,” says McCauley, referring to Providence’s version of Little Italy. “They were criminals but also very colorful char",
              "event_types": [
                "live_music",
                "folk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://www.theindependentsf.com/tm-event/deer-tick/",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_independent",
                  "source_name": "The Independent",
                  "fetched_at": "2026-04-18T07:25:47.483758Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_independent|2026-10-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_57876ef399b3",
              "venue_id": "venue_the_uc_theatre",
              "title": "Son Lux, Mmeadows",
              "event_time": "Oct 07 - Show: 8:00 pm",
              "venue_name": "UC Theatre",
              "event_start": "2026-10-07T20:00:00",
              "event_date": "2026-10-07",
              "venue_address": "2036 University Ave, Berkeley, CA 94704",
              "description": "Son Lux strives to question assumptions about how music is made and construct their own from a molecular level, cultivating a musical language rooted in curiosity and balancing opposites. Over two decades, the band has released numerous recordings marked by raw emotional intimacy and meticulous electronic constructions, and performed at major venues and festivals globally. Son Lux scored A24’s Best Picture winner Everything Everywhere All at Once, for which they were nominated for two Academy Awards and a BAFTA, as well as Marvel Studios Thunderbolts* (2025) and upcoming Your Mother Your Mother Your Mother (2026). This fall, Son Lux will release Out Into, their ninth studio album, and embark on a world tour.",
              "event_types": [],
              "price_info": "$30 + FEES",
              "url": "https://www.theuctheatre.org/shows/son-lux-07-oct",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_uc_theatre",
                  "source_name": "UC Theatre",
                  "fetched_at": "2026-05-28T17:04:11.601076Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_uc_theatre|2026-10-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_f2af886392b4",
              "venue_id": "venue_greek_theatre",
              "title": "JUNGLE – WORLD TOUR 2026",
              "event_time": "October 7, 2026 7:00pm",
              "venue_name": "Greek Theatre",
              "event_start": "2026-10-07T19:00:00",
              "event_date": "2026-10-07",
              "venue_address": "2001 Gayley Rd, Berkeley, CA 94720",
              "description": "2nd Show Added by Popular Demand! - RIO KOSTA",
              "event_types": [
                "live_music",
                "rnb_soul_funk"
              ],
              "price_info": "BUY TICKETS",
              "url": "https://thegreekberkeley.com/events/jungle-261007",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_greek_theatre",
                  "source_name": "Greek Theatre",
                  "fetched_at": "2026-06-01T15:33:04.336593Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T20:50:03.974614Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_greek_theatre|2026-10-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_84842f6b58d4",
              "venue_id": "venue_the_fillmore",
              "title": "My Moring Jacket",
              "event_time": "oct 7 8pm",
              "venue_name": "The Fillmore",
              "event_start": "2026-10-07T20:00:00",
              "event_date": "2026-10-07",
              "venue_address": "1805 Geary Blvd, San Francisco, CA 94115",
              "description": "This multi-day pass grants access to all seven nights of My Morning Jacket's highly anticipated residency at the venue. It is the ultimate ticket for fans looking to experience the band's diverse catalog across a historic run of shows.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.ticketmaster.com/my-morning-jacket-seven-7-show-san-francisco-california-10-03-2026/event/1C00647DAA0A87C3",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-02T21:39:26.952332Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_fillmore",
                  "source_name": "The Fillmore",
                  "fetched_at": "2026-06-05T10:13:38.208208Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_the_fillmore|2026-10-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_407887b9caa1",
              "venue_id": "venue_the_warfield",
              "title": "The Dresden Dolls",
              "event_time": "Wed, Oct 7, 2026 8:00 PM",
              "venue_name": "The Warfield",
              "event_start": "2026-10-07T20:00:00",
              "event_date": "2026-10-07",
              "venue_address": "982 Market St, San Francisco, CA 94102",
              "description": "Yes, Virginia (Tailor’s Version)",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "Buy Tickets",
              "url": "https://www.thewarfieldtheatre.com/events/detail/1441079",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_the_warfield",
                  "source_name": "The Warfield",
                  "fetched_at": "2026-06-04T13:33:15.937982Z",
                  "strategy_used": "DIRECT"
                },
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-10T10:33:42.275715Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_the_warfield|2026-10-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_5d059c59b93a",
              "venue_id": "venue_mvcpa",
              "title": "Dracula",
              "event_time": "2026-10-07T19:30:00",
              "venue_name": "MV Center for the Performing Arts",
              "event_start": "2026-10-07T19:30:00",
              "event_date": "2026-10-07",
              "venue_address": "500 Castro St, Mountain View, CA 94041",
              "description": "Steven Dietz's adaptation of the timeless classic seduces with elegance and suspense, turning the legendary vampire tale into a high-octane theatrical ride. Presented by TheatreWorks Silicon Valley.",
              "event_types": [
                "theater"
              ],
              "price_info": "Single tickets on sale now",
              "url": "https://theatreworks.org/mainstage/dracula/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_theatreworks",
                  "source_name": "TheatreWorks",
                  "fetched_at": "2026-06-05T11:20:03.531665Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "v_mvcpa",
                  "source_name": "MV Center for the Performing Arts",
                  "fetched_at": "2026-06-19T12:30:20.812618Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_mvcpa|2026-10-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_1330fcddf005",
              "venue_id": "venue_ashby_stage",
              "title": "The Fall Show",
              "event_time": "2026-10-07T20:00:00",
              "venue_name": "Ashby Stage",
              "event_start": "2026-10-07T20:00:00",
              "event_date": "2026-10-07",
              "venue_address": "1901 Ashby Ave, Berkeley, CA 94703",
              "description": "Long-lasting love is marked by both comfort and conflict. In The Fall Show, an older couple's unexpected romance unfolds against a maelstrom of memory and movement. Lovers collide, chaos erupts, and tenderness persists in an intimate examination of love 'til the very end.",
              "event_types": [
                "theater"
              ],
              "price_info": "$25 - $80 (sliding scale)",
              "url": "https://shotgunplayers.org/online/article/the-fall-show",
              "tags": [],
              "sources": [
                {
                  "source_id": "v_ashby_stage",
                  "source_name": "Ashby Stage",
                  "fetched_at": "2026-06-30T10:25:39.676498Z",
                  "strategy_used": "LLM"
                },
                {
                  "source_id": "s_shotgun_players",
                  "source_name": "Shotgun Players",
                  "fetched_at": "2026-07-04T10:27:48.342982Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_ashby_stage|2026-10-07",
              "run_id": "run_538dc31103b5",
              "run_label": "The Fall Show, Sep 26 – Oct 25",
              "showtime_index": 1,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_c92373fe6adc",
              "venue_id": "venue_fox_theatre_oak",
              "title": "Ilana Glazer (comedian)",
              "event_time": "oct 7 7pm",
              "venue_name": "Fox Theatre OAK",
              "event_start": "2026-10-07T19:00:00",
              "event_date": "2026-10-07",
              "venue_address": "1807 Telegraph Avenue, Oakland, CA 94612",
              "description": "Ilana Glazer is a comedian, actor, advocate, and creator best known for co-creating and co-starring in the acclaimed series BROAD CITY. The internationally touring standup comedian debuted her second special, HUMAN MAGIC, on Hulu. You can find her comedy & socio-political video-podcast “IT’S OPEN with Ilana Glazer” every Thursday on YouTube, audio-only available everywhere you podcast. Additionally, Glazer co-wrote and starred in BABES, which premiered at SXSW 2024 to rave reviews before its release with Neon. And in 2025, she made her Broadway debut in the stage adaptation of GOOD NIGHT, & GOOD LUCK alongside George Clooney for a special limited run.",
              "event_types": [
                "comedy"
              ],
              "price_info": "$83.75",
              "url": "https://thefoxoakland.com/events/ilana-glazer-261007",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-06-30T18:59:56.104919Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_fox_theatre_oak",
                  "source_name": "Fox Theatre OAK",
                  "fetched_at": "2026-07-03T12:29:20.800264Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_fox_theatre_oak|2026-10-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": ""
            },
            {
              "event_id": "evt_41dd0943263c",
              "venue_id": "venue_august_hall",
              "title": "French Police, Social Order",
              "event_time": "oct 7 8pm",
              "venue_name": "August Hall",
              "event_start": "2026-10-07T20:00:00",
              "event_date": "2026-10-07",
              "venue_address": "420 Mason St, San Francisco, CA 94102",
              "description": "This website or its third-party tools process personal data. You can opt out of the sale of your personal information by clicking on the \"Do Not Sell or Share my Personal Information\" Link.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$34.70",
              "url": "https://www.augusthallsf.com/tm-event/french-police/",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_august_hall",
                  "source_name": "August Hall",
                  "fetched_at": "2026-07-29T14:20:13.717420Z",
                  "strategy_used": "DIRECT"
                }
              ],
              "match_key": "venue_august_hall|2026-10-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_58597767df9d",
              "venue_id": "venue_chase_center",
              "title": "Rob Wave, Fridayy",
              "event_time": "oct 7 8:30pm",
              "venue_name": "Chase Center",
              "event_start": "2026-10-07T20:30:00",
              "event_date": "2026-10-07",
              "venue_address": "1 Warriors Way, San Francisco, CA 94158",
              "description": "Multi-platinum hip-hop/R&B artist Rod Wave brings his Don't Look Down Tour to Chase Center with special guest Fridayy.",
              "event_types": [
                "live_music",
                "hiphop_rap"
              ],
              "price_info": "$108+",
              "url": "https://www.chasecenter.com/events/rod-wave-20261007",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-07-29T13:51:55.888702Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_chase_center",
                  "source_name": "Chase Center",
                  "fetched_at": "2026-07-31T18:19:49.694145Z",
                  "strategy_used": "LLM"
                }
              ],
              "match_key": "venue_chase_center|2026-10-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_b6c73b9ee12d",
              "venue_id": "venue_thee_stork_club",
              "title": "Sparkler, Badvril, Artificial Muscle",
              "event_time": "oct 7 8pm",
              "venue_name": "Thee Stork Club",
              "event_start": "2026-10-07T20:00:00",
              "event_date": "2026-10-07",
              "venue_address": "2330 Telegraph Ave, Oakland, CA 94612",
              "description": "",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$12/$15",
              "url": "",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                }
              ],
              "match_key": "venue_thee_stork_club|2026-10-07",
              "run_id": "",
              "run_label": "",
              "showtime_index": 0,
              "certainty": "confirmed",
              "venue_match": "exact"
            },
            {
              "event_id": "evt_986a2d50923c",
              "venue_id": "venue_the_chapel",
              "title": "Lloyd Cole (solo electric)",
              "event_time": "oct 7 8pm",
              "venue_name": "The Chapel",
              "event_start": "2026-10-07T20:00:00",
              "event_date": "2026-10-07",
              "venue_address": "777 Valencia St, San Francisco, CA 94110",
              "description": "Veteran singer-songwriter Lloyd Cole performs a solo electric set featuring songs spanning his career from the Commotions to the present.",
              "event_types": [
                "live_music",
                "rock"
              ],
              "price_info": "$30",
              "url": "https://vertexaisearch.cloud.google.com/grounding-api-redirect/AUZIYQGwvne5Cja0jybfy8JrBzAT1q6Jee8BoRK6vMjCL0ZDeYJcH71GRM9DIVQl9oD1OgDgLhE4zeRzDj1p6vJWPrdhudMIdVY_LlJiuJeOf99K_XCmvQvZV8rRJwHXx_Y5DOcdeJVMEOOzVLjCekUoI9UlJg0L7xpCl1PXjUQkRaYGHQvC",
              "tags": [],
              "sources": [
                {
                  "source_id": "s_stevelist",
                  "source_name": "Stevelist",
                  "fetched_at": "2026-08-15T10:56:43.296030Z",
                  "strategy_used": "PARSER"
                },
                {
                  "source_id": "v_the_chapel",
                  "source_name": "The Chapel",
                  "fetched_at": "2026-09-04T10:04:30