find_live_shows
Given a list of artists the user likes, find upcoming shows in a supported city (Austin or Chicago) where one of those artists is on the bill, ranked (most matches first, then soonest). Taste is a PARAMETER — no account or login needed. Each result includes why_matched (which of the user's artists plays). This is direct-artist matching; genre-based discovery of similar artists is available in the CatchaSet web app, not here.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | City to search. Only Austin and Chicago are supported; other values default to Austin with an unsupported_city note. | Austin |
| limit | No | Max shows to return (1-100). | |
| cursor | No | Opaque pagination cursor from a previous response's next_cursor. | |
| artists | Yes | Names of acts the user likes. Required — this is the taste to match. | |
| date_to | No | Optional inclusive upper bound, ISO date YYYY-MM-DD. | |
| date_from | No | Optional inclusive lower bound, ISO date YYYY-MM-DD. |