ticketmaster — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited ticketmaster (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
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.
| 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 |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ Ticketmaster API │
│ (User Chat) │ │ (OAuth) │ │ │
└─────────────────┘ └──────────────┘ └──────────────────┘openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restartSearch 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"}'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
List connections:
clawlink_list_integrationsVerify connection:
clawlink_execute_tool --integration ticketmaster --tool ticketmaster_get_classificationsReconnect: If needed, visit the dashboard URL above to reconnect Ticketmaster.
| 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 |
| 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 |
| 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 |
| 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 |
| Tool | Description | Mode |
|---|---|---|
ticketmaster_execute_season_ticketing_command | Execute Archtics Season Ticketing commands (ping, customer_query, seats_sold, event_search, etc.) | Read |
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": {}
}clawlink_list_integrations to confirm ticketmaster is connected.clawlink_list_tools --integration ticketmaster to see the live catalog.ticketmaster_get_classifications to understand the event taxonomy (segments, genres).ticketmaster_get_events with location and classification filters to find events.ticketmaster_get_event_details to get full event information.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)size * page must be less than 1000. Maximum 200 results per page.get_suggestions2 tool provides type-ahead search with fuzzy matching, location filtering, and spell checking.| 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 |
Run clawlink_list_tools --integration ticketmaster to verify the integration is active. If empty, reconnect at https://claw-link.dev/dashboard?add=ticketmaster.
Verify the classificationName matches valid Ticketmaster segments (Music, Sports, Arts & Theatre, Family, Film, Miscellaneous). Try broadening the search or removing filters.
Ensure size * page is less than 1000. Use smaller page sizes and increment the page number.
Try searching with a partial name or different spelling. Use get_venues with a keyword rather than an exact match.
Powered by [ClawLink](https://claw-link.dev/?utm_source=clawhub&utm_medium=referral&utm_content=ticketmaster) -- an integration hub for OpenClaw

~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.