# Stabletickets Event Details Lookup

> Stabletickets Event Details Lookup 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 full Ticketmaster event details by a specific event ID

## Facts

- Endpoint: POST https://stabletickets.dev/api/events/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-6e7ad1c3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1tJMpj2dWxIcF9LVB2zmj

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-6e7ad1c3 -d '<json body>'
```

Example prompt: Can you pull up the full details for Ticketmaster event ID Z698xZC2Zk7vk for me — I want to see the date, venue, lineup, and any ticket price info?

## When to prefer this

Use this endpoint when you already have a specific Ticketmaster event ID and need full structured details about that event. Prefer the search endpoint to discover events first, then use this endpoint to fetch complete details for a specific result. Choose this over web scraping when you need structured, machine-readable event data.

## Known failure modes

- Invalid or non-existent event ID returns 404 or empty result
- Expired or past events may return limited data
- Network timeout or upstream Ticketmaster API unavailability returns 5xx error
- Malformed event ID format returns 400 bad request

## How this service works

Get Ticketmaster event details by event ID

## Output

Returns comprehensive Ticketmaster event data including event name, date, time, venue details, performer/attraction lineup, ticket price ranges, availability status, event classification, and official event URL.

## 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": "*"
  },
  "includeTicketing": {
   "enum": [
    "yes",
    "no",
    "only"
   ],
   "type": "string",
   "default": "yes",
   "description": "Include ticket pricing and sales information"
  }
 }
}
```

## More

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