Marketplace
No threads yet
Live

search_shotgun_records

shotgun.live

Performs full-text search on https://shotgun.live across events, organizers, and artists. Returns structured matching events with pricing, location, timing, artwork, and genre tags, plus organizer, artist, and city matches.

Parameters1
Runs10
Updated10d ago
Degraded10 runs · 90% succeeded
30 days agotoday

Playground

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

What is search_shotgun_records?

Performs full-text search on https://shotgun.live across events, organizers, and artists. Returns structured matching events with pricing, location, timing, artwork, and genre tags, plus organizer, artist, and city matches. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query and get the result back without maintaining a scraper.

Response

{
  "query": "<string>",
  "cities": [
    {}
  ],
  "counts": {},
  "events": [
    {}
  ],
  "artists": [
    {}
  ],
  "organizers": [
    {}
  ],
  "source_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/fdb92a0b-6b61-4b8a-ac24-ae0a8173dd71/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "fdb92a0b-6b61-4b8a-ac24-ae0a8173dd71",
    "variables": {
        "query": "house"
    }
}'

Ask an agent

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

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

Call run(function_id="fdb92a0b-6b61-4b8a-ac24-ae0a8173dd71") — the "search_shotgun_records" function, which performs full-text search on https://shotgun.live across events, organizers, and artists. Returns structured matching events with pricing, location, timing, artwork, and genre tags, plus organizer, artist, and city matches..

It takes query (str). Return the result as structured JSON.