tixbit

📁 tixbit/skills 📅 3 days ago
3
总安装量
3
周安装量
#56546
全站排名
安装命令
npx skills add https://github.com/tixbit/skills --skill tixbit

Agent 安装分布

openclaw 3
mcpjam 1
claude-code 1
junie 1
windsurf 1
zencoder 1

Skill 文档

TixBit SDK Skill

Use the official CLI package:

npx -y @tixbit/sdk <command>

Prefer --json for agent-readable output.

When to use

  • Find events and ticket options on TixBit.
  • Compare listing prices/sections for a known event.
  • Generate checkout links for a selected listing.

When not to use

  • Finalize payment (checkout is completed by the user in browser).
  • Access private account/order history workflows.
  • Perform non-TixBit ticketing operations.

Core commands

# Search events
npx -y @tixbit/sdk search "Braves" --city Atlanta --state GA --size 10 --json

# Browse local events
npx -y @tixbit/sdk browse --city Atlanta --state GA --json

# Listings for an event
npx -y @tixbit/sdk listings <eventId> --size 10 --sort asc --json

# Venue seatmap
npx -y @tixbit/sdk seatmap <eventId> --json

# Checkout link for a listing
npx -y @tixbit/sdk checkout <listingId> --quantity 2 --json

# Event URL
npx -y @tixbit/sdk url <slugOrId>

End-to-end example (search → listings → checkout)

# 1) Find Braves games in Atlanta
npx -y @tixbit/sdk search "Braves" --city Atlanta --state GA --size 10 --json

# 2) Pick an eventId from step 1, then fetch cheapest listings
npx -y @tixbit/sdk listings V6DJKPG --size 10 --sort asc --json

# 3) Pick a listingId from step 2, then generate checkout URL
npx -y @tixbit/sdk checkout 7JOLYY5R --quantity 2 --json

Notes

  • No API key is required for standard public ticket discovery.
  • checkout returns a link; payment is completed by the user in browser.
  • Optional env vars: TIXBIT_BASE_URL, TIXBIT_API_KEY.