Discover/Labyrinth Events API
live

Labyrinth Events APIlabyrinthevents.com

Access upcoming featured events from Labyrinth Events via API. Get titles, dates, venues, artists, ticket links, and sold-out status in structured JSON.

Endpoint health
verified 5d ago
get_featured_events
1/1 passing latest checkself-healing
Endpoints
1
Updated
26d ago

What is the Labyrinth Events API?

The Labyrinth Events API exposes 1 endpoint, get_featured_events, that returns all upcoming featured events listed on the Labyrinth Events platform. Each event object includes 10+ structured fields covering title, date and times, venue, location, performing artists, description, ticket purchase URL, info URL, cover image, and sold-out status. Only future events are returned, making the response immediately usable without client-side date filtering.

This call costs2 credits / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/cbc585bb-b94c-4811-9125-7a18c0b0ce9e/<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/cbc585bb-b94c-4811-9125-7a18c0b0ce9e/get_featured_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 labyrinthevents-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: Labyrinth Events SDK — list upcoming featured events."""
from parse_apis.labyrinthevents_com_api import LabyrinthEvents, ParseError

client = LabyrinthEvents()

# Fetch all upcoming featured events (capped at 10 items)
for event in client.events.list(limit=10):
    artists = ", ".join(event.artists) if event.artists else "TBA"
    print(f"{event.date} | {event.title} @ {event.venue}, {event.town}")
    print(f"  Artists: {artists}")
    print(f"  Time: {event.start_time}–{event.end_time}")
    print(f"  Sold out: {event.sold_out}")
    print(f"  Tickets: {event.ticket_url}")
    print()

# Use .first() to grab a single event for detailed inspection
try:
    event = client.events.list(limit=1).first()
except ParseError as e:
    # Upstream structure changed or extraction failed
    print(f"Parse error ({e.code}): {e}")
    event = None

if event is not None:
    print(f"Featured: {event.title}")
    print(f"  Description: {event.description[:120]}...")
    print(f"  Info: {event.info_url}")

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

Returns all upcoming featured events listed on the Labyrinth Events homepage. Each event includes title, date, times, venue, location, artists, description, ticket URL, info URL, image, and sold-out status. Only future events are returned (filtered by today's date). Results are ordered by start date ascending. Makes two API calls: one for events with venue data, one for artist/guest names.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer count of events returned",
    "events": "array of event objects with full structured detail"
  },
  "sample": {
    "data": {
      "total": 3,
      "events": [
        {
          "date": "2026-09-19",
          "town": "London",
          "title": "Boris Brejcha Reflections tour",
          "venue": "Alexandra Palace",
          "genres": null,
          "artists": [
            "Boris Brejcha",
            "Frieder & Jakob",
            "Ann Clue"
          ],
          "country": "United Kingdom",
          "end_time": "22:45",
          "info_url": "https://www.labyrinthevents.com/events/boris-brejcha-reflections-2026",
          "sold_out": false,
          "image_url": "https://qdfiahcfaujnyybepbke.supabase.co/storage/v1/object/public/images/631ce8ac-4194-4537-9e03-1ff0f16c2a4e.jpg",
          "start_time": "18:30",
          "ticket_url": "https://dice.fm/event/699865f73588140001556352",
          "description": "The king of high tech minimal & man in the mask, Boris Brejcha makes his debut at the iconic Alexandra Palace on September 19th for his biggest ever UK show, as part of his 2026 Reflections Tour.",
          "indoor_outdoor": null
        }
      ]
    },
    "status": "success"
  }
}

About the Labyrinth Events API

What the API Returns

The get_featured_events endpoint returns a top-level total integer alongside an events array. Each object in the array carries the full detail surface Labyrinth Events exposes for a featured listing: title, date, start and end times, venue name, geographic location, an artists list, a free-text description, a direct ticket_url for purchasing, an info_url for the event detail page, a cover image URL, and a boolean sold_out flag.

Inputs and Filtering

The endpoint takes no input parameters — it returns the full set of currently featured upcoming events in a single call. Date filtering is applied server-side so every event in the response is guaranteed to be in the future relative to the current date. There is no pagination; all matching events are returned at once.

Practical Notes

The sold_out field lets you branch immediately in your UI or notification logic without a secondary lookup. The artists field is an array, so multi-artist events (festivals, multi-act nights) are handled naturally. ticket_url and info_url are distinct fields — the former goes directly to a purchase flow, the latter to the event's information page, which is useful when tickets are not yet on sale or the event is sold out.

Reliability & maintenanceVerified

The Labyrinth Events API is a managed, monitored endpoint for labyrinthevents.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when labyrinthevents.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 labyrinthevents.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
5d 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
  • Display a live calendar of upcoming Labyrinth Events on a music or nightlife discovery app using date, venue, and artists fields
  • Send automated sold-out alerts by polling the sold_out flag and triggering notifications when status changes
  • Aggregate Labyrinth Events listings into a regional event guide alongside other sources, using location and venue fields
  • Build a waitlist or resale lead-gen tool that surfaces events where sold_out is true and links to ticket_url
  • Populate artist profile pages with upcoming live dates by matching artists array entries to your own artist database
  • Monitor event announcement freshness by tracking new entries in the events array across scheduled API calls
  • Drive email digest campaigns with event title, description, image, and ticket_url for subscriber segments
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Labyrinth Events have an official developer API?+
Labyrinth Events does not publish a documented public developer API or API portal. This Parse API is the available programmatic route to their featured event data.
What does the `sold_out` field tell me, and can I filter events by it?+
The sold_out field is a boolean on each event object indicating whether tickets are no longer available. The endpoint returns all upcoming featured events regardless of sold-out status, so filtering by that field is done client-side after receiving the full response.
Does the API cover past events or events from individual artist or venue pages?+
No. get_featured_events returns only upcoming events surfaced on the Labyrinth Events homepage; past events and listings from individual artist or venue sub-pages are not included. You can fork this API on Parse and revise it to add an endpoint that targets those pages.
How many events are typically returned, and is there pagination?+
The endpoint returns however many featured upcoming events Labyrinth Events is currently promoting — the total field in the response gives the exact count for each call. There is no pagination; all events are delivered in one response.
Does the API return ticket pricing or event capacity details?+
Ticket pricing and capacity figures are not included in the response. The API provides a ticket_url linking to the purchase flow where that information is available, and a sold_out boolean. You can fork this API on Parse and revise it to add an endpoint that retrieves pricing details from the linked ticket pages.
Page content last updated . Spec covers 1 endpoint from labyrinthevents.com.
Related APIs in EntertainmentSee all →
axs.com API
Search for events, performers, and venues across AXS.com to find tickets, pricing, and availability information in your area or by category. Browse featured events, explore venues by city, and access detailed event information all in one place.
bandsintown.com API
Search for artists and discover their upcoming concerts, or browse live events happening in specific cities with detailed ticket information. Find exactly what shows you're interested in attending with artist profiles, event dates, venues, and direct links to purchase tickets.
etix.com API
Search for live events across venues and categories, discover what's playing today or this weekend, and check real-time ticket availability for concerts, shows, and other ticketed events. Get detailed event information and browse featured homepage listings to find and book tickets for your next outing.
shazam.com API
Search for live concerts and music events happening near you by filtering results based on your location, preferred dates, and favorite genres using Shazam's comprehensive events map. Discover upcoming shows and performances tailored to your musical interests and schedule.
lu.ma API
Find upcoming events happening in 77+ cities worldwide through Luma, with access to essential details like event titles, dates, venues, organizers, and registration links. Search across multiple cities to discover events that match your interests and easily register through the provided URLs.
queer.paris API
Access data from queer.paris.
luma.com API
Search and discover public events happening in your area through Luma, complete with details about hosts, attendees, and ticket information. Browse events by location to find exactly what you're looking for and learn more about each event's specifics.
rausgegangen.de API
Discover events happening in German cities by searching for concerts, festivals, and shows—filtering by location, date, or category to find exactly what you're looking for. Get detailed information about venues, artists, and ticket lotteries all in one place.