Discover/docksfreiheit36 API
live

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.

Endpoint health
verified 4h ago
events
1/1 passing latest checkself-healing
Endpoints
1
Updated
4h ago

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.

Try it

No input parameters required.

api.parse.bot/scraper/4128da44-8f47-4755-9684-0458f354aefa/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/4128da44-8f47-4755-9684-0458f354aefa/events' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

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")
All endpoints · 1 totalmissing one? ·

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.

Input

No input parameters required.

Response
{
  "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.

Reliability & maintenanceVerified

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.

Last verified
4h ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • 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 name or description
  • Aggregate Docks ticket URLs alongside other Hamburg venues for a unified event discovery feed
  • Track organizer frequency using the organizer field to identify recurring promoters at the venue
  • Display event images and descriptions in a mobile app focused on Hamburg live music
  • Monitor offers pricing data to notify users when low-cost events are scheduled
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does docksfreiheit36.de have an official developer API?+
No. Docks Hamburg does not publish a public developer API or documented data feed. This Parse API provides structured access to their publicly listed event data.
What does the GET events endpoint return for each event?+
Each event object includes 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?+
No. The endpoint returns only upcoming public events currently listed on the Docks page. Historical event data is not included. You can fork this API on Parse and revise it to target a different section of the site if archived listings become accessible.
Can I filter events by genre, date range, or organizer?+
The endpoint has no input parameters, so server-side filtering is not supported. You receive the full upcoming schedule and can filter client-side using the name, description, organizer, or startDate fields. You can fork this API on Parse and revise it to add filtering logic if needed.
Does the API cover other Hamburg venues beyond Docks?+
No. Coverage is limited to the single Docks Hamburg venue at Spielbudenplatz 19. Events from Freiheit 36 or other venues in the area are not included. You can fork this API on Parse and revise it to target additional Hamburg venue pages.
Page content last updated . Spec covers 1 endpoint from docksfreiheit36.de.
Related APIs in EntertainmentSee all →
store.steampowered.com API
Search Steam Store listings, fetch featured categories (specials, top sellers, new releases), and retrieve app details and user reviews by Steam AppID.
store.epicgames.com API
store.epicgames.com API
seatgeek.com API
Search for events and performers, view ticket listings with pricing data, and explore venue information across multiple event categories. Get real-time insights into event details, ticket price trends, and what's currently trending to help you find and compare tickets.
poe.ninja API
Access real-time Path of Exile economy data from poe.ninja, including item prices, currency exchange rates, divination card values, market trends, and build statistics by class.
justwatch.com API
Search for movies and TV shows, retrieve streaming availability and detailed metadata, browse trending content, and discover similar titles — all via JustWatch.
rottentomatoes.com API
Search for movies and TV shows, get detailed information like ratings and reviews, and browse curated collections to discover what to watch. Access comprehensive Rotten Tomatoes data including critic and audience scores, plot details, and user reviews all in one place.
timeout.com API
Discover restaurants, events, attractions, and city guides across multiple locations with the Time Out API. Search for things to do, browse upcoming events and movies, explore new restaurant openings, find hotels, and access curated content like Time Out Market recommendations and cultural listings.
eventbrite.com API
Search Eventbrite for events by keyword, location, or category. Retrieve full event details, ticket pricing and availability, organizer profiles, and batch event data.