# Stabletickets Ticketmaster Suggestions

> Stabletickets Ticketmaster Suggestions 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).

Returns autocomplete/suggestion results across Ticketmaster events, attractions, venues, and products given a search query

## Facts

- Endpoint: POST https://stabletickets.dev/api/suggest
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stabletickets-dev-03057ac1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PXTnihzLwffhq4T7sCq1w

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-03057ac1 -d '<json body>'
```

Example prompt: Can you get me Ticketmaster suggestions for 'Taylor Swift' — I want to see matching events, attractions, and venues all at once so I can pick the right one to search further.

## When to prefer this

Use this endpoint when you need broad, cross-category autocomplete or suggestion results from Ticketmaster — covering events, attractions, venues, and products in a single call — rather than searching a specific category. Ideal for typeahead search boxes or when the user has only typed a partial query and you want to surface the best matching entities across all types.

## Known failure modes

- Empty query returns no suggestions or an error
- Query too short may return irrelevant or no results
- Ticketmaster API unavailability causes upstream errors
- Invalid request format returns 400 bad request
- Payment failure for the $0.01 USDC x402 fee blocks the call

## How this service works

Get Ticketmaster suggestions across events, attractions, venues, and products

## Output

A list of suggestion results from Ticketmaster spanning events, attractions, venues, and products that match the input query, typically used for autocomplete or typeahead UX flows.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "size": {
   "type": "integer",
   "maximum": 20,
   "minimum": 1
  },
  "unit": {
   "enum": [
    "miles",
    "km"
   ],
   "type": "string"
  },
  "domain": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "array",
     "items": {
      "type": "string"
     }
    }
   ],
   "description": "Single value, comma-separated values, or string array"
  },
  "locale": {
   "type": "string",
   "default": "en"
  },
  "radius": {
   "type": "number"
  },
  "source": {
   "enum": [
    "ticketmaster",
    "universe",
    "frontgate",
    "tmr"
   ],
   "type": "string"
  },
  "keyword": {
   "type": "string"
  },
  "latlong": {
   "type": "string",
   "description": "Deprecated Ticketmaster lat,long filter; prefer geoPoint"
  },
  "geoPoint": {
   "type": "string",
   "description": "GeoHash location filter"
  },
  "resource": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "array",
     "items": {
      "type": "string"
     }
    }
   ],
   "description": "Resources to include: attractions, events, venues, products"
  },
  "segmentId": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "array",
     "items": {
      "type": "string"
     }
    }
   ],
   "description": "Single value, comma-separated values, or string array"
  },
  "includeTBA": {
   "enum": [
    "yes",
    "no",
    "only"
   ],
   "type": "string"
  },
  "includeTBD": {
   "enum": [
    "yes",
    "no",
    "only"
   ],
   "type": "string"
  },
  "countryCode": {
   "type": "string",
   "maxLength": 2,
   "minLength": 2
  },
  "endDateTime": {
   "type": "string"
  },
  "includeTest": {
   "enum": [
    "yes",
    "no",
    "only"
   ],
   "type": "string"
  },
  "startDateTime": {
   "type": "string"
  },
  "preferredCountry": {
   "enum": [
    "us",
    "ca"
   ],
   "type": "string"
  },
  "startEndDateTime": {
   "type": "string"
  },
  "includeSpellcheck": {
   "enum": [
    "yes",
    "no"
   ],
   "type": "string"
  },
  "localStartEndDateTime": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stabletickets-dev-03057ac1/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)
