Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

ticketmasterticketmaster 搜索

Agent Skill

ticketmaster 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,576

周安装

266

GitHub Stars

1

下载量

2,064
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ticketmaster(ticketmaster 搜索)
来源仓库:https://github.com/ivangdavila/ticketmaster
安装命令:
openclaw skills install ticketmaster
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install ticketmaster

简介

使用 Discovery API 过滤器、市场感知查询以及可复制的 curl 和 shell 帮助程序搜索 Ticketmaster 活动、场地和景点。

SKILL.md

name
TicketMaster
slug
ticketmaster
version
1.0.0
homepage
https://clawic.com/skills/ticketmaster
description
Search Ticketmaster events, venues, and attractions with Discovery API filters, market-aware queries, and copy-ready curl and shell helpers.
changelog
Added Discovery API workflows, venue filters, and a local shell helper for faster event lookups.
metadata
{"clawdbot":{"emoji":"🎟️","requires":{"env":["TM_API_KEY"],"bins":["curl"],"config":["~/ticketmaster/"]},"primaryEnv":"TM_API_KEY","os":["linux","darwin","win32"]}}

TicketMaster

Use the open Ticketmaster Discovery API for search and lookup work. Reach for the bundled ticketmaster.sh helper when terminal speed matters, and fall back to raw curl when exact response shapes matter.

When to Use

User needs live Ticketmaster listings, venue discovery, attraction lookup, onsale windows, or API-ready search filters. This skill stays inside the open Discovery API surface and keeps reusable defaults local.

Architecture

Memory lives in ~/ticketmaster/. If ~/ticketmaster/ does not exist, run setup.md. See memory-template.md for structure.

~/ticketmaster/
├── memory.md   # Preferred locale, market, city, and query defaults
├── queries.md  # Saved queries that worked well
└── logs/       # Optional helper output captures

Quick Reference

TopicFile
Setup and API key bootstrapsetup.md
Memory templatememory-template.md
Open endpoints and response mapendpoints.md
Search recipes and curl examplesquery-patterns.md
Filters, paging, and sort rulesfilters-and-pagination.md
Error handling and quota limitserrors.md
Local helper CLI wrapperticketmaster.sh

Open only the smallest file needed for the task. Most daily work is query-patterns.md plus errors.md.

Quick Start

export TM_API_KEY="..."

./ticketmaster.sh events "coldplay" --city Madrid --country ES --size 5
./ticketmaster.sh venues "wizink" --city Madrid

curl --get "https://app.ticketmaster.com/discovery/v2/events.json" \
  --data-urlencode "apikey=$TM_API_KEY" \
  --data-urlencode "keyword=adele" \
  --data-urlencode "countryCode=GB" \
  --data-urlencode "size=3"

Open Surface

  • Open here: Discovery API search and lookup for events, venues, attractions, and classifications.
  • Not open here: partner-only offers, cart, checkout, hold, publish, or inventory mutation flows.
  • If the user asks for purchase automation, explain the boundary first instead of implying the open API can do it.

Core Rules

1. Start with Discovery API, not purchase assumptions

  • Use search and lookup endpoints for events, venues, attractions, and classifications first.
  • Do not claim cart, order, hold, or refund actions are available through the open flow.

2. Always pass apikey as a query parameter

  • Official open endpoints expect apikey.
  • Keep the key in TM_API_KEY and out of files, screenshots, and pasted examples.

3. Constrain the search before paging

  • Prefer keyword plus location or identity filters such as city, countryCode, dmaId, marketId, venueId, or attractionId.
  • Ticketmaster documents deep paging only while size * page < 1000, so tighten filters early.

4. Use UTC timestamps and read sales windows carefully

  • startDateTime, endDateTime, and onsale filters should be ISO-8601 UTC strings like 2026-05-01T00:00:00Z.
  • Read sales.public.startDateTime, sales.presales, and dates.start before describing availability.

5. Inspect embedded objects, not just the event headline

  • Read _embedded.venues, _embedded.attractions, classifications, locale, and price ranges when present.
  • Venue or city mismatches usually mean the query is too broad or the market is cross-listed.

6. Respect documented quota and rate limits

  • Default quota is 5000 calls per day with 5 requests per second.
  • Cache event IDs and venue IDs locally when iterating on the same search space.

7. Keep local defaults local

  • Store locale, country, city, market, and preferred sort order in ~/ticketmaster/memory.md.
  • Never persist API keys or any purchase data in skill memory.

Requirements

  • TM_API_KEY from the Ticketmaster Developer Portal
  • curl for raw requests and the bundled ticketmaster.sh helper
  • Optional jq if you want prettier local output from ticketmaster.sh

Common Traps

  • Using countryCode alone for large markets -> noisy result sets and wasted quota.
  • Treating Discovery results as purchase confirmation -> the open API exposes listings, not checkout guarantees.
  • Paging deep without filters -> results stop being supported once size * page reaches 1000.
  • Using local time strings -> events shift or disappear; convert to UTC ISO timestamps.
  • Ignoring locale -> multilingual markets can return names or links that look inconsistent.

External Endpoints

EndpointData SentPurpose
https://app.ticketmaster.com/discovery/v2/*.jsonSearch keywords, locale, timestamps, IDs, filters, and apikeySearch and fetch events, venues, attractions, and classifications

Use GET discovery calls only. Keep everything else local.

No other data is sent externally.

Security & Privacy

Data that leaves your machine:

  • Search terms, filters, locale, timestamps, and IDs sent to Ticketmaster Discovery API
  • Your API key sent as the documented apikey query parameter

Data that stays local:

  • Preferences and defaults in ~/ticketmaster/
  • Saved command patterns and notes you choose to keep

This skill does NOT:

  • Place orders, hold inventory, or bypass partner-only purchase flows
  • Store TM_API_KEY in skill memory
  • Access files outside ~/ticketmaster/

Scope

This skill ONLY:

  • Uses the open Ticketmaster Discovery API surface
  • Provides copy-ready curl queries and the bundled ticketmaster.sh helper
  • Stores local search defaults in ~/ticketmaster/

This skill NEVER:

  • Uses hidden or undocumented endpoints
  • Claims checkout, refunds, or seat locking through open Discovery API
  • Writes secrets into local memory

Trust

By using this skill, data is sent to Ticketmaster (ticketmaster.com). Only install if you trust Ticketmaster with your search terms and event lookup data.

Related Skills

Install with clawhub install <slug> if user confirms:

  • api — General REST API patterns for request shaping and response inspection
  • booking — Reservation workflows and confirmation hygiene when discovery turns into action
  • events — Event-planning workflows around schedules, listings, and logistics

Feedback

  • If useful: clawhub star ticketmaster
  • Stay updated: clawhub sync

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

78.6%
按下载量换算1,622

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills