# StableTickets Venue Details by ID

> StableTickets Venue Details by ID 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).

Retrieves detailed information about a specific Ticketmaster venue using its venue ID

## Facts

- Endpoint: POST https://stabletickets.dev/api/venues/details
- 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-148766ed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pEYJUo9VphpYH539xWvdB

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-148766ed -d '<json body>'
```

Example prompt: Can you pull up the full venue details for Ticketmaster venue ID KovZpZAE1lAA — I need the address, timezone, and any other info available for that location.

## When to prefer this

Use this endpoint when you already have a Ticketmaster venue ID and need complete structured details about that specific venue. It is more direct and efficient than searching by keyword or location when the ID is known. Prefer this over the venue search endpoint when you need authoritative metadata (address, timezone, coordinates) for a specific venue rather than discovering venues.

## Known failure modes

- Invalid or non-existent venue ID returns a 404 or empty result
- Malformed request body returns a 400 error
- Payment failure or missing x402 payment header returns a 402 error
- Ticketmaster API downstream outage may cause 503 or timeout
- Rate limiting may occur under high-frequency usage

## How this service works

Get Ticketmaster venue details by venue ID

## Output

Returns structured venue data from Ticketmaster including the venue name, full address, city, state/country, postal code, timezone, geographic coordinates, associated markets, images, accessible seating details, and a URL to the venue page on Ticketmaster.

## Example request

```json
{
 "id": "KovZpZAE1lAA",
 "domain": "ticketmaster.com",
 "locale": "*"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": "string",
   "minLength": 1,
   "description": "Ticketmaster entity ID"
  },
  "domain": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "array",
     "items": {
      "type": "string"
     }
    }
   ],
   "description": "Single value, comma-separated values, or string array"
  },
  "locale": {
   "type": "string",
   "default": "*"
  }
 }
}
```

## More

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