# Ziggo Dome — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Check what's coming up at Ziggo Dome with real-time event listings showing ticket availability, seller information, and direct links to event pages. Look up detailed information for any specific event to plan your visit.

**Category:** Entertainment | **Website:** [www.ziggodome.nl/agenda](https://www.ziggodome.nl/agenda) | **Docs:** [parse.bot/marketplace/79a0eada-2de9-410f-9a7a-93b629cee0db/ziggodome-nl-api](https://parse.bot/marketplace/79a0eada-2de9-410f-9a7a-93b629cee0db/ziggodome-nl-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-ziggodome-nl-api-79a0eada/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_event

Get full details for a single Ziggo Dome event by its ID. Returns the performer name, date, sold-out status, official ticket seller name, organizer, description, ticket price range, and genres.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | Yes | UUID of the event (from list_events results). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ziggodome-nl-api-79a0eada/get_event \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"event_id":"<string>"}'
```

### list_events

List upcoming events from the Ziggo Dome agenda. Each event includes the performer name, date, sold-out status, ticket sales URL, and inferred ticket seller. Results are offset-paginated. Supports optional genre filtering by genre ID.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `genre` | string | No | Genre UUID to filter events (obtain from the genres list on the site). Omitted returns all genres. |
| `limit` | integer | No | Number of events per page. |
| `offset` | integer | No | Number of events to skip for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ziggodome-nl-api-79a0eada/list_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"genre":"<string>","limit":"<integer>","offset":"<integer>"}'
```
