Discover/Molotow Club API
live

Molotow Club APImolotowclub.com

Fetch upcoming events at Molotow Hamburg via API. Returns title, dates, lineup, ticket URLs, pricing, genre tags, and venue space across all 5 club areas.

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

What is the Molotow Club API?

The Molotow Club API exposes a single endpoint, get_upcoming_events, that returns all publicly listed upcoming events at the Molotow music venue in Hamburg, Germany. Each event object includes up to 12 fields covering title, description, start and end datetimes, ticket URLs, lineup, genre tags, pricing, image URL, and which of the five venue spaces (Club, Top Ten Bar, SkyBar, Karatekeller, or Backyard) is hosting the show.

Try it

No input parameters required.

api.parse.bot/scraper/aeeafff2-8024-4e4e-bdf8-73092d4ce143/<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/aeeafff2-8024-4e4e-bdf8-73092d4ce143/get_upcoming_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 molotowclub-com-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: Molotow Hamburg Events API — fetch upcoming events at the venue."""
from parse_apis.molotowclub_com_api import Molotow, ParseError

client = Molotow()

# List upcoming events at Molotow, capped to 5
for event in client.events.list(limit=5):
    print(event.title, "|", event.start_datetime, "|", event.venue)

# Drill into the first event for full details
first = client.events.list(limit=1).first()
if first:
    print(f"Event: {first.title}")
    print(f"Date: {first.start_datetime} ({first.timezone})")
    print(f"Venue: {first.venue} @ {first.location}")
    print(f"Price: {first.price}")
    print(f"Lineup: {first.lineup}")
    print(f"Tags: {first.tags}")
    print(f"Tickets: {first.ticket_urls}")
    print(f"Image: {first.image_url}")
    print(f"More info: {first.event_url}")

# Typed error handling
try:
    for event in client.events.list(limit=3):
        print(event.title, event.start_datetime)
except ParseError as exc:
    print(f"Error fetching events: {exc}")

print("exercised: events.list")
All endpoints · 1 totalmissing one? ·

Retrieves all upcoming public events at Molotow Hamburg. Returns events across all venue spaces (Club, Top Ten Bar, SkyBar, Karatekeller, Backyard) with title, description, start datetime, ticket URLs, image, lineup, genre tags, pricing, and venue information. Events are ordered chronologically. No input parameters required.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "events": "array of event objects with id, title, description, start_datetime, end_datetime, timezone, ticket_urls, image_url, event_url, lineup, tags, price, venue, location"
  },
  "sample": {
    "data": {
      "events": [
        {
          "id": "59529",
          "tags": [
            "Konzert"
          ],
          "price": "VVK: 23EUR zzgl. Gebühren | AK: 27 EUR",
          "title": "SHITKID Support: JOY FOREVER",
          "venue": "Club",
          "lineup": [
            "SHITKID Support: JOY FOREVER"
          ],
          "location": "Molotow, Reeperbahn 136, 20359 Hamburg, Germany",
          "timezone": "Europe/Berlin",
          "event_url": "https://www.molotowclub.com/programm/programm.php?nr=59529",
          "image_url": "https://www.molotowclub.com/cp_img/2026-06-30_16683_cl_0_0.57583000_1773851163.jpg",
          "description": "ShitKid, live: 28.06.2026 Köln, Blue Shell...",
          "ticket_urls": [
            "https://www.tixforgigs.com/Event/72836",
            "https://www.eventim.de/event/shitkid-molotow-21474026/?affiliate=TUG"
          ],
          "end_datetime": "",
          "start_datetime": "2026-06-30T19:00:00"
        }
      ]
    },
    "status": "success"
  }
}

About the Molotow Club API

What the API Returns

The get_upcoming_events endpoint returns an array of event objects representing all publicly listed upcoming shows at Molotow Hamburg. Each object carries a unique id, a title, a description, structured start_datetime and end_datetime fields, and a timezone value. Ticket availability is surfaced through ticket_urls, and each event links back to its source page via event_url. A cover image is available at image_url.

Lineup, Genre, and Pricing

For each event, the lineup field lists the performing artists or acts. Genre classification is exposed through genre_tags, which lets you filter or categorize events by musical style. Pricing data is included where publicly available, making it straightforward to display admission costs alongside event details.

Venue Coverage

Molotow operates five distinct spaces: the main Club, Top Ten Bar, SkyBar, Karatekeller, and Backyard. Each event object identifies which venue space it belongs to, so you can build space-specific listings or venue-aware calendar views. All upcoming events across every space are returned in a single call — no pagination parameters are required since the endpoint takes no inputs.

Data Freshness and Scope

The endpoint covers only public upcoming events — past events and private or unlisted bookings are not included in the response. Events are ordered chronologically, which maps directly to a calendar-style display. There are no filter parameters on the endpoint itself; any filtering by date range, genre, or venue space happens client-side against the returned array.

Reliability & maintenanceVerified

The Molotow Club API is a managed, monitored endpoint for molotowclub.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when molotowclub.com 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 molotowclub.com 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 that groups Molotow events by venue space using the venue field
  • Send automated alerts when new events are added that match specific genre_tags values
  • Display artist lineups and ticket links in a third-party event discovery app
  • Aggregate Molotow pricing data alongside other Hamburg venue admission costs
  • Power a Telegram or Discord bot that posts upcoming show announcements with event_url and image_url
  • Track how far in advance Molotow publishes events by monitoring start_datetime at ingestion time
  • Filter events by genre tag to surface punk, electronic, or indie shows for genre-specific newsletters
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 Molotow have an official public developer API?+
Molotow does not publish an official developer API or documented data feed for its event listings. This Parse API provides structured access to the same public event data shown on molotowclub.com.
What does `get_upcoming_events` return for lineup and genre data?+
Each event object includes a lineup array listing the performing acts and a genre_tags array with the musical genre labels associated with the event. Both fields reflect whatever is publicly listed on the event page. Events with no announced lineup or genre will return empty arrays for those fields.
Does the endpoint cover past or archived events?+
No — get_upcoming_events returns only events with future dates that are publicly listed on the site. Past events are not included in the response. The API covers all five Molotow venue spaces for upcoming shows. You can fork it on Parse and revise it to add a past-events endpoint if archival data is needed.
Can I filter events by venue space, date range, or genre through the API?+
The get_upcoming_events endpoint takes no input parameters, so filtering is not available at the API level. All upcoming events across all five venue spaces are returned in one response. You can fork this API on Parse and revise it to add server-side filter parameters for venue, date range, or genre tag.
Are ticket purchase details or sold-out status included?+
The API returns ticket_urls linking to ticketing pages and pricing where publicly listed, but real-time availability or sold-out status is not a field in the current response. You can fork this API on Parse and revise it to add availability status if that data is exposed on the ticket pages.
Page content last updated . Spec covers 1 endpoint from molotowclub.com.
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.
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.
pokeapi.co API
Search for any Pokemon by name or ID to instantly retrieve their types, base stats, abilities, and complete evolution chain. Perfect for building Pokemon reference tools, games, or apps that need comprehensive Pokemon data.