Discover/Rausgegangen API
live

Rausgegangen APIrausgegangen.de

Access events, venues, artists, and ticket lotteries across German cities via the rausgegangen.de API. Filter by city, date, category, and keyword.

Endpoint health
verified 3d ago
get_categories_list
search_events
get_event_detail
search_global
get_artist_detail
10/10 passing latest checkself-healing
Endpoints
10
Updated
26d ago

What is the Rausgegangen API?

The rausgegangen.de API exposes 10 endpoints covering event listings, venue details, artist profiles, and ticket lotteries across German cities. Use get_events_by_city to pull paginated event arrays with title, venue, date, price, image_url, and category, or use search_events to filter by keyword, category slug, and date range. Each event object links back to the source page and, where available, a direct ticket URL.

Try it
City slug as used on rausgegangen.de. Use German-style slugs from get_cities_list (e.g. 'berlin', 'cologne', 'muenchen', 'hamburg', 'frankfurt').
Page number for pagination.
api.parse.bot/scraper/6a2f27a8-248a-4bbb-bbbe-b184249c16db/<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/6a2f27a8-248a-4bbb-bbbe-b184249c16db/get_events_by_city?city=berlin&page=1' \
  -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 rausgegangen-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: Rausgegangen SDK — discover events across German cities."""
from parse_apis.rausgegangen_events_api import Rausgegangen, NotFound

client = Rausgegangen()

# List available cities and categories for reference.
for city in client.cities.list(limit=5):
    print(city.name, city.slug)

# Search for party events in Berlin with pagination auto-handled.
for event in client.events.search(city="berlin", category="party", limit=3):
    print(event.title, event.venue, event.price)

# Global search across events, locations, artists — take the first result.
result = client.events.search_global(query="jazz", limit=1).first()
if result:
    print(result.title, result.type, result.category)

# Fetch events happening on a specific date.
for event in client.events.by_date(date="2026-06-15", city="berlin", limit=3):
    print(event.title, event.date, event.category)

# Browse lottery events (ticket giveaways) in Berlin; handle not-found gracefully.
try:
    for lottery in client.events.lotteries(city="berlin", limit=3):
        print(lottery.title, lottery.date, lottery.venue)
except NotFound as exc:
    print(f"Not found: {exc}")

print("exercised: cities.list / events.search / events.search_global / events.by_date / events.lotteries")
All endpoints · 10 totalmissing one? ·

Fetch paginated event listings for a specific city. City slugs use German spelling (e.g. 'muenchen' not 'munich'). Use get_cities_list to discover valid city slugs. Returns upstream 404 for unrecognized city slugs.

Input
ParamTypeDescription
citystringCity slug as used on rausgegangen.de. Use German-style slugs from get_cities_list (e.g. 'berlin', 'cologne', 'muenchen', 'hamburg', 'frankfurt').
pageintegerPage number for pagination.
Response
{
  "type": "object",
  "fields": {
    "city": "city slug used in the request",
    "page": "page number as string",
    "events": "array of event objects with title, url, venue, date, price, image_url, and category"
  },
  "sample": {
    "data": {
      "city": "berlin",
      "page": "1",
      "events": [
        {
          "url": "https://rausgegangen.de/en/events/paradise-must-be-nice-2026-0/",
          "date": "Today, 11. Jun | 19:30",
          "price": "15-60 EUR + VVK",
          "title": "Paradise Must Be Nice 2026",
          "venue": "KulturRaum Zwingli-Kirche e.V.",
          "category": "Concerts & Music",
          "image_url": "https://imageflow.rausgegangen.de/url/https%3A//s3.eu-central-1.amazonaws.com/rausgegangen/gEaXM8BPQE2Isr3QCfOD_pmbn-eventfrog-header-784x479-black.png?width=450&height=253&mode=crop"
        }
      ]
    },
    "status": "success"
  }
}

About the Rausgegangen API

Event Discovery and Search

get_events_by_city returns paginated event listings for any supported German city using German-style slugs (e.g. muenchen, berlin, koeln). Each event object includes title, url, venue, date, price, image_url, and category. To filter by a single date, use get_events_by_date with the date parameter in YYYY-MM-DD format. For more granular control, search_events accepts a query keyword, a category slug (e.g. konzerte-und-musik, party, ausstellung), start_date, and end_date — all optional and combinable. Valid city slugs and category slugs can be enumerated upfront via get_cities_list and get_categories_list respectively.

