# Ticketmaster (Germany) — 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.

> Access data from ticketmaster.de.

**Category:** Entertainment | **Website:** [ticketmaster.de/](https://ticketmaster.de/) | **Docs:** [parse.bot/marketplace/0bab5859-379f-48ed-86c0-e33c97aeb157/ticketmaster-de-api](https://parse.bot/marketplace/0bab5859-379f-48ed-86c0-e33c97aeb157/ticketmaster-de-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-de-api-0bab5859/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### find_suggest

Autocomplete search suggestions for artists and venues matching a keyword. Returns up to 10 matching attractions/venues with their IDs, URLs, images, and category labels. Useful for discovering attraction IDs to pass to get_attraction_details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `keyword` | string | Yes | Search keyword for autocomplete (artist name, venue name, or partial match) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ticketmaster-de-api-0bab5859/find_suggest \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keyword":"<string>"}'
```

### get_attraction_details

Retrieve full details for a specific attraction (artist/performer) by numeric ID. Returns name, HTML-formatted synopsis, major and minor category classification, image URL, and recent setlist information when available.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `attraction_id` | string | Yes | Numeric attraction/artist ID found in artist URLs from search results (e.g. '390223') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ticketmaster-de-api-0bab5859/get_attraction_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"attraction_id":"<string>"}'
```

### get_event_details

Get full details for a specific event by its unique ID. Note: Some events may return limited data due to site protections.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `event_id` | string | No | Unique event ID |
| `event_url` | string | No | Full event URL (optional, can be used instead of event_id) |

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

### get_menu_config

Retrieve the site navigation menu configuration. Returns all event categories with their subcategories and popular subcategories, plus the list of featured cities. Useful for discovering valid category IDs and city pages.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ticketmaster-de-api-0bab5859/get_menu_config \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_venue_details

Retrieve full details for a specific venue by its system ID and venue code slug. Returns name, full address, geographic coordinates, timezone, general info blocks (directions, parking, public transit), and current seat maps.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `venue_code` | string | Yes | Venue code slug from venue URLs (the second-to-last segment, e.g. 'hanfaustse') |
| `venue_id` | string | Yes | Numeric venue system ID from the venue URL path (the last segment, e.g. '715') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ticketmaster-de-api-0bab5859/get_venue_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"venue_code":"<string>","venue_id":"<string>"}'
```

### search_events

Full-text search over Ticketmaster Germany events. Returns a paginated list of matching events plus top search suggestions for related artists/venues. Each event includes title, dates, venue, artists, and ticket URL. The total field reports the server-side match count (capped at 10000).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (1-based) |
| `query` | string | Yes | Search keyword for events (artist name, genre, city, or event title) |

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