Discover/rausgegangen.de API
live

rausgegangen.de APIrausgegangen.de

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

Endpoints
10
Updated
14d ago
Try it
City slug as used on rausgegangen.de. Use German-style slugs from get_cities_list (e.g. 'b
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.
Use it in your codegrab 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'
All endpoints · 10 totalclick to expand

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": "",
          "date": "PICK OF THE DAY",
          "price": "8,00 to 19,00 €",
          "title": "22. JAPANMARKT BERLIN - KIRSCHBLÜTENFEST",
          "venue": "Festsaal Kreuzberg",
          "category": "Festivals",
          "image_url": "https://imageflow.rausgegangen.de/url/https%3A//s3.eu-central-1.amazonaws.com/rausgegangen/3deih1KT0O1Kb5wi5muA_japanmarkt-berlinfacebook-post1200x630px03-05-2026kirschblutekorr2.jpg?width=450&height=337&mode=crop"
        }
      ]
    },
    "status": "success"
  }
}

About the rausgegangen.de 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.

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.

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,000250 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 →
noor-book.com API
Search and discover books across 1,800+ categories in the Noor Book library, retrieving detailed information about titles, authors, biographies, and book metadata. Access comprehensive author profiles and browse one of the largest Arabic and English digital book collections with over 289,000 authors.
vg.no API
Access VG.no's latest news, articles, sports scores, and TV guides through a single interface where you can browse the front page, search articles by topic, view category-specific content, and find related stories. Get real-time sports scores and television schedules alongside comprehensive news coverage from Norway's leading news outlet.
vegasinsider.com API
Retrieve MLB betting odds from major sportsbooks including bet365, FanDuel, and DraftKings, covering Moneyline, Total, and Runline markets for any supported date. Easily compare odds across books to identify the best available lines.
novelbin.me API
Search and browse novels by title, genre, or popularity, and explore trending, completed, or recently updated works. Access full novel details, chapter listings, chapter content, author information, related titles, and reader comments. Authenticated users can manage bookmarks with reading-status tracking and subscribe to novels for update notifications.
quizbowlpackets.com API
Search and browse thousands of quizbowl question sets across all competition levels, then access detailed metadata like difficulty, subjects, and download links for each packet. Find the perfect practice materials for High School, Collegiate, Middle School, or Pop Culture quizbowl competitions.
glastonburyfestivals.co.uk API
Discover historical and current Glastonbury Festival line-ups, find artist set times and stage locations, and search for specific performers across all festival years. Stay updated with the latest festival news and explore detailed information about festival areas and stages.
puntoticket.com API
Browse and search events happening in Chile with PuntoTicket, viewing featured shows, filtering by category, and checking detailed pricing and availability for concerts, theater, sports, and more. Find the perfect event by exploring all listings or discovering what's trending right now.
wynncraft.com API
Access detailed Wynncraft game information to look up item metadata and search across the complete item database, retrieve player statistics and character inventories, and browse guild information and global search results. Use this data to compare gear, track player progress, analyze guild rosters, or build tools for the Wynncraft community.