| name | ticketmaster |
| description | Ticketmaster API integration for event discovery and ticket information. Search events by location, date, keyword, or classification. Browse attractions, venues, categories, and seating maps. Use this skill when users want to find concerts, sports games, or shows nearby, search events by artist or venue, browse event categories and genres, or get venue details and seating information. |
Ticketmaster

Ticketmaster is the world's largest event ticketing platform covering concerts, sports, theater, and family events. This integration connects to the Ticketmaster Discovery API to search events, browse attractions and venues, explore classifications and genres, and retrieve event images and venue maps.
Setup in 3 Steps
| Step 1: Install | Step 2: Pair Account | Step 3: Connect Ticketmaster |
|---|
 |  | App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect Ticketmaster |
How It Works
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ Ticketmaster API │
│ (User Chat) │ │ (OAuth) │ │ │
└─────────────────┘ └──────────────┘ └──────────────────┘
Install
openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
Quick Start
Search for events in a specific city:
clawlink_execute_tool --integration ticketmaster --tool ticketmaster_get_events --args '{"city": "New York", "stateCode": "NY", "classificationName": "Music", "sort": "date,asc"}'
Get details for a specific event:
clawlink_execute_tool --integration ticketmaster --tool ticketmaster_get_event_details --args '{"id": "event-id-here"}'
Search for venues by name:
clawlink_execute_tool --integration ticketmaster --tool ticketmaster_get_venues --args '{"keyword": "Madison Square Garden"}'
Authentication
Ticketmaster uses API key authentication managed by ClawLink. No personal API keys are needed. The connection is handled through the ClawLink dashboard.
Connect at: https://claw-link.dev/dashboard?add=ticketmaster
Connection Management
List connections:
clawlink_list_integrations
Verify connection:
clawlink_execute_tool --integration ticketmaster --tool ticketmaster_get_classifications
Reconnect: If needed, visit the dashboard URL above to reconnect Ticketmaster.
Security & Permissions
- All Ticketmaster tools are read-only operations. No confirmation is needed for any tool call.
- The integration uses the Discovery API for searching and browsing publicly available event data.
- Season Ticketing commands interact with the Archtics system for administrative operations.
Tool Reference
Event Search & Discovery
| Tool | Description | Mode |
|---|
ticketmaster_get_events | Search events by location, date, keywords, classifications, and more | Read |
ticketmaster_get_event_details | Retrieve detailed information about a specific event by ID | Read |
ticketmaster_get_event_images | Retrieve image URLs and metadata for an event | Read |
ticketmaster_get_suggestions2 | Advanced auto-complete suggestions with filtering (type-ahead search) | Read |
Attraction (Artist/Performer) Operations
| Tool | Description | Mode |
|---|
ticketmaster_get_attractions | Search for artists, teams, or performers by keyword or classification | Read |
ticketmaster_get_attraction_details2 | Retrieve detailed info about a specific attraction by ID | Read |
Venue Operations
| Tool | Description | Mode |
|---|
ticketmaster_get_venues | Search venues by name, location, or ID | Read |
ticketmaster_get_venue_details2 | Retrieve comprehensive venue details including location and amenities | Read |
ticketmaster_get_section_map_image | Retrieve seating section map image for an event | Read |
Classification & Genre Operations
| Tool | Description | Mode |
|---|
ticketmaster_get_classifications | List event classifications (segments, genres, subgenres hierarchy) | Read |
ticketmaster_get_classification_details | Retrieve details about a specific classification by ID | Read |
ticketmaster_get_segment_details | Retrieve segment with all genres and subgenres (Music, Sports, Arts, etc.) | Read |
ticketmaster_get_genre_details | Retrieve details about a specific genre | Read |
ticketmaster_get_subgenre_details | Retrieve details about a specific subgenre | Read |
Season Ticketing Operations
| Tool | Description | Mode |
|---|
ticketmaster_execute_season_ticketing_command | Execute Archtics Season Ticketing commands (ping, customer_query, seats_sold, event_search, etc.) | Read |
Code Examples
Search for music events in a city:
{
"tool": "ticketmaster_get_events",
"args": {
"city": "Los Angeles",
"stateCode": "CA",
"classificationName": "Music",
"sort": "date,asc",
"size": 10
}
}
Find events by keyword:
{
"tool": "ticketmaster_get_events",
"args": {
"keyword": "Taylor Swift",
"sort": "date,asc"
}
}
Search for attractions (artists/teams):
{
"tool": "ticketmaster_get_attractions",
"args": {
"keyword": "Lakers",
"classificationName": "Sports"
}
}
Get venue details:
{
"tool": "ticketmaster_get_venue_details2",
"args": {
"id": "venue-id-here"
}
}
Browse event classifications:
{
"tool": "ticketmaster_get_classifications",
"args": {}
}
Discovery Workflow
- Call
clawlink_list_integrations to confirm ticketmaster is connected.
- Call
clawlink_list_tools --integration ticketmaster to see the live catalog.
- Use
ticketmaster_get_classifications to understand the event taxonomy (segments, genres).
- Use
ticketmaster_get_events with location and classification filters to find events.
- Use
ticketmaster_get_event_details to get full event information.
Execution Workflow
Read Flow:
get_classifications → get_events (filtered by classification + location) → get_event_details
Search Flow:
get_events (keyword) → get_event_details → get_event_images / get_section_map_image
Venue Flow:
get_venues (keyword) → get_venue_details2 → get_events (venueId)
Attraction Flow:
get_attractions (keyword) → get_attraction_details2 → get_events (attractionId)
Notes
- The Discovery API has a deep paging limit:
size * page must be less than 1000. Maximum 200 results per page.
- Classifications follow a hierarchy: Segment (top-level, e.g., Music, Sports) > Genre (secondary, e.g., Rock, Baseball) > Subgenre (tertiary, e.g., Alternative Rock, MLB).
- Season Ticketing commands may return 202 ACCEPTED for asynchronous operations. Poll with provided cookies until receiving 200 OK.
- Event search supports location by city, state, postal code, lat/long, or radius.
- The
get_suggestions2 tool provides type-ahead search with fuzzy matching, location filtering, and spell checking.
Error Handling
| Status / Error | Meaning |
|---|
| 400 Bad Request | Invalid parameter or filter value |
| 401 Unauthorized | API key issue; reconnect Ticketmaster from the dashboard |
| 404 Not Found | Invalid event, venue, attraction, or classification ID |
| 429 Too Many Requests | Rate limit exceeded; retry after a short delay |
Troubleshooting
Tools Not Visible
Run clawlink_list_tools --integration ticketmaster to verify the integration is active. If empty, reconnect at https://claw-link.dev/dashboard?add=ticketmaster.
Search Returns No Results
Verify the classificationName matches valid Ticketmaster segments (Music, Sports, Arts & Theatre, Family, Film, Miscellaneous). Try broadening the search or removing filters.
Deep Paging Error
Ensure size * page is less than 1000. Use smaller page sizes and increment the page number.
Venue Not Found
Try searching with a partial name or different spelling. Use get_venues with a keyword rather than an exact match.
Resources
Powered by ClawLink -- an integration hub for OpenClaw
