# Ticketmaster Classification Details Lookup

> Ticketmaster Classification 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 detailed information about a specific Ticketmaster classification (segment, genre, or subgenre) by its classification ID

## Facts

- Endpoint: POST https://stabletickets.dev/api/classifications/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-913011bf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AhlZXHQH9fn-wr6T0B9Eu

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-913011bf -d '<json body>'
```

Example prompt: What are the full details for Ticketmaster classification ID KZFzniwnSyZfZ7v7nJ — I need to know the segment, genre, and subgenre it maps to.

## When to prefer this

Use this endpoint when you already have a specific Ticketmaster classification ID and need to resolve its full details, such as segment, genre, and subgenre labels. Prefer this over the classifications search endpoint when you have an exact ID rather than a keyword to search by.

## Known failure modes

- Invalid or malformed classification ID returns an error or empty result
- Classification ID that no longer exists on Ticketmaster returns a not-found error
- Network or upstream Ticketmaster API timeout returns a service error
- Missing classification ID in request body returns a validation error

## How this service works

Get Ticketmaster classification details by classification ID

## Output

Returns structured details about the Ticketmaster classification matching the provided ID, including its segment (e.g. Music, Sports), genre, and subgenre labels and associated metadata.

## Example request

```json
{
 "id": "KZFzniwnSyZfZ7v7nJ",
 "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-913011bf/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)
