Discover/Markthalle Hamburg API
live

Markthalle Hamburg APImarkthalle-hamburg.de

Access upcoming concerts, parties, and shows at Markthalle Hamburg via API. Returns event titles, lineups, dates, ticket links, prices, and images.

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

What is the Markthalle Hamburg API?

The Markthalle Hamburg API exposes 1 endpoint — get_upcoming_events — that returns the full schedule of upcoming public events at the iconic Hamburg venue. Each response includes up to 17 structured fields per event: title, description, dates, venue room, artist lineup, ticket URLs, image URLs, categories, tags, and price. Results are sorted chronologically by start date, making it straightforward to build event calendars or listing feeds.

Try it

No input parameters required.

api.parse.bot/scraper/fe111159-1b14-4132-87ce-8028e5dfc089/<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/fe111159-1b14-4132-87ce-8028e5dfc089/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 markthalle-hamburg-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: Markthalle Hamburg Events SDK — fetch upcoming events."""
from parse_apis.markthalle_hamburg_de_api import Markthalle, Event, ParseError

client = Markthalle()

# List upcoming events with a cap of 5
for event in client.events.list(limit=5):
    print(event.title, "|", event.start_date, "|", event.timezone)
    if event.venue:
        print("  Venue:", event.venue.name)
    if event.lineup:
        print("  Lineup:", ", ".join(event.lineup))

# Drill into the first event for full details
first = client.events.list(limit=1).first()
if first:
    print(f"\nFirst event: {first.title}")
    print(f"  Starts: {first.start_date} ({first.timezone_abbr})")
    print(f"  Image: {first.image_url}")
    print(f"  Ticket: {first.ticket_url}")
    print(f"  Source: {first.source_url}")
    print(f"  All day: {first.all_day}")

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

print("exercised: events.list / event fields / venue sub-object / error handling")
All endpoints · 1 totalmissing one? ·

Fetches all upcoming public events from Markthalle Hamburg. Returns the full list of scheduled events with details including title, description, dates, venue, lineup, ticket links, and images. Results are ordered chronologically by start date. Each event includes the venue room (e.g. Grosser Saal, MarX), parsed artist lineup, and external ticket purchase URLs where available.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer count of events returned",
    "events": "array of event objects with id, title, description, dates, venue, lineup, ticket/image/source URLs, categories, tags, price"
  },
  "sample": {
    "data": {
      "total": 92,
      "events": [
        {
          "id": 18400,
          "tags": [],
          "price": null,
          "title": "Etterath + Druma + Teryky",
          "venue": {
            "url": "https://markthalle-hamburg.de/veranstaltungsort/marx/",
            "city": null,
            "name": "MarX",
            "address": null,
            "country": null
          },
          "lineup": [
            "Etterath",
            "Druma",
            "Teryky"
          ],
          "all_day": false,
          "end_date": "2026-07-10 20:00:00",
          "timezone": "Europe/Berlin",
          "image_url": "https://markthalle-hamburg.de/wp-content/uploads/2026/04/banner.jpg",
          "categories": [],
          "source_url": "https://markthalle-hamburg.de/konzerte/etterath-druma-teryky/",
          "start_date": "2026-07-10 19:00:00",
          "ticket_url": "https://www.eventim.de/event/etterath-druma-teryky-marx-21570882/",
          "description": "Post-metal concert at MarX",
          "timezone_abbr": "CEST"
        }
      ]
    },
    "status": "success"
  }
}

About the Markthalle Hamburg API

What the API Returns

The get_upcoming_events endpoint returns a total integer and an events array. Each object in the array represents one scheduled event at Markthalle Hamburg and includes fields such as id, title, description, dates, venue, lineup, ticket URL, image URL, source URL, categories, tags, and price. Events span the full range of programming at the venue — concerts, club nights, and live shows — ordered by start date.

Venue and Coverage Details

Markthalle Hamburg is a single-venue event space in Hamburg, Germany. The API reflects its public event calendar at /programm/. The venue field identifies the specific room within the venue where each event is held, which matters for multi-stage nights. The lineup field lists the performing artists or acts. There are no input parameters; the endpoint always returns the complete upcoming schedule.

Data Fields Worth Noting

Each event's dates field carries scheduling data including start date and time. The price field reflects publicly listed ticket pricing. categories and tags allow downstream filtering by genre or event type. The ticket URL points directly to the ticketing page for that event, and the image URL provides the event's promotional artwork. The source URL links back to the event's detail page on markthalle-hamburg.de.

Reliability & maintenanceVerified

The Markthalle Hamburg API is a managed, monitored endpoint for markthalle-hamburg.de — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when markthalle-hamburg.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 markthalle-hamburg.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
2h 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 live event calendar widget showing upcoming Markthalle Hamburg shows with ticket links
  • Aggregate Hamburg concert listings by pulling lineup and dates fields for a city guide app
  • Monitor newly added events by comparing id values across daily API calls
  • Display event poster images using the image URL field in a promotional display or digital signage system
  • Filter by categories or tags to surface only specific genres (e.g. electronic, hip-hop) for niche recommendation tools
  • Track ticket pricing trends over time using the price field per event
  • Power a Hamburg nightlife bot that surfaces tonight's events and links users to the ticket URL
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 Markthalle Hamburg have an official developer API?+
No. Markthalle Hamburg does not publish an official developer API or data feed. This Parse API is the structured programmatic interface for their event schedule.
What does get_upcoming_events return for each event?+
Each event object includes: id, title, description, dates (with start date/time), venue (including room within the venue), lineup (performing acts), ticket URL, image URL, source URL, categories, tags, and price. Results are ordered chronologically by start date.
Does the API support filtering by date range, genre, or artist name?+
The endpoint returns the full upcoming schedule without server-side filtering parameters. Filtering by date range, genre, or artist must be done client-side using the returned dates, categories, tags, and lineup fields. You can fork this API on Parse and revise it to add a filtered endpoint if you need server-side query support.
Does the API cover past events or archived shows?+
Not currently. The API covers only future and currently upcoming events from the public program listing. Historical/past events are not returned. You can fork this API on Parse and revise it to add a past-events endpoint if the source makes that data accessible.
How fresh is the event data?+
The data reflects the current state of the Markthalle Hamburg public event calendar. New events, cancellations, or schedule changes on the venue's site will be reflected when the API is next called. For time-sensitive applications, calling the endpoint frequently and diffing id values is the recommended approach.
Page content last updated . Spec covers 1 endpoint from markthalle-hamburg.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.