Marketplace
No threads yet
Live

get_artist_events

bandsintown.com

Gets an artist profile and all upcoming concert events from https://bandsintown.com, including venue, schedule, lineup, availability, pricing, and ticket links. Accepts an artist slug and can filter events by one country or by the 27-member EU region.

Parameters3
Runs14
Updated10d ago
Operational14 runs · 100% succeeded
30 days agotoday

Playground

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

What is get_artist_events?

Gets an artist profile and all upcoming concert events from https://bandsintown.com, including venue, schedule, lineup, availability, pricing, and ticket links. Accepts an artist slug and can filter events by one country or by the 27-member EU region. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass artist_slug, country, region and get the result back without maintaining a scraper.

Response

{
  "events": [
    {}
  ],
  "region": "<string>",
  "country": "<string>",
  "profile": {},
  "artist_slug": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/241724ea-53a5-4f13-8c18-6ed44311f3b4/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "241724ea-53a5-4f13-8c18-6ed44311f3b4",
    "variables": {
        "artist_slug": "15295697-austin-giorgio",
        "country": "",
        "region": ""
    }
}'

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="241724ea-53a5-4f13-8c18-6ed44311f3b4") — the "get_artist_events" function, which gets an artist profile and all upcoming concert events from https://bandsintown.com, including venue, schedule, lineup, availability, pricing, and ticket links. Accepts an artist slug and can filter events by one country or by the 27-member EU region..

It takes artist_slug (str), country (str), region (str). Return the result as structured JSON.