Event and Venue Detail

get_event_detail takes an event slug (obtainable from listing or search results) and returns the full record: title, description, start_date, end_date, location_name, organizer_name, price_info, ticket_url, image_url, and a more_shows array listing additional show dates with individual buy_url fields. get_location_detail retrieves venue metadata including a structured address object (streetAddress, addressLocality, postalCode, addressCountry), description, image_url, and an upcoming_events array. Location slugs can be sourced from search_global results of type Location.

Artists and Global Search

get_artist_detail returns an artist's name, bio, image_url, a links array of external social and website URLs, and their upcoming_events. search_global accepts a free-text query and returns mixed result types — Subevent, Location, Artist, Organizer, and Tag — along with a numFound total count. This endpoint is useful for resolving slugs when you know a name but not the URL path.

Ticket Lotteries

get_lotteries returns city-scoped promotional ticket giveaway events. The response shape matches the standard event object (title, url, venue, date, price, image_url, category), making it straightforward to render alongside regular event listings. This data is specific to rausgegangen.de's lottery feature and is not exposed through the generic event listing endpoints.

Reliability & maintenanceVerified

The Rausgegangen API is a managed, monitored endpoint for rausgegangen.de — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when rausgegangen.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 rausgegangen.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
3d ago
Latest check
10/10 endpoints 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 city-specific event calendar app for Berlin, Hamburg, or Munich using get_events_by_city with pagination
  • Send weekly digest emails of concerts and club nights by filtering search_events with category 'konzerte-und-musik' and a date range
  • Display venue profiles with address, description, and upcoming events using get_location_detail
  • Aggregate artist tour schedules in Germany by querying get_artist_detail for bio, links, and upcoming_events
  • Surface free ticket giveaway opportunities to users via get_lotteries filtered by city
  • Power a cross-city event search widget using search_global to resolve artists, venues, and event names simultaneously
  • Monitor new events in a category by polling search_events with a fixed category slug and advancing start_date daily
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 rausgegangen.de offer an official developer API?+
Rausgegangen.de does not publish a documented public developer API. The Parse API is the structured way to access this event data programmatically.
How do I find valid city and category slugs to use in endpoint parameters?+
Call get_cities_list to retrieve all supported German cities with their name and slug fields. Call get_categories_list to retrieve all event categories with their display name and the value slug used in search_events. Both endpoints require no input parameters.
What does get_event_detail return beyond what listing endpoints include?+
Listing endpoints return a summary object with title, venue, date, price, image_url, category, and url. get_event_detail adds description, organizer_name, start_date and end_date as ISO datetimes, price_info as a text string, ticket_url, and a more_shows array where each entry has a date, time, and buy_url for additional show dates.
Does the API cover events outside Germany or in German-speaking cities like Vienna or Zurich?+
Coverage is limited to German cities listed by get_cities_list. Austrian and Swiss cities are not currently included. You can fork the API on Parse and revise it to point at city slugs from those regions if rausgegangen.de adds cross-border listings.
Does search_events return user reviews or ratings for events?+
Not currently. Event objects include title, venue, date, price, image_url, category, and url — no ratings or review data is exposed by any endpoint. You can fork the API on Parse and revise it to add a reviews endpoint if that data becomes available on the source pages.
Page content last updated . Spec covers 10 endpoints from rausgegangen.de.
Related APIs in EntertainmentSee all →
ticketmaster.de API
Access data from ticketmaster.de.
feverup.com API
Discover and search live events, exhibitions, and experiences happening in cities worldwide, filtering by categories to find concerts, shows, expos, and more that match your interests. Get detailed information about any event including schedules, descriptions, and venue details to plan your next outing.
allevents.in API
Search and discover events from AllEvents.in by name, date, or category, then view detailed information like descriptions, timings, and venue details. Filter through available event categories to find exactly what you're looking for.
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.
boletia.com API
Browse and search events on Boletia.com to discover concerts, shows, and performances across different venues and organizers, then view detailed event information and available ticket options. Filter events by category, venue, organizer, or explore trending music events in Mexico City.
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.
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.