Marketplace
No threads yet
Live

get_resolved_artist_events

bandsintown.com

Resolves an artist name on https://bandsintown.com and returns the matched profile, identifiers, and upcoming events with optional country or EU filtering.

Parameters3
Runs5
Updated3d ago
Operational5 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_resolved_artist_events?

Resolves an artist name on https://bandsintown.com and returns the matched profile, identifiers, and upcoming events with optional country or EU filtering. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass artist_name, country, region and get the result back without maintaining a scraper.

Response

{
  "query": "<string>",
  "events": [
    {}
  ],
  "region": "<string>",
  "country": "<string>",
  "profile": {},
  "artist_slug": "<string>",
  "resolved_artist_id": 0,
  "resolved_artist_slug": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/d90b319b-900f-4f46-99f7-22a5587224a7/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "d90b319b-900f-4f46-99f7-22a5587224a7",
    "variables": {
        "artist_name": "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="d90b319b-900f-4f46-99f7-22a5587224a7") — the "get_resolved_artist_events" function, which resolves an artist name on https://bandsintown.com and returns the matched profile, identifiers, and upcoming events with optional country or EU filtering..

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