# Ticketmaster Netherlands — 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.

> Search for events on Ticketmaster Netherlands and access detailed information including event specifics and resale ticket listings. Browse available shows, concerts, and performances with complete event manifests to find exactly what you're looking for.

**Category:** Entertainment | **Website:** [ticketmaster.nl/](https://ticketmaster.nl/) | **Docs:** [parse.bot/marketplace/f5349067-90b9-4387-b010-ce8d6ca2bd43/ticketmaster-nl-api](https://parse.bot/marketplace/f5349067-90b9-4387-b010-ce8d6ca2bd43/ticketmaster-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-ticketmaster-nl-api-f5349067/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_event_details

Get detailed information for a specific event by its ID, including venue details, ticket limits, categories, and availability status. Returns stale_input if the event ID does not exist.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | Yes | The unique numeric ID of the event (from search_events results[*].id) |

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

### get_event_manifest

Retrieve the venue manifest (sections and levels/doors) for a specific event. Useful for understanding the seating layout. Not all events have venue manifests; events without sections will return stale_input.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | Yes | The unique numeric ID of the event (from search_events results[*].id) |

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

### get_resale_listings

Retrieve verified resale ticket listings for a specific event by its ID. Includes price, seat location (if available), and seller information.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | Yes | The unique ID of the event (e.g., '306783') |

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

### search_events

Search for events on ticketmaster.nl using a keyword. Returns up to 20 events per request with their IDs, names, dates, venues, and availability status. The total field indicates the number of matching events server-side.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword (e.g., 'concert', 'festival', 'Amsterdam') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ticketmaster-nl-api-f5349067/search_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
