get_artist_past_events
bandsintown.comReturns past concert events from an artist tour history on https://bandsintown.com, including venue, location, and timing details. Supports optional filtering by ISO country code or the EU region.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_artist_past_events?
Returns past concert events from an artist tour history on https://bandsintown.com, including venue, location, and timing details. Supports optional filtering by ISO country code or the 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, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"events": [
{}
],
"region": "<string>",
"country": "<string>",
"artist_name": "<string>",
"artist_slug": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/b161adda-ef04-4290-9e8e-0a779f8e3261/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "b161adda-ef04-4290-9e8e-0a779f8e3261",
"variables": {
"artist_slug": "1488-drake",
"country": "",
"region": "",
"timeout_seconds": 30
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="b161adda-ef04-4290-9e8e-0a779f8e3261") — the "get_artist_past_events" function, which returns past concert events from an artist tour history on https://bandsintown.com, including venue, location, and timing details. Supports optional filtering by ISO country code or the EU region.. It takes artist_slug (str), country (str), region (str), timeout_seconds (int). Return the result as structured JSON.