search_catalog
bandsintown.comSearches the full Bandsintown catalog at https://bandsintown.com and returns matching artists, nearby upcoming events, festivals, and venues. Artist IDs and names can be combined into the slug accepted by the artist-events function.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_catalog?
Searches the full Bandsintown catalog at https://bandsintown.com and returns matching artists, nearby upcoming events, festivals, and venues. Artist IDs and names can be combined into the slug accepted by the artist-events function. 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>",
"events": [
{}
],
"venues": [
{}
],
"artists": [
{}
],
"festivals": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/ef6ab54e-d6b6-4639-a776-1dcdf068f8a2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ef6ab54e-d6b6-4639-a776-1dcdf068f8a2",
"variables": {
"query": "Austin"
}
}'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="ef6ab54e-d6b6-4639-a776-1dcdf068f8a2") — the "search_catalog" function, which searches the full Bandsintown catalog at https://bandsintown.com and returns matching artists, nearby upcoming events, festivals, and venues. Artist IDs and names can be combined into the slug accepted by the artist-events function.. It takes query (str). Return the result as structured JSON.