# Ticketmaster Event Search via StableTickets

> Ticketmaster Event Search via StableTickets is a paid API for AI agents from stabletickets.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14, last successful call 2026-08-12).

Search Ticketmaster events by keyword, date range, location, venue, attraction, or classification category

## Facts

- Endpoint: POST https://stabletickets.dev/api/events/search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-08-12
- Success rate: 80% of calls made through Zero
- Rating: 4.3 / 5 from 1 review
- Activations on Zero: 5
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stabletickets-dev-94100adf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qHXUYTktVp5fi493-8nuO

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability stabletickets-dev-94100adf -d '<json body>'
```

Example prompt: Search Ticketmaster for rock concerts happening in Los Angeles between December 1 and December 31, 2025 — show me events sorted by date with venue info and ticket links.

## When to prefer this

Use this endpoint when you need to search across Ticketmaster's live event inventory with flexible filters like keyword, date range, city, venue, or genre. Prefer this over attraction or venue search when the user's intent is to find specific events to attend rather than looking up performer details or venue information.

## Known failure modes

- No events found matching criteria — returns empty results array
- Invalid date format — returns 400 error
- Invalid venue or attraction ID — returns 400 or empty results
- Rate limit exceeded — returns 429 error
- Ticketmaster API downstream outage — returns 502 or 503
- Missing required keyword or filter — returns 400 validation error

## How this service works

Search Ticketmaster events by keyword, date, location, venue, attraction, or classification

## Output

Returns a list of Ticketmaster events matching the query, including event names, dates, venues, ticket URLs, price ranges, genre/classification info, and availability status.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "array",
     "items": {
      "type": "string"
     }
    }
   ],
   "description": "Filter by event IDs"
  },
  "city": {
   "type": "string"
  },
  "page": {
   "type": "integer",
   "maximum": 9007199254740991,
   "minimum": 0,
   "description": "Zero-based page number"
  },
  "size": {
   "type": "integer",
   "maximum": 200,
   "minimum": 1,
   "description": "Page size; Ticketmaster max is 200"
  },
  "sort": {
   "type": "string",
   "description": "Ticketmaster sort string such as \"date,asc\""
  },
  "unit": {
   "enum": [
    "miles",
    "km"
   ],
   "type": "string"
  },
  "dmaId": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "array",
     "items": {
      "type": "string"
     }
    }
   ],
   "description": "Designated market area IDs"
  },
  "domain": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "array",
     "items": {
      "type": "string"
     }
    }
   ],
   "description": "Filter entities by domain availability"
  },
  "locale": {
   "type": "string",
   "default": "*",
   "description": "Locale such as en-us, en, or *"
  },
  "radius": {
   "type": "number"
  },
  "source": {
   "anyOf": [
    {
     "enum": [
      "ticketmaster",
      "universe",
      "frontgate",
      "tmr"
     ],
     "type": "string"
    },
    {
     "type": "array",
     "items": {
      "enum": [
       "ticketmaster",
       "universe",
       "frontgate",
       "tmr"
      ],
      "type": "string"
     }
    }
   ],
   "description": "Ticketmaster source filter"
  },
  "genreId": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "array",
     "items": {
      "type": "string"
     }
    }
   ],
   "description": "Single value, comma-separated values, or string array"
  },
  "keyword": {
   "type": "string",
   "description": "Keyword to search"
  },
  "latlong": {
   "type": "string",
   "description": "Deprecated Ticketmaster lat,long filter; prefer geoPoint"
  },
  "venueId": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "array",
     "items": {
      "type": "string"
     }
    }
   ],
   "description": "Filter by venue IDs"
  },
  "geoPoint": {
   "type": "string",
   "description": "GeoHash location filter"
  },
  "marketId": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "array",
     "items": {
      "type": "stri
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stabletickets-dev-94100adf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stabletickets.dev](https://www.zero.xyz/host/stabletickets.dev/llms.txt)
