Search for upcoming concerts, sports, theater, and other live events using the Ticketmaster Discovery API.
- Create an account at https://developer.ticketmaster.com/
- Go to My Apps → Add a new App
- Copy the Consumer Key (this is your API key)
The free tier allows 5,000 requests per day.
{
"plugins": {
"entries": {
"events": {
"enabled": true,
"config": {
"apiKey": "YOUR_TICKETMASTER_API_KEY",
"defaultLocation": "Miami"
}
}
}
}
}Or via CLI:
openclaw config set plugins.entries.events.enabled true
openclaw config set plugins.entries.events.config.apiKey YOUR_KEY
openclaw config set plugins.entries.events.config.defaultLocation Miami| Key | Type | Required | Description |
|---|---|---|---|
apiKey |
string | yes | Ticketmaster Discovery API consumer key |
defaultLocation |
string | no | Default city for searches (e.g. "Miami") |
The plugin registers an events_search tool available to all agents when the
plugin is enabled.
location(string, optional) — city to search; falls back todefaultLocationkeyword(string, optional) — genre or artist filter (e.g."electronic")days(number, optional) — how many days ahead to search (default: 7)
"What concerts are happening in Austin this weekend?"
openclaw events Miami --keyword jazz --days 14
openclaw events "New York" --keyword "Broadway"
openclaw events # uses defaultLocation from config