# StableTickets Get Event Images

> StableTickets Get Event Images 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 images associated with a Ticketmaster event given its event ID

## Facts

- Endpoint: POST https://stabletickets.dev/api/events/images
- 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-ad8eee78
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1B6-5tk78yFFMzkRUJjDk

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

Example prompt: Can you fetch all the images for Ticketmaster event ID Z7r9jZ1AdJ3uK so I can show the event artwork on the page?

## When to prefer this

Use this endpoint when you have a Ticketmaster event ID and need to retrieve the visual assets (images, artwork, photos) associated with that event — for example, to display event artwork in a UI, enrich event listings with imagery, or build media-rich event previews. Prefer this over general web search for images when you need official, Ticketmaster-sourced event imagery.

## Known failure modes

- Invalid or non-existent event ID returns an error or empty result
- Event exists but has no images associated with it
- Payment failure or insufficient USDC balance returns a 402 error
- Rate limiting or service unavailability returns a 5xx error
- Malformed request body returns a 400 validation error

## How this service works

Get Ticketmaster event images by event ID

## Output

Returns a collection of images for the specified Ticketmaster event, including image URLs, aspect ratios, dimensions, and potentially labels indicating the intended use or size of each image.

## 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-ad8eee78/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)
