docksfreiheit36 APIdocksfreiheit36.de ↗
Retrieve upcoming concerts and parties at Docks Hamburg via the docksfreiheit36.de API. Get event names, dates, ticket URLs, pricing, organizers, and more.
What is the docksfreiheit36 API?
The docksfreiheit36.de API exposes 1 endpoint that returns all upcoming public events at Docks Hamburg, delivering up to 9 structured fields per event including name, start date, door time, ticket URL, pricing offers, organizer, and location. The GET events endpoint requires no input parameters and returns the complete upcoming event listing directly from the official Docks page.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/4128da44-8f47-4755-9684-0458f354aefa/events' \ -H 'X-API-Key: $PARSE_API_KEY'
Typed, relational, agent-ready
A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.
- Fully typed · autocompletes
- Objects link to objects
- Typed errors & pagination
Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:
uv add parse-sdk uv run parse init uv run parse add --marketplace docksfreiheit36-de-api
uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.
"""Walkthrough: Docks Hamburg Events API — list upcoming events at the venue."""
from parse_apis.docksfreiheit36_de_api import DocksHamburg, Event, ParseError
client = DocksHamburg()
# List upcoming events at Docks Hamburg, capped to 5 items
for event in client.events.list(limit=5):
print(event.name, event.startDate, event.offers)
# Drill into the first event for full details
first = client.events.list(limit=1).first()
if first:
print(first.name, first.startDate)
print("Door:", first.doorTime)
print("Ticket:", first.ticketUrl)
print("Organizer:", first.organizer)
if first.location:
print("Venue:", first.location.name, first.location.room)
# Typed error handling around the list call
try:
for event in client.events.list(limit=3):
print(event.name, event.source)
except ParseError as exc:
print(f"Error fetching events: {exc}")
print("exercised: events.list with limit, .first(), location access, error handling")
Retrieves all upcoming public events for the Docks Hamburg venue. Returns an array of events with name, start date, door time, description, image, ticket URL, pricing offers, organizer, source URL, and location details. Events are sourced from the official Docks page and include only current/future confirmed events. Results are auto-iterated as a single page.
No input parameters required.
{
"type": "object",
"fields": {
"events": "array of event objects with name, startDate, doorTime, description, image, ticketUrl, offers, organizer, source, and location"
},
"sample": {
"data": {
"events": [
{
"name": "WM Australien - Ägypten",
"image": "https://images.copilot.events/resize?url=https%3A%2F%2Fcopilot.events%2Fmtm%2Fapi%2Ffiles%2F294b3efe-5e2d-4e49-b0ff-8efc9d093bfc%2Fpreview%2Fpreview.jpeg&width=1920&quality=50&instanceId=mtm",
"offers": "EINTRITT FREI!",
"source": "https://copilot.events/mtm/event/20d9ffad-9951-402f-b3ff-eb7f34c481b7",
"doorTime": "2026-07-03T17:00:00.000Z",
"location": {
"name": "M.T.M. GmbH",
"room": "DOCKS",
"address": {
"lat": "",
"lng": "",
"zip": "",
"city": "",
"street": "",
"country": "",
"addStreet": ""
}
},
"organizer": "MTM GmbH",
"startDate": "2026-07-03T18:00:00.000Z",
"ticketUrl": null,
"description": ""
},
{
"name": "MYU:SA + DARK MATTER * * * * * 360º HARD TECHNO RAVE",
"image": "https://images.copilot.events/resize?url=https%3A%2F%2Fcopilot.events%2Fmtm%2Fapi%2Ffiles%2F8de411a7-5081-4483-9a94-1adc41ee055b%2Fpreview%2Fpreview.jpeg&width=1920&quality=50&instanceId=mtm",
"offers": "Tickets ab 16,76 €",
"source": "https://copilot.events/mtm/event/dbd2cd72-ebf3-4253-bbb4-ea022060348a",
"doorTime": "2026-07-17T21:00:00.000Z",
"location": {
"name": "M.T.M. GmbH",
"room": "DOCKS",
"address": {
"lat": "",
"lng": "",
"zip": "",
"city": "",
"street": "",
"country": "",
"addStreet": ""
}
},
"organizer": "Tunnel",
"startDate": "2026-07-17T21:00:00.000Z",
"ticketUrl": "https://www.eventbrite.de/e/myusa-dark-matter-360o-hard-techno-rave-tickets-1991489626081",
"description": ""
}
]
},
"status": "success"
}
}About the docksfreiheit36 API
What the API returns
The GET events endpoint returns an array of event objects for the Docks Hamburg venue. Each object includes the event name, startDate, doorTime, a text description, and an image URL. Commercial fields cover ticketUrl for direct purchase links and offers containing structured pricing data. Every event also carries organizer attribution and a source URL pointing back to the originating listing.
Location and venue context
All events include a location field that identifies the Docks Hamburg venue. Since the endpoint covers a single physical venue, there are no venue-filtering parameters — every result in the array is from Docks (Spielbudenplatz 19, Hamburg). This makes the API straightforward for calendar integrations or event aggregators that specifically track this venue.
Coverage scope
The API covers publicly listed upcoming events only — concerts, club nights, and similar public shows. The endpoint takes no query parameters; you receive the full current schedule in a single call. Event objects with no ticket pricing will have an empty or null offers field, so callers should handle that case when displaying pricing details.
The docksfreiheit36 API is a managed, monitored endpoint for docksfreiheit36.de — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when docksfreiheit36.de changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.
This isn't an official docksfreiheit36.de API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Build a Hamburg nightlife calendar widget that displays upcoming Docks events with dates and door times
- Send automated alerts when a new event matching a genre keyword appears in the event
nameordescription - Aggregate Docks ticket URLs alongside other Hamburg venues for a unified event discovery feed
- Track organizer frequency using the
organizerfield to identify recurring promoters at the venue - Display event images and descriptions in a mobile app focused on Hamburg live music
- Monitor
offerspricing data to notify users when low-cost events are scheduled
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does docksfreiheit36.de have an official developer API?+
What does the GET events endpoint return for each event?+
name, startDate, doorTime, description, image, ticketUrl, offers (structured pricing), organizer, source (the originating URL), and location. No filtering by date range or event type is available — all upcoming events are returned in a single response.Does the API cover past events or archived shows?+
Can I filter events by genre, date range, or organizer?+
name, description, organizer, or startDate fields. You can fork this API on Parse and revise it to add filtering logic if needed.