# Eventim Events Scraper - Concerts, Prices & Availability (`zen-studio/eventim-scraper`) Actor

Extract events, ticket prices, and availability from eventim.de. Search by category, city, date, artist, or venue across 532 categories. Get venue details, ratings, per-category price breakdowns, and event series metadata. 1,000+ events/minute. Export to JSON, CSV, or Excel.

- **URL**: https://apify.com/zen-studio/eventim-scraper.md
- **Developed by:** [Zen Studio](https://apify.com/zen-studio) (community)
- **Categories:** Social media, Lead generation, Automation
- **Stats:** 2 total users, 1 monthly users, 0.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $6.99 / 1,000 events

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Eventim Scraper | Events, Concerts & Ticket Prices from eventim.de (2026)

<blockquote style="border-left:4px solid #4C945E;background:#F0FDF4;padding:12px 16px">
<span style="font-size:16px;font-weight:700;color:#1C1917">22+ fields per event at 1,000+ events/minute</span> <span style="font-size:15px;color:#57534E"> &mdash; prices, availability, venues, ratings, and 532 searchable categories from Germany's largest ticket platform.</span>
</blockquote>

#### Copy to your AI assistant

Copy this block into ChatGPT, Claude, Cursor, or any LLM to start using this actor.

````

zen-studio/eventim-scraper on Apify. Call: ApifyClient("TOKEN").actor("zen-studio/eventim-scraper").call(run\_input={...}), then client.dataset(run\["defaultDatasetId"]).list\_items().items for results. Key inputs: categories (array, 532 enum values like "Konzerte", "Jazz & Blues", "Heavy Metal"), city (string), maxResults (int, default 1000). Full actor spec (input schema with all params/enums/defaults, output dataset fields, README): GET https://api.apify.com/v2/acts/zen-studio~eventim-scraper/builds/default (Bearer TOKEN) → inputSchema (JSON string, parse it), actorDefinition.storages.dataset.views.overview.transformation.fields (output field list), readme. Free tier: 10 runs, 10 results/run. Get token: https://console.apify.com/account/integrations

````

### Key Features

- **22+ fields per event** including venue coordinates, per-category ticket prices, and series metadata
- **532 searchable categories** covering concerts, sports, theater, comedy, festivals, and 486 niche genre tags
- **1,000 events in under 60 seconds** with parallel fetching and price enrichment
- **Free tier** with 10 lifetime runs and 10 results per run

![Eventim Scraper](https://iili.io/BWNWCUN.png)

### How to Scrape Eventim Events

#### Basic &mdash; browse concerts

```json
{
    "categories": ["Konzerte"],
    "maxResults": 100
}
````

#### Filter by city and date

```json
{
    "categories": ["Jazz & Blues"],
    "city": "Berlin",
    "dateFrom": "2026-06-01",
    "dateTo": "2026-06-30",
    "sortBy": "DateAsc"
}
```

#### Search by artist

```json
{
    "artist": "Rammstein",
    "maxResults": 50
}
```

#### Filter by price range

```json
{
    "categories": ["Konzerte"],
    "priceMin": 30,
    "priceMax": 80,
    "city": "München"
}
```

### Input Parameters

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `searchTerm` | string | | Free-text search across artists, events, venues |
| `categories` | array | `["Konzerte"]` | Pick from 532 categories (type to search) |
| `city` | string | | City name (Berlin, München, Köln, etc.) |
| `dateFrom` | string | | Start date (YYYY-MM-DD) |
| `dateTo` | string | | End date (YYYY-MM-DD) |
| `artist` | string | | Artist name (auto-resolved to ID) |
| `venue` | string | | Venue name (auto-resolved to ID) |
| `postalCode` | string | | German PLZ for radius search |
| `distanceKm` | integer | `20` | Radius in km around postal code |
| `priceMin` | integer | | Min ticket price in EUR |
| `priceMax` | integer | | Max ticket price in EUR |
| `sortBy` | string | `Recommendation` | Sort: Recommendation, DateAsc, DateDesc, Rating, NameAsc, NameDesc |
| `eventSeriesIds` | array | `[]` | Direct lookup by series ID (skips search) |
| `includePriceDetails` | boolean | `true` | Fetch starting price and availability per event |
| `includeCategoryPricing` | boolean | `false` | Fetch per-category price breakdown (slower) |
| `maxResults` | integer | `1000` | Maximum events to return |

### What Data Can You Extract from Eventim?

Every result includes:

- **Event details** — ID, name, URL, image, type, start/end date
- **Venue** — name, city, street address, postal code, country, lat/lng coordinates
- **Pricing** — starting price, display price, crossed-out price, currency, per-category breakdown
- **Availability** — status (Available, SoldOut, Cancelled, etc.), localized status message
- **Ratings** — count and average score
- **Categories** — hierarchical (parent + child)
- **Series info** — series ID, name, description, total events, date range

#### Output Example

```json
{
  "eventId": "21471874",
  "eventName": "André Rieu - Tour 2027",
  "eventUrl": "https://www.eventim.de/event/andre-rieu-tour-2027-uber-arena-berlin-21471874/",
  "imageUrl": "https://www.eventim.de/obj/media/.../andre-rieu-27-tickets-2026.jpg",
  "type": "LiveEntertainment",
  "startDate": "2027-01-27T19:30:00+01:00",
  "venue": {
    "name": "Uber Arena Berlin",
    "city": "Berlin",
    "streetAddress": "Uber-Platz 1 (Mühlenstraße 19)",
    "postalCode": "10243",
    "country": "DE",
    "latitude": 52.5167,
    "longitude": 13.4000
  },
  "categories": [
    { "name": "Kultur" },
    { "name": "Klassische Konzerte", "parent": "Kultur" }
  ],
  "tags": ["TICKETDIRECT", "FANTICKET"],
  "status": "Available",
  "statusMessage": "Verfügbar",
  "hasRecommendation": false,
  "marketingLabels": [],
  "rating": { "count": 5334, "average": 4.60 },
  "fromPrice": 65.25,
  "fromPriceDisplay": "€ 65,25",
  "crossedOutPrice": null,
  "currency": "EUR",
  "priceCategories": [
    { "name": "Sitzplatz Premium", "price": 155.25, "currency": "EUR", "availability": "InStock" },
    { "name": "Sitzplatz Kategorie 1", "price": 135.25, "currency": "EUR", "availability": "InStock" },
    { "name": "Sitzplatz Kategorie 2", "price": 115.25, "currency": "EUR", "availability": "InStock" },
    { "name": "Sitzplatz Kategorie 3", "price": 89.25, "currency": "EUR", "availability": "InStock" },
    { "name": "Sitzplatz Kategorie 4", "price": 65.25, "currency": "EUR", "availability": "InStock" },
    { "name": "Sitzplatz Premium - Gangplatz", "price": 160.25, "currency": "EUR", "availability": "InStock" },
    { "name": "Sitzplatz Kategorie 1 - Gangplatz", "price": 140.25, "currency": "EUR", "availability": "InStock" },
    { "name": "Sitzplatz Kategorie 2 - Gangplatz", "price": 120.25, "currency": "EUR", "availability": "InStock" }
  ],
  "eventSeries": {
    "id": "4109350",
    "name": "André Rieu - Tour 2027",
    "url": "https://www.eventim.de/artist/andre-rieu/andre-rieu-tour-2027-4109350/",
    "totalEvents": 11,
    "startDate": "2027-01-13T19:30:00+01:00",
    "endDate": "2027-01-29T20:00:00+01:00"
  },
  "scrapedAt": "2026-04-12T07:30:20Z"
}
```

<table>
<tr>
<td colspan="2" style="padding:10px 14px;background:#4C945E;border:none;border-radius:4px 4px 0 0">
<span style="color:#FAFAF9;font-size:14px;font-weight:700;letter-spacing:0.5px">Zen Studio Events</span>
<span style="color:#E8F5E9;font-size:13px">&nbsp;&nbsp;&bull;&nbsp;&nbsp;Event data from every major platform</span>
</td>
</tr>
<tr>
<td style="padding:12px 16px;border:1px solid #E7E5E4;border-radius:0 0 0 4px;background:#E8F5E9;border-right:none;border-top:none;vertical-align:top;width:50%">
<span style="font-size:14px;font-weight:700;color:#4C945E">Eventim Scraper</span><br>
<span style="color:#4C945E;font-size:12px;font-weight:600">&#10148; You are here</span>
</td>
<td style="padding:12px 16px;border:1px solid #E7E5E4;border-radius:0 0 4px 0;border-top:none;vertical-align:top;width:50%">
<img src="https://apify-image-uploads-prod.s3.us-east-1.amazonaws.com/NWYsOG96fMDy8ycdf-actor-G7kur4paCzryfTAeX-ZQYIeUVyoV-Gemini_Generated_Image_iebjpriebjpriebj.png" width="24" height="24" style="vertical-align:middle"> &nbsp;<a href="https://apify.com/zen-studio/10times-events-scraper" style="color:#1C1917;text-decoration:none;font-weight:700;font-size:14px">10times Events</a><br>
<span style="color:#78716C;font-size:12px">Trade shows & conferences</span>
</td>
</tr>
</table>

### Advanced Usage

#### Niche genre tags

Use long-tail tags from the 486-item "Weitere Kategorien" list to find specific genres.

```json
{
    "categories": ["Heavy Metal", "Punk"],
    "city": "Hamburg",
    "maxResults": 200
}
```

#### Radius search around a postal code

Find events within 50km of central Munich.

```json
{
    "postalCode": "80331",
    "distanceKm": 50,
    "categories": ["Konzerte"],
    "sortBy": "DateAsc"
}
```

#### Per-category ticket pricing

Get the full price breakdown per ticket category (Kategorie 1, 2, 3, Stehplatz, etc.).

```json
{
    "categories": ["Kultur", "Klassische Konzerte"],
    "city": "Berlin",
    "includeCategoryPricing": true,
    "maxResults": 50
}
```

#### Direct series lookup

If you already have event series IDs from a previous scrape, look them up directly.

```json
{
    "eventSeriesIds": ["3789122", "3967548"]
}
```

### Pricing — Pay Per Event (PPE)

**$6.99 per 1,000 results.**

| Results | Cost |
|---------|------|
| 10 | ~$0.07 |
| 100 | ~$0.70 |
| 1,000 | ~$6.99 |

Free tier: 10 lifetime runs, 10 results per run.

#### Cost Optimization

- Use `categories` and `city` to narrow results before scraping
- Set `maxResults` to only what you need
- Keep `includeCategoryPricing` off unless you need per-category prices (it's slower)

### FAQ

**How many events can I extract?**
eventim.de has 100,000+ events at any time across all categories. You can extract up to the full catalog in a single run.

**How fresh is the data?**
Real-time. Every run fetches live data directly from eventim.de.

**What categories are available?**
532 total: 8 top-level (Konzerte, Sport, Kultur, Humor, Musical & Show, Freizeit, Ticket-Gutschein, VIP & Extras), 49 subcategories (Jazz & Blues, Rock & Pop, Fußball, Theater, etc.), and 486 niche tags (Heavy Metal, K-Pop, 2. Bundesliga, Poetry-Slam, etc.).

**Can I filter by price?**
Yes. Set `priceMin` and/or `priceMax` (in EUR). When price filters are active, the actor returns individual events instead of event series.

**What does "per-category pricing" mean?**
German venues often have tiered seating (Kategorie 1, 2, 3, Stehplatz). The `includeCategoryPricing` option fetches the price for each tier. It's slower because it loads each event's detail page.

**What's the "status" field?**
Available, SoldOut, Cancelled, Moved, Blocked, InProgress, Expired, or Released. The `statusMessage` field gives the German-localized version (e.g. "Wenige Tickets" = few tickets left).

**Does it work for countries outside Germany?**
Currently DE only. Other CTS Eventim markets (AT, CH, PL, NL) use different configurations and haven't been tested.

**What's the free tier?**
10 lifetime runs with 10 results per run. No credit card required.

**Can I use this with my AI assistant?**
Yes. Copy the "Copy to your AI assistant" block above into any LLM. The full input schema with all 532 categories is available via the Apify API.

**How fast is it?**
1,000 events with prices in under 60 seconds. Speed depends on proxy latency and whether per-category pricing is enabled.

### Support

- **Bugs**: Issues tab
- **Features**: Issues tab

### Legal Compliance

Extracts publicly available data. Users must comply with eventim.de terms and data protection regulations (GDPR, CCPA).

***

*Scrape events, prices, and availability from Germany's largest ticket platform.*

# Actor input Schema

## `searchTerm` (type: `string`):

Search across artists, events, and venues.<br><br>Leave empty to browse by category instead.

## `categories` (type: `array`):

Pick one or more from 532 categories. Type the exact name as shown on eventim.de.<br><br><b>Top-level (8):</b> Konzerte, Kultur, Freizeit, Humor, Musical & Show, Sport, Ticket-Gutschein, VIP & Extras<br><b>Subcategories (49):</b> Jazz & Blues, Rock & Pop, Festivals, Theater, Comedy, Fußball, etc.<br><b>Tags (486):</b> Heavy Metal, Punk, K-Pop, 2000er, Poetry-Slam, etc.<br><br>The actor validates names and returns an error for unknown entries.

## `maxResults` (type: `integer`):

Maximum number of events to return.

## `sortBy` (type: `string`):

How to sort the results.

## `includeCategoryPricing` (type: `boolean`):

Fetch individual ticket category prices (e.g. Kategorie 1, Kategorie 2) from the event detail page.<br><br><b>Slower:</b> requires one extra page load per event.

## `city` (type: `string`):

Filter to events in a specific city.<br><br>Examples: <code>Berlin</code>, <code>München</code>, <code>Köln</code>, <code>Hamburg</code>

## `dateFrom` (type: `string`):

Inclusive start date in <code>YYYY-MM-DD</code> format.

## `dateTo` (type: `string`):

Inclusive end date in <code>YYYY-MM-DD</code> format.

## `postalCode` (type: `string`):

German PLZ for radius search. Use with <b>Radius</b> below.<br><br>Example: <code>10115</code> (Berlin Mitte)

## `distanceKm` (type: `integer`):

Search radius around the postal code in kilometers.

## `artist` (type: `string`):

Filter to a specific artist. The actor looks up the artist ID automatically via the eventim autosuggest.

## `venue` (type: `string`):

Filter to a specific venue.<br><br>Examples: <code>Olympiahalle München</code>, <code>ZAG Arena</code>

## `priceMin` (type: `integer`):

Minimum ticket price in EUR.<br><br>When set, the actor returns individual events instead of event series.

## `priceMax` (type: `integer`):

Maximum ticket price in EUR.

## `eventSeriesIds` (type: `array`):

Look up specific event series by their ID. Skips the search entirely.<br><br>You can find these IDs in the <code>eventSeries.id</code> field of previous scrape results.

## `proxyConfiguration` (type: `object`):

Residential DE proxies recommended for reliable access.

## Actor input object example

```json
{
  "searchTerm": "apache 207",
  "categories": [
    "Konzerte"
  ],
  "maxResults": 100,
  "sortBy": "Recommendation",
  "includeCategoryPricing": false,
  "distanceKm": 20,
  "eventSeriesIds": [],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "DE"
  }
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searchTerm": "apache 207",
    "categories": [
        "Konzerte"
    ],
    "maxResults": 100,
    "city": "",
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ],
        "apifyProxyCountry": "DE"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("zen-studio/eventim-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "searchTerm": "apache 207",
    "categories": ["Konzerte"],
    "maxResults": 100,
    "city": "",
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
        "apifyProxyCountry": "DE",
    },
}

# Run the Actor and wait for it to finish
run = client.actor("zen-studio/eventim-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "searchTerm": "apache 207",
  "categories": [
    "Konzerte"
  ],
  "maxResults": 100,
  "city": "",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "DE"
  }
}' |
apify call zen-studio/eventim-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=zen-studio/eventim-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Eventim Events Scraper - Concerts, Prices & Availability",
        "description": "Extract events, ticket prices, and availability from eventim.de. Search by category, city, date, artist, or venue across 532 categories. Get venue details, ratings, per-category price breakdowns, and event series metadata. 1,000+ events/minute. Export to JSON, CSV, or Excel.",
        "version": "0.0",
        "x-build-id": "6E1jPyxrc7GuGxlyn"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/zen-studio~eventim-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-zen-studio-eventim-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/zen-studio~eventim-scraper/runs": {
            "post": {
                "operationId": "runs-sync-zen-studio-eventim-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/zen-studio~eventim-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-zen-studio-eventim-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "searchTerm": {
                        "title": "Search term",
                        "type": "string",
                        "description": "Search across artists, events, and venues.<br><br>Leave empty to browse by category instead."
                    },
                    "categories": {
                        "title": "Categories",
                        "type": "array",
                        "description": "Pick one or more from 532 categories. Type the exact name as shown on eventim.de.<br><br><b>Top-level (8):</b> Konzerte, Kultur, Freizeit, Humor, Musical & Show, Sport, Ticket-Gutschein, VIP & Extras<br><b>Subcategories (49):</b> Jazz & Blues, Rock & Pop, Festivals, Theater, Comedy, Fußball, etc.<br><b>Tags (486):</b> Heavy Metal, Punk, K-Pop, 2000er, Poetry-Slam, etc.<br><br>The actor validates names and returns an error for unknown entries.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "Konzerte",
                                "Kultur",
                                "Freizeit",
                                "Humor",
                                "Musical & Show",
                                "Sport",
                                "Ticket-Gutschein",
                                "VIP & Extras",
                                "10er",
                                "2. Bundesliga",
                                "2000er",
                                "20er",
                                "3. Liga",
                                "30er",
                                "3X3-Basketball",
                                "40er",
                                "50er",
                                "60er",
                                "70er",
                                "80er",
                                "90er",
                                "After-Wiesn-Partys",
                                "Afterwork-Party",
                                "Akrobatik",
                                "Akrobatik-Shows",
                                "Aktivitäten",
                                "Akustisch",
                                "Alpaka",
                                "Alt-Country",
                                "Alternative",
                                "Alternativer Rock",
                                "Amateurboxen",
                                "Ambiente",
                                "American Football",
                                "American Football Camps",
                                "American Football Turniere",
                                "Americana",
                                "Aprés-Ski-Hits",
                                "Artistik-Shows",
                                "Atp-Turnier",
                                "Ausstellungen",
                                "Ausstellungsräume",
                                "Automobilsport",
                                "Autorenabende",
                                "Bach",
                                "Bachata",
                                "Badminton",
                                "Ballermann-Hits",
                                "Ballett",
                                "Barockmusik",
                                "Barockoper",
                                "Basketball",
                                "BBL",
                                "Bebop",
                                "Beethoven",
                                "Berliner Festspiele",
                                "Biathlon",
                                "Bierzelt-Events",
                                "Bigband",
                                "Black Metal",
                                "Blasmusik",
                                "Bluegrass",
                                "Blues",
                                "Bootpartys",
                                "Bootstouren",
                                "Boulevardtheater",
                                "Bowling",
                                "Boxen",
                                "Boxen & Kampfsport",
                                "Boxgalas",
                                "Breakbeat",
                                "Breakdance",
                                "Britpop",
                                "Broadway-Musicals",
                                "Buchvorstellungen",
                                "Bundesliga",
                                "Burlesque",
                                "Busrundfahrten",
                                "Challenger-Turnier",
                                "Champions Hockey League",
                                "Champions League",
                                "Chanson",
                                "Chormusik",
                                "Classic Rock",
                                "Clown",
                                "Clown-Shows",
                                "Clubkonzerte",
                                "Clubpartys",
                                "Comedy",
                                "Comedy-Festival",
                                "Comedy-Podcasts",
                                "Comedy-Shows",
                                "Comedy-Slam",
                                "Cooler Jazz",
                                "Country & Folk",
                                "Country-Pop",
                                "Darstellende Künste",
                                "Darts",
                                "Death Metal",
                                "Deep House",
                                "DEL",
                                "DEL2",
                                "Designausstellungen",
                                "Deutschsprachige Musicals",
                                "DFB-Pokal",
                                "DHB-Pokal",
                                "Dinner-Shows",
                                "Disko",
                                "Diskofox",
                                "Disney-Musicals",
                                "Dixieland",
                                "Doom Metal",
                                "Doppel",
                                "Dragster Racing",
                                "Drama",
                                "Dressurreiten",
                                "Drum And Bass",
                                "Dubstep",
                                "Düsseldorfer Karneval",
                                "EDM",
                                "EHF-Pokal",
                                "Einzel",
                                "Eishockey",
                                "Eishockey-WM",
                                "Eisshows",
                                "Eisstockschießen",
                                "Electro",
                                "Electro Swing",
                                "Electronic & Dance",
                                "Elektro-Clubkonzerte",
                                "Emo",
                                "Englische Stand-up Comedy",
                                "Ensemble-Kabarett",
                                "Erzählung",
                                "Eurocup",
                                "Euroleague",
                                "Europa League",
                                "Experimental",
                                "Experimentelles Theater",
                                "Fahrsport",
                                "Familienfest",
                                "Feiertagsfest",
                                "Festivals",
                                "Festspiele",
                                "Feuerwerk",
                                "Fight Nights",
                                "Filmadaptionen",
                                "Filmfestivals",
                                "Filmmusik-Konzerte",
                                "Flaggenfußball",
                                "Flamenco",
                                "Fluchträume",
                                "Folk",
                                "Folk Rock",
                                "Foodfestivals",
                                "Formel 1",
                                "Fotografieausstellungen",
                                "Frauen-Basketball",
                                "Frauen-Eishockey",
                                "Frauenfußball",
                                "Free-Jazz",
                                "Freilichtbühne",
                                "Freilichttheater",
                                "Freiluftzirkus",
                                "Freizeitparks",
                                "Funk",
                                "Fusion",
                                "Fußball",
                                "Führungen & Rundfahrten",
                                "Galerie",
                                "Garage Rock",
                                "German Football League",
                                "Gesellschafts-Podcasts",
                                "Gesprochenes Wort",
                                "Golf",
                                "Gridiron",
                                "Grime",
                                "Grindcore",
                                "Groove",
                                "Grunge",
                                "Hafenrundfahrt",
                                "Handball",
                                "Handball-EM",
                                "Handball-WM",
                                "Hard & Heavy",
                                "Hardcore",
                                "Hardrock",
                                "Heavy Metal",
                                "Heavy Rock",
                                "Heimatlieder",
                                "Hip-Hop",
                                "Hip-Hop-Clubkonzerte",
                                "Hip-Hop-Tanz",
                                "HipHop & R’n‘B",
                                "Historische Ausstellungen",
                                "Historische Musicals",
                                "Honky Tonk",
                                "House",
                                "Improvisation",
                                "Improvisations-Comedy",
                                "Improvisationskabarett",
                                "Improvisationstheater",
                                "Indie",
                                "Indie Volk",
                                "Indie-Clubkonzerte",
                                "Industrieführungen",
                                "Industriemetall",
                                "Installation",
                                "Interaktive Ausstellungen",
                                "Internationale Freundschaftsspiele",
                                "Internationale Musik",
                                "ITF-Turnier",
                                "Jazz",
                                "Jazz & Blues",
                                "Jazz-Clubkonzerte",
                                "Jazzclub",
                                "Jazzfestival",
                                "Jiu-Jitsu",
                                "Jonglage",
                                "Jugend-Basketball",
                                "Jugend-Handball",
                                "Jukebox-Musicals",
                                "Junggesellenabschied",
                                "Juniorenfußball",
                                "K1",
                                "Kabarett",
                                "Kabarett-Festival",
                                "Kammermusik",
                                "Kampfsport",
                                "Karneval",
                                "Karnevalsbälle",
                                "Karnevalssitzungen",
                                "Karnevalsumzüge",
                                "Kartfahren",
                                "Keltisch",
                                "Kickboxen",
                                "Kinder",
                                "Kinderbücher",
                                "Kinderdisco",
                                "Kinderfestivals",
                                "Kindergeburtstag",
                                "Kinderkarneval",
                                "Kinderkonzerte",
                                "Kinderlesungen",
                                "Kindermuseen",
                                "Kindermusicals",
                                "Kinderoper",
                                "Kindertheater",
                                "Kinderzirkus",
                                "Kino",
                                "Klassische Konzerte",
                                "Klassische Moderne",
                                "Klassische Musik",
                                "Klassische Operette",
                                "Kleinkunst",
                                "Kletterparks",
                                "Komische Oper",
                                "Konferenzen",
                                "Kostümpartys",
                                "Kreativmarkt",
                                "Kulinarische Touren",
                                "Kultur-Podcasts",
                                "Kulturfestivals",
                                "Kulturveranstaltungen",
                                "Kunstausstellungen",
                                "Kunstfestivals",
                                "Kölner Karneval",
                                "Kölsch",
                                "Kölsch-Konzerte",
                                "Kölsch-Rock-Festival",
                                "Kölsche Brauhaustouren",
                                "Kölsche Comedy-Shows",
                                "Kölsche Karnevalssitzungen",
                                "Kölsche Kulturtage",
                                "Kölsche Lesungen",
                                "Kölsche Liederabende",
                                "Kölsche Mundart-Theateraufführungen",
                                "Kölsche Partys",
                                "Lachen",
                                "Langstreckenrennen",
                                "Las Vegas-Style Shows",
                                "Lateinamerikanischer Tanz",
                                "Latin",
                                "Leichtathletik",
                                "Lesungen",
                                "Lesungen & Vorträge",
                                "Lindy Hop",
                                "Literarische Diskussionen",
                                "Literarische Führungen",
                                "Literarische Workshops",
                                "Literarisches Kabarett",
                                "Literaturfestivals",
                                "Live",
                                "Live-Musik",
                                "Lokale Oktoberfeste",
                                "Magie-Shows",
                                "Malerei",
                                "Mannschaftssport",
                                "Marathon",
                                "Messen",
                                "Metal-Clubkonzerte",
                                "Metalcore",
                                "Minigolf",
                                "Minimal",
                                "Mitmach-Events Für Kinder",
                                "MMA",
                                "Modern Country",
                                "Modern Dance",
                                "Moderne Kunst",
                                "Moderne Oper",
                                "Moderner Zirkus",
                                "Motocross",
                                "MotoGP",
                                "Motorsport",
                                "Multimedia-Shows",
                                "Museumsführungen",
                                "Musical",
                                "Musical-Comedy",
                                "Musikfestival",
                                "Musikfestspiele",
                                "Musikkabarett",
                                "Musiktheater",
                                "Märchenaufführungen",
                                "Münchner Oktoberfest",
                                "Nachtwächterführungen",
                                "Nationalmannschaft",
                                "Naturausstellungen",
                                "Naturführungen",
                                "Neo-Soul",
                                "Neujahrskonzert",
                                "New Wave",
                                "Newcomer-Clubkonzerte",
                                "Novelle",
                                "Nu-Metal",
                                "Oktoberfest",
                                "Oktoberfest Für Familien",
                                "Oktoberfest-Eröffnungsfeiern",
                                "Oktoberfest-Galas",
                                "Oktoberfest-Konzerte",
                                "Oktoberfest-Partys",
                                "Oktoberfeste",
                                "Olympisches Eishockey",
                                "Open-Air-Partys",
                                "Openair",
                                "Oper",
                                "Oper & Operette",
                                "Operette",
                                "Opernfestspiele",
                                "Opernhaus",
                                "Orchester",
                                "Orgelkonzerte",
                                "Paintball",
                                "Pantomime",
                                "Party",
                                "Performance",
                                "Pferderennen",
                                "Pferdeshow",
                                "Philharmonie",
                                "Podcast",
                                "Poetry-Slam",
                                "Political Comedy",
                                "Politik-Podcasts",
                                "Politisches Kabarett",
                                "Polo",
                                "Pop",
                                "Power Metal",
                                "Preisverleihungen",
                                "Professionelles Tennis",
                                "Profiboxen",
                                "Punk",
                                "Punk-Clubkonzerte",
                                "Puppenspiel",
                                "Puppentheater",
                                "R&B",
                                "Radsport",
                                "Rallye",
                                "Rap",
                                "Rasenplatz",
                                "Rave",
                                "Reggae",
                                "Reggaeton",
                                "Reitsport",
                                "Revue-Musicals",
                                "Rock",
                                "Rock & Pop",
                                "Rock-Clubkonzerte",
                                "Rock-Musicals",
                                "RockNRoll",
                                "Rodeln",
                                "Romantische Musik",
                                "Salsa",
                                "Sandplatz",
                                "Satire",
                                "Satire-Kabarett",
                                "Schaumpartys",
                                "Schauspiel",
                                "Schlagen",
                                "Schlager",
                                "Schlager & Volksmusik",
                                "Schlagerparty",
                                "Schlossführungen",
                                "Schneeschuhwandern",
                                "Schwimmen",
                                "Seminare",
                                "Show",
                                "Silvester",
                                "Silvester-Clubbing",
                                "Silvester-Dinner",
                                "Silvester-Galas",
                                "Silvester-Kabarett",
                                "Silvester-Kreuzfahrten",
                                "Silvesterkonzerte",
                                "Silvesterpartys",
                                "Singer-Songwriter",
                                "Singer-Songwriter-Clubkonzerte",
                                "Ska",
                                "Sketch",
                                "Sketch-Comedy",
                                "Ski Alpin",
                                "Skilanglauf",
                                "Skulpturen",
                                "Smooth-Jazz",
                                "Solokabarett",
                                "Solokonzert",
                                "Sommerfest",
                                "Soul",
                                "Spielplatz",
                                "Sport-Podcasts",
                                "Sportfestivals",
                                "Springreiten",
                                "Stadtfest",
                                "Stadtführungen",
                                "Stand-up Comedy",
                                "Standardtanz",
                                "Stoner Rock",
                                "Storytelling-Podcasts",
                                "Strandparty",
                                "Strandpartys",
                                "Straßenfestivals",
                                "Straßenkarneval",
                                "Straßenrennen",
                                "Studentenpartys",
                                "Superbike",
                                "Swing",
                                "Symphonie",
                                "Synthwave",
                                "Tage Der Offenen Tür",
                                "Talkshow",
                                "Tango",
                                "Tanz",
                                "Tanzen",
                                "Tanzmusik",
                                "Tanztheater",
                                "Tanzturniere",
                                "Techno",
                                "Techno-Clubkonzerte",
                                "Technologie-Podcasts",
                                "Technologieausstellungen",
                                "Technologiefestivals",
                                "Tennis",
                                "Tennisturnier",
                                "Thaiboxen",
                                "Theater",
                                "Theaterfestspiele",
                                "Themenführungen",
                                "Themenpartys",
                                "Thrash Metal",
                                "Tiershows",
                                "Tischtennis",
                                "Traditionell",
                                "Traditionell Country",
                                "Traditioneller Zirkus",
                                "Tragische Oper",
                                "Tragödie",
                                "Trampolinparks",
                                "Trance",
                                "Trap",
                                "Tribute-Bands",
                                "Truck-Rennen",
                                "True Crime-Podcasts",
                                "Turnen",
                                "Türkisch",
                                "Unterhaltung",
                                "Urban",
                                "Varieté",
                                "Vernissagen",
                                "VIP & Specials",
                                "Virtuelle Realität",
                                "Volklore",
                                "Volksfest",
                                "Volksmusik",
                                "Volleyball",
                                "Voltigieren",
                                "Vorträge",
                                "Wanderausstellungen",
                                "Wandern",
                                "Wasserzirkus",
                                "Weiberkarneval",
                                "Weihnachtsfest",
                                "Weihnachtsmarkt",
                                "Weihnachtsmusik",
                                "Weihnachtszirkus",
                                "Weinwanderung",
                                "Weitere Events",
                                "Weitere Konzerte",
                                "Weitere Sport-Events",
                                "Weltmusik",
                                "West End-Musicals",
                                "Wiener Klassik",
                                "Winterspiele",
                                "Wintersport",
                                "Wirtschafts-Podcasts",
                                "Wissenschafts-Podcasts",
                                "Wissenschaftsausstellungen",
                                "Wohltätigkeitsveranstaltungen",
                                "Workshops",
                                "Wrestling",
                                "Wrestling Shows",
                                "WTA-Turnier",
                                "Zauberei",
                                "Zeitgenössische Klassik",
                                "Zeitgenössische Kunst",
                                "Zeitgenössische Oper",
                                "Zeitgenössischer R&B",
                                "Zeitgenössischer Tanz",
                                "Zeitgenössisches Theater",
                                "Zirkus",
                                "Zirkuskunst",
                                "Zouk",
                                "Ü30 Party",
                                "Ü40 Party",
                                "Ü50 Party"
                            ],
                            "enumTitles": [
                                "⭐ Konzerte",
                                "⭐ Kultur",
                                "⭐ Freizeit",
                                "⭐ Humor",
                                "⭐ Musical & Show",
                                "⭐ Sport",
                                "⭐ Ticket-Gutschein",
                                "⭐ VIP & Extras",
                                "10er",
                                "2. Bundesliga",
                                "2000er",
                                "20er",
                                "3. Liga",
                                "30er",
                                "3X3-Basketball",
                                "40er",
                                "50er",
                                "60er",
                                "70er",
                                "80er",
                                "90er",
                                "After-Wiesn-Partys",
                                "Afterwork-Party",
                                "Akrobatik",
                                "Akrobatik-Shows",
                                "Aktivitäten — Freizeit",
                                "Akustisch",
                                "Alpaka",
                                "Alt-Country",
                                "Alternative",
                                "Alternativer Rock",
                                "Amateurboxen",
                                "Ambiente",
                                "American Football — Sport",
                                "American Football Camps",
                                "American Football Turniere",
                                "Americana",
                                "Aprés-Ski-Hits",
                                "Artistik-Shows",
                                "Atp-Turnier",
                                "Ausstellungen — Freizeit",
                                "Ausstellungsräume",
                                "Automobilsport",
                                "Autorenabende",
                                "Bach",
                                "Bachata",
                                "Badminton",
                                "Ballermann-Hits",
                                "Ballett",
                                "Barockmusik",
                                "Barockoper",
                                "Basketball — Sport",
                                "BBL",
                                "Bebop",
                                "Beethoven",
                                "Berliner Festspiele",
                                "Biathlon",
                                "Bierzelt-Events",
                                "Bigband",
                                "Black Metal",
                                "Blasmusik",
                                "Bluegrass",
                                "Blues",
                                "Bootpartys",
                                "Bootstouren",
                                "Boulevardtheater",
                                "Bowling",
                                "Boxen",
                                "Boxen & Kampfsport — Sport",
                                "Boxgalas",
                                "Breakbeat",
                                "Breakdance",
                                "Britpop",
                                "Broadway-Musicals",
                                "Buchvorstellungen",
                                "Bundesliga",
                                "Burlesque",
                                "Busrundfahrten",
                                "Challenger-Turnier",
                                "Champions Hockey League",
                                "Champions League",
                                "Chanson",
                                "Chormusik",
                                "Classic Rock",
                                "Clown",
                                "Clown-Shows",
                                "Clubkonzerte — Konzerte",
                                "Clubpartys",
                                "Comedy — Humor",
                                "Comedy-Festival",
                                "Comedy-Podcasts",
                                "Comedy-Shows",
                                "Comedy-Slam",
                                "Cooler Jazz",
                                "Country & Folk — Konzerte",
                                "Country-Pop",
                                "Darstellende Künste",
                                "Darts — Sport",
                                "Death Metal",
                                "Deep House",
                                "DEL",
                                "DEL2",
                                "Designausstellungen",
                                "Deutschsprachige Musicals",
                                "DFB-Pokal",
                                "DHB-Pokal",
                                "Dinner-Shows",
                                "Disko",
                                "Diskofox",
                                "Disney-Musicals",
                                "Dixieland",
                                "Doom Metal",
                                "Doppel",
                                "Dragster Racing",
                                "Drama",
                                "Dressurreiten",
                                "Drum And Bass",
                                "Dubstep",
                                "Düsseldorfer Karneval",
                                "EDM",
                                "EHF-Pokal",
                                "Einzel",
                                "Eishockey — Sport",
                                "Eishockey-WM",
                                "Eisshows",
                                "Eisstockschießen",
                                "Electro",
                                "Electro Swing",
                                "Electronic & Dance — Konzerte",
                                "Elektro-Clubkonzerte",
                                "Emo",
                                "Englische Stand-up Comedy",
                                "Ensemble-Kabarett",
                                "Erzählung",
                                "Eurocup",
                                "Euroleague",
                                "Europa League",
                                "Experimental",
                                "Experimentelles Theater",
                                "Fahrsport",
                                "Familienfest",
                                "Feiertagsfest",
                                "Festivals — Konzerte",
                                "Festspiele — Kultur",
                                "Feuerwerk",
                                "Fight Nights",
                                "Filmadaptionen",
                                "Filmfestivals",
                                "Filmmusik-Konzerte",
                                "Flaggenfußball",
                                "Flamenco",
                                "Fluchträume",
                                "Folk",
                                "Folk Rock",
                                "Foodfestivals",
                                "Formel 1",
                                "Fotografieausstellungen",
                                "Frauen-Basketball",
                                "Frauen-Eishockey",
                                "Frauenfußball",
                                "Free-Jazz",
                                "Freilichtbühne",
                                "Freilichttheater",
                                "Freiluftzirkus",
                                "Freizeitparks",
                                "Funk",
                                "Fusion",
                                "Fußball — Sport",
                                "Führungen & Rundfahrten — Freizeit",
                                "Galerie",
                                "Garage Rock",
                                "German Football League",
                                "Gesellschafts-Podcasts",
                                "Gesprochenes Wort",
                                "Golf",
                                "Gridiron",
                                "Grime",
                                "Grindcore",
                                "Groove",
                                "Grunge",
                                "Hafenrundfahrt",
                                "Handball — Sport",
                                "Handball-EM",
                                "Handball-WM",
                                "Hard & Heavy — Konzerte",
                                "Hardcore",
                                "Hardrock",
                                "Heavy Metal",
                                "Heavy Rock",
                                "Heimatlieder",
                                "Hip-Hop",
                                "Hip-Hop-Clubkonzerte",
                                "Hip-Hop-Tanz",
                                "HipHop & R’n‘B — Konzerte",
                                "Historische Ausstellungen",
                                "Historische Musicals",
                                "Honky Tonk",
                                "House",
                                "Improvisation",
                                "Improvisations-Comedy",
                                "Improvisationskabarett",
                                "Improvisationstheater",
                                "Indie",
                                "Indie Volk",
                                "Indie-Clubkonzerte",
                                "Industrieführungen",
                                "Industriemetall",
                                "Installation",
                                "Interaktive Ausstellungen",
                                "Internationale Freundschaftsspiele",
                                "Internationale Musik",
                                "ITF-Turnier",
                                "Jazz",
                                "Jazz & Blues — Konzerte",
                                "Jazz-Clubkonzerte",
                                "Jazzclub",
                                "Jazzfestival",
                                "Jiu-Jitsu",
                                "Jonglage",
                                "Jugend-Basketball",
                                "Jugend-Handball",
                                "Jukebox-Musicals",
                                "Junggesellenabschied",
                                "Juniorenfußball",
                                "K1",
                                "Kabarett — Humor",
                                "Kabarett-Festival",
                                "Kammermusik",
                                "Kampfsport",
                                "Karneval — Freizeit",
                                "Karnevalsbälle",
                                "Karnevalssitzungen",
                                "Karnevalsumzüge",
                                "Kartfahren",
                                "Keltisch",
                                "Kickboxen",
                                "Kinder — Freizeit",
                                "Kinderbücher",
                                "Kinderdisco",
                                "Kinderfestivals",
                                "Kindergeburtstag",
                                "Kinderkarneval",
                                "Kinderkonzerte",
                                "Kinderlesungen",
                                "Kindermuseen",
                                "Kindermusicals",
                                "Kinderoper",
                                "Kindertheater",
                                "Kinderzirkus",
                                "Kino — Freizeit",
                                "Klassische Konzerte — Kultur",
                                "Klassische Moderne",
                                "Klassische Musik",
                                "Klassische Operette",
                                "Kleinkunst — Kultur",
                                "Kletterparks",
                                "Komische Oper",
                                "Konferenzen",
                                "Kostümpartys",
                                "Kreativmarkt",
                                "Kulinarische Touren",
                                "Kultur-Podcasts",
                                "Kulturfestivals",
                                "Kulturveranstaltungen",
                                "Kunstausstellungen",
                                "Kunstfestivals",
                                "Kölner Karneval",
                                "Kölsch — Freizeit",
                                "Kölsch-Konzerte",
                                "Kölsch-Rock-Festival",
                                "Kölsche Brauhaustouren",
                                "Kölsche Comedy-Shows",
                                "Kölsche Karnevalssitzungen",
                                "Kölsche Kulturtage",
                                "Kölsche Lesungen",
                                "Kölsche Liederabende",
                                "Kölsche Mundart-Theateraufführungen",
                                "Kölsche Partys",
                                "Lachen",
                                "Langstreckenrennen",
                                "Las Vegas-Style Shows",
                                "Lateinamerikanischer Tanz",
                                "Latin",
                                "Leichtathletik",
                                "Lesungen",
                                "Lesungen & Vorträge — Kultur",
                                "Lindy Hop",
                                "Literarische Diskussionen",
                                "Literarische Führungen",
                                "Literarische Workshops",
                                "Literarisches Kabarett",
                                "Literaturfestivals",
                                "Live",
                                "Live-Musik",
                                "Lokale Oktoberfeste",
                                "Magie-Shows",
                                "Malerei",
                                "Mannschaftssport",
                                "Marathon",
                                "Messen",
                                "Metal-Clubkonzerte",
                                "Metalcore",
                                "Minigolf",
                                "Minimal",
                                "Mitmach-Events Für Kinder",
                                "MMA",
                                "Modern Country",
                                "Modern Dance",
                                "Moderne Kunst",
                                "Moderne Oper",
                                "Moderner Zirkus",
                                "Motocross",
                                "MotoGP",
                                "Motorsport — Sport",
                                "Multimedia-Shows",
                                "Museumsführungen",
                                "Musical — Musical & Show",
                                "Musical-Comedy",
                                "Musikfestival",
                                "Musikfestspiele",
                                "Musikkabarett",
                                "Musiktheater",
                                "Märchenaufführungen",
                                "Münchner Oktoberfest",
                                "Nachtwächterführungen",
                                "Nationalmannschaft",
                                "Naturausstellungen",
                                "Naturführungen",
                                "Neo-Soul",
                                "Neujahrskonzert",
                                "New Wave",
                                "Newcomer-Clubkonzerte",
                                "Novelle",
                                "Nu-Metal",
                                "Oktoberfest",
                                "Oktoberfest Für Familien",
                                "Oktoberfest-Eröffnungsfeiern",
                                "Oktoberfest-Galas",
                                "Oktoberfest-Konzerte",
                                "Oktoberfest-Partys",
                                "Oktoberfeste — Freizeit",
                                "Olympisches Eishockey",
                                "Open-Air-Partys",
                                "Openair",
                                "Oper",
                                "Oper & Operette — Kultur",
                                "Operette",
                                "Opernfestspiele",
                                "Opernhaus",
                                "Orchester",
                                "Orgelkonzerte",
                                "Paintball",
                                "Pantomime",
                                "Party — Freizeit",
                                "Performance",
                                "Pferderennen",
                                "Pferdeshow",
                                "Philharmonie",
                                "Podcast — Musical & Show",
                                "Poetry-Slam",
                                "Political Comedy",
                                "Politik-Podcasts",
                                "Politisches Kabarett",
                                "Polo",
                                "Pop",
                                "Power Metal",
                                "Preisverleihungen",
                                "Professionelles Tennis",
                                "Profiboxen",
                                "Punk",
                                "Punk-Clubkonzerte",
                                "Puppenspiel",
                                "Puppentheater",
                                "R&B",
                                "Radsport",
                                "Rallye",
                                "Rap",
                                "Rasenplatz",
                                "Rave",
                                "Reggae",
                                "Reggaeton",
                                "Reitsport — Sport",
                                "Revue-Musicals",
                                "Rock",
                                "Rock & Pop — Konzerte",
                                "Rock-Clubkonzerte",
                                "Rock-Musicals",
                                "RockNRoll",
                                "Rodeln",
                                "Romantische Musik",
                                "Salsa",
                                "Sandplatz",
                                "Satire",
                                "Satire-Kabarett",
                                "Schaumpartys",
                                "Schauspiel",
                                "Schlagen",
                                "Schlager",
                                "Schlager & Volksmusik — Konzerte",
                                "Schlagerparty",
                                "Schlossführungen",
                                "Schneeschuhwandern",
                                "Schwimmen",
                                "Seminare",
                                "Show — Musical & Show",
                                "Silvester — Freizeit",
                                "Silvester-Clubbing",
                                "Silvester-Dinner",
                                "Silvester-Galas",
                                "Silvester-Kabarett",
                                "Silvester-Kreuzfahrten",
                                "Silvesterkonzerte",
                                "Silvesterpartys",
                                "Singer-Songwriter",
                                "Singer-Songwriter-Clubkonzerte",
                                "Ska",
                                "Sketch",
                                "Sketch-Comedy",
                                "Ski Alpin",
                                "Skilanglauf",
                                "Skulpturen",
                                "Smooth-Jazz",
                                "Solokabarett",
                                "Solokonzert",
                                "Sommerfest",
                                "Soul",
                                "Spielplatz",
                                "Sport-Podcasts",
                                "Sportfestivals",
                                "Springreiten",
                                "Stadtfest",
                                "Stadtführungen",
                                "Stand-up Comedy",
                                "Standardtanz",
                                "Stoner Rock",
                                "Storytelling-Podcasts",
                                "Strandparty",
                                "Strandpartys",
                                "Straßenfestivals",
                                "Straßenkarneval",
                                "Straßenrennen",
                                "Studentenpartys",
                                "Superbike",
                                "Swing",
                                "Symphonie",
                                "Synthwave",
                                "Tage Der Offenen Tür",
                                "Talkshow",
                                "Tango",
                                "Tanz — Kultur",
                                "Tanzen",
                                "Tanzmusik",
                                "Tanztheater",
                                "Tanzturniere",
                                "Techno",
                                "Techno-Clubkonzerte",
                                "Technologie-Podcasts",
                                "Technologieausstellungen",
                                "Technologiefestivals",
                                "Tennis — Sport",
                                "Tennisturnier",
                                "Thaiboxen",
                                "Theater — Kultur",
                                "Theaterfestspiele",
                                "Themenführungen",
                                "Themenpartys",
                                "Thrash Metal",
                                "Tiershows",
                                "Tischtennis",
                                "Traditionell",
                                "Traditionell Country",
                                "Traditioneller Zirkus",
                                "Tragische Oper",
                                "Tragödie",
                                "Trampolinparks",
                                "Trance",
                                "Trap",
                                "Tribute-Bands",
                                "Truck-Rennen",
                                "True Crime-Podcasts",
                                "Turnen",
                                "Türkisch",
                                "Unterhaltung",
                                "Urban",
                                "Varieté",
                                "Vernissagen",
                                "VIP & Specials — VIP & Extras",
                                "Virtuelle Realität",
                                "Volklore",
                                "Volksfest",
                                "Volksmusik",
                                "Volleyball",
                                "Voltigieren",
                                "Vorträge",
                                "Wanderausstellungen",
                                "Wandern",
                                "Wasserzirkus",
                                "Weiberkarneval",
                                "Weihnachtsfest",
                                "Weihnachtsmarkt",
                                "Weihnachtsmusik",
                                "Weihnachtszirkus",
                                "Weinwanderung",
                                "Weitere Events — Freizeit",
                                "Weitere Konzerte — Konzerte",
                                "Weitere Sport-Events — Sport",
                                "Weltmusik",
                                "West End-Musicals",
                                "Wiener Klassik",
                                "Winterspiele",
                                "Wintersport — Sport",
                                "Wirtschafts-Podcasts",
                                "Wissenschafts-Podcasts",
                                "Wissenschaftsausstellungen",
                                "Wohltätigkeitsveranstaltungen",
                                "Workshops",
                                "Wrestling — Sport",
                                "Wrestling Shows",
                                "WTA-Turnier",
                                "Zauberei",
                                "Zeitgenössische Klassik",
                                "Zeitgenössische Kunst",
                                "Zeitgenössische Oper",
                                "Zeitgenössischer R&B",
                                "Zeitgenössischer Tanz",
                                "Zeitgenössisches Theater",
                                "Zirkus — Freizeit",
                                "Zirkuskunst",
                                "Zouk",
                                "Ü30 Party",
                                "Ü40 Party",
                                "Ü50 Party"
                            ]
                        },
                        "default": [
                            "Konzerte"
                        ]
                    },
                    "maxResults": {
                        "title": "Max results",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of events to return.",
                        "default": 1000
                    },
                    "sortBy": {
                        "title": "Sort order",
                        "enum": [
                            "Recommendation",
                            "DateAsc",
                            "DateDesc",
                            "Rating",
                            "NameAsc",
                            "NameDesc"
                        ],
                        "type": "string",
                        "description": "How to sort the results.",
                        "default": "Recommendation"
                    },
                    "includeCategoryPricing": {
                        "title": "Fetch per-category price breakdown",
                        "type": "boolean",
                        "description": "Fetch individual ticket category prices (e.g. Kategorie 1, Kategorie 2) from the event detail page.<br><br><b>Slower:</b> requires one extra page load per event.",
                        "default": false
                    },
                    "city": {
                        "title": "City",
                        "type": "string",
                        "description": "Filter to events in a specific city.<br><br>Examples: <code>Berlin</code>, <code>München</code>, <code>Köln</code>, <code>Hamburg</code>"
                    },
                    "dateFrom": {
                        "title": "Date from",
                        "type": "string",
                        "description": "Inclusive start date in <code>YYYY-MM-DD</code> format."
                    },
                    "dateTo": {
                        "title": "Date to",
                        "type": "string",
                        "description": "Inclusive end date in <code>YYYY-MM-DD</code> format."
                    },
                    "postalCode": {
                        "title": "Postal code (DE)",
                        "type": "string",
                        "description": "German PLZ for radius search. Use with <b>Radius</b> below.<br><br>Example: <code>10115</code> (Berlin Mitte)"
                    },
                    "distanceKm": {
                        "title": "Radius (km)",
                        "minimum": 1,
                        "maximum": 200,
                        "type": "integer",
                        "description": "Search radius around the postal code in kilometers.",
                        "default": 20
                    },
                    "artist": {
                        "title": "Artist",
                        "type": "string",
                        "description": "Filter to a specific artist. The actor looks up the artist ID automatically via the eventim autosuggest."
                    },
                    "venue": {
                        "title": "Venue",
                        "type": "string",
                        "description": "Filter to a specific venue.<br><br>Examples: <code>Olympiahalle München</code>, <code>ZAG Arena</code>"
                    },
                    "priceMin": {
                        "title": "Min price (EUR)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum ticket price in EUR.<br><br>When set, the actor returns individual events instead of event series."
                    },
                    "priceMax": {
                        "title": "Max price (EUR)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum ticket price in EUR."
                    },
                    "eventSeriesIds": {
                        "title": "Event series IDs",
                        "type": "array",
                        "description": "Look up specific event series by their ID. Skips the search entirely.<br><br>You can find these IDs in the <code>eventSeries.id</code> field of previous scrape results.",
                        "items": {
                            "type": "string"
                        },
                        "default": []
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Residential DE proxies recommended for reliable access."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
