# StableTickets Venue Search

> StableTickets Venue Search 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).

Search Ticketmaster venues by keyword, location, or venue ID via a paid API proxy

## Facts

- Endpoint: POST https://stabletickets.dev/api/venues/search
- 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-87b80a8e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iCoStoOd6UN9pmPN3rfp9

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-87b80a8e -d '<json body>'
```

Example prompt: Find me Ticketmaster venues in Nashville, Tennessee — specifically search for 'amphitheater' to narrow it down to outdoor venues.

## When to prefer this

Use this endpoint when you need to find physical Ticketmaster venue information — names, locations, addresses, and IDs — rather than specific events or performers. Ideal for building venue pickers, mapping integrations, or resolving a venue name to its Ticketmaster ID before searching for events at that venue.

## Known failure modes

- No venues found matching the keyword or location — empty results list returned
- Invalid venue ID format causes a 400 or 422 error
- Ticketmaster API key or quota limit reached — 429 or 503 response
- Malformed location parameters (e.g. invalid country code) result in error response
- Payment of $0.01 USDC not authorized — 402 response blocking the call

## How this service works

Search Ticketmaster venues by keyword, location, or venue ID

## Output

Returns a list of matching Ticketmaster venues with details including venue name, ID, address, city, state, country, postal code, geographic coordinates, URL, images, and associated metadata such as parking and social links.

## Example request

```json
{
 "city": "Nashville",
 "page": 0,
 "size": 10,
 "locale": "en-us",
 "keyword": "amphitheater",
 "stateCode": "TN",
 "countryCode": "US"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "array",
     "items": {
      "type": "string"
     }
    }
   ],
   "description": "Filter by venue 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"
  },
  "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"
  },
  "keyword": {
   "type": "string",
   "description": "Keyword to search"
  },
  "geoPoint": {
   "type": "string",
   "description": "GeoHash location filter"
  },
  "stateCode": {
   "type": "string"
  },
  "postalCode": {
   "type": "string"
  },
  "countryCode": {
   "type": "string",
   "maxLength": 2,
   "minLength": 2
  },
  "includeTest": {
   "enum": [
    "yes",
    "no",
    "only"
   ],
   "type": "string",
   "description": "Include test entities"
  }
 }
}
```

## More

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