Siegessaeule APIsiegessaeule.de ↗
Discover and explore queer events happening in Berlin by searching the Siegessäule event listings, complete with venue information, calendar dates, and categorized event details. Filter events by section to find exactly what you're interested in attending.
curl -X GET 'https://api.parse.bot/scraper/60d893b4-a186-4abf-99ac-87600be52620/list_events?date=2026-08-31' \ -H 'X-API-Key: $PARSE_API_KEY'
List queer Berlin events for a given date, optionally filtered by section (category). Returns all events active on that date across all sections, or filtered to a single section. When date is omitted, the site defaults to today's date. Each event includes identifying fields (id, slug, section, start_date, start_time) that compose into get_event_details for full information. Also returns the editor's pick highlight and available section slugs. One GraphQL round-trip; no pagination — the site returns all events for the requested date in a single response.
| Param | Type | Description |
|---|---|---|
| date | string | Date to list events for in ISO format YYYY-MM-DD. When omitted, defaults to today's date. |
| section | string | Filter events by section. When omitted, events from all sections are returned. |
{
"type": "object",
"fields": {
"date": "string — the effective date of the listing in YYYY-MM-DD format",
"events": "array of event summary objects, each with id, title, slug, section, start_date, start_time, starts_at, ends_at, teaser, info, tags, venue_name, venue_id, image_url, siegessaeule_presents, section_title",
"editors_pick": "object or null — featured event chosen by editors for that date",
"total_events": "integer — total number of events returned",
"available_sections": "array of objects with title and slug for all navigable event sections"
},
"sample": {
"data": {
"date": "2026-08-30",
"events": [
{
"id": "en:108173",
"info": "",
"slug": "club-of-bitches",
"tags": [
"Böse Buben",
"gay",
"sex"
],
"title": "Club of Bitches",
"teaser": "Sex-Party, Rudelbums",
"ends_at": "2026-08-30T00:00:00+00:00",
"section": "sex",
"venue_id": "en:2120",
"image_url": null,
"starts_at": "2026-08-29T18:00:00+00:00",
"start_date": "2026-08-29",
"start_time": "20:00:00",
"venue_name": "Böse Buben",
"section_title": "Sex",
"siegessaeule_presents": false
}
],
"editors_pick": {
"slug": "claire-waldoff-ich-will-aber-gerade-vom-leben-singen-24",
"title": "Claire Waldoff – Ich will aber gerade vom Leben singen ...",
"section": "kultur",
"image_url": "https://cdn.siegessaeule.de/images/Sigrid_Grajek_Claire_Waldoff_Abend.049111cc.fill-680x238.jpg",
"starts_at": "2026-08-30T17:00:00+00:00",
"start_date": "2026-08-30",
"start_time": "19:00:00",
"venue_name": "BKA-Theater"
},
"total_events": 35,
"available_sections": [
{
"slug": "mix",
"title": "Mix"
},
{
"slug": "kultur",
"title": "Culture"
},
{
"slug": "bars",
"title": "Bars"
}
]
},
"status": "success"
}
}About the Siegessaeule API
The Siegessaeule API on Parse exposes 2 endpoints for the publicly available data on siegessaeule.de. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.