Discover/Unreal Germany API
live

Unreal Germany APIunrealgermany.de

Search upcoming Unreal Germany events by title. Returns event titles, dates, banner images, and URLs via a single endpoint.

Endpoint health
verified 3d ago
search_events
1/1 passing latest checkself-healing
Endpoints
1
Updated
2mo ago

What is the Unreal Germany API?

The Unreal Germany API exposes 1 endpoint — search_events — that returns upcoming community events listed on unrealgermany.de, each with 4 structured fields: title, date, banner image URL, and event page URL. You can retrieve the full upcoming event calendar or filter results by a case-insensitive title query, with results returned in chronological order.

This call costs1 credit / call— charged only on success
Try it
Case-insensitive search term matched against event titles. Omitting returns all upcoming events.
api.parse.bot/scraper/916c0cdd-0786-4e71-a36e-bd43e758da9b/<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/916c0cdd-0786-4e71-a36e-bd43e758da9b/search_events?query=KUKO' \
  -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 unrealgermany-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: Unreal Germany Events API — discover upcoming events."""
from parse_apis.unrealgermany_de_api import UnrealGermany, ParseError

client = UnrealGermany()

# List all upcoming events, capped at 10 total items.
for event in client.events.search(limit=10):
    print(event.title, "|", event.date)
    print("  banner:", event.banner)
    print("  link:  ", event.url)

# Search for a specific keyword and take only the first match.
try:
    hit = client.events.search(query="KUKO", limit=1).first()
except ParseError as e:
    print("Extraction failed:", e)
    hit = None

if hit is not None:
    print("Found:", hit.title, "on", hit.date)

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

Search upcoming Unreal Germany events by title. Returns all events when query is omitted, or filters to events whose title contains the query string (case-insensitive). Each event includes its title, date, banner image URL, and event page URL. Results are ordered chronologically as published on the site. A single request fetches all currently listed events.

Input
ParamTypeDescription
querystringCase-insensitive search term matched against event titles. Omitting returns all upcoming events.
Response
{
  "type": "object",
  "fields": {
    "total": "integer count of events in the result",
    "events": "array of event objects with title, date, banner, and url"
  },
  "sample": {
    "data": {
      "total": 8,
      "events": [
        {
          "url": "https://www.unrealgermany.de/events/gotec-pres-unreal-x-kuko-all-day-long-world-tour",
          "date": "Saturday, August 1, 2026",
          "title": "🇩🇪 GOTEC pres. UNREAL x KUKO All Day Long World Tour",
          "banner": "https://cdn.prod.website-files.com/64257c583b49e11b1c59cc01/6939a6a798cc6eb9632cb913_KUKO_TOUR_01.08_KARLSRUHE_BANNER.png"
        }
      ]
    },
    "status": "success"
  }
}

About the Unreal Germany API

What the API returns

The search_events endpoint returns an array of upcoming Unreal Germany events. Each event object includes a title string, a date value, a banner image URL (suitable for display in event listings or cards), and a url pointing to the event's detail page on unrealgermany.de. The response also includes a total integer reflecting the count of matched events.

Filtering events

The optional query parameter filters results to events whose title contains the provided string, matched case-insensitively. Omitting query entirely returns all upcoming events in chronological order. There is no date-range parameter; ordering is always by ascending date.

Coverage and scope

The API covers events listed under the events section of unrealgermany.de. Only upcoming events are included — past events are not returned. Data is scoped to what is publicly visible on the event listing: title, date, banner image, and the link to the event detail page. Speaker lists, venue addresses, ticket prices, and registration details from individual event pages are not part of the response.

Reliability & maintenanceVerified

The Unreal Germany API is a managed, monitored endpoint for unrealgermany.de — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when unrealgermany.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 unrealgermany.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
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 chronological feed of upcoming Unreal Germany events on a community dashboard using title and date fields
  • Build an event alert system that checks for new events matching a keyword via the query parameter
  • Populate event cards in a mobile app using the banner image URL and title
  • Track how many upcoming events are scheduled using the total count field
  • Aggregate Unreal Engine community event listings from multiple regional sites alongside Unreal Germany data
  • Filter events by topic keyword (e.g., 'Unreal Engine 5') to surface relevant sessions for a newsletter
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 Unreal Germany have an official developer API?+
No. unrealgermany.de does not publish an official developer API or public data feed for its event listings.
What does search_events return, and how does the title filter work?+
It returns an array of event objects, each containing title, date, banner (image URL), and url (event page link), plus a total count. The optional query parameter matches against event titles case-insensitively — for example, passing 'jam' would return any event whose title contains that string. Omitting query returns all upcoming events ordered by date.
Are past events included in the results?+
No. The API only returns upcoming events. Past events are not included in any response, and there is no date parameter to request historical data. The API covers the forward-looking event calendar only. You can fork it on Parse and revise to add historical event retrieval if that endpoint is needed.
Does the API return venue addresses, ticket prices, or speaker details?+
Not currently. The API covers title, date, banner image, and event page URL. Venue addresses, ticket pricing, registration links, and speaker information found on individual event detail pages are not exposed. You can fork it on Parse and revise to add an endpoint that fetches those fields from individual event pages.
Can I filter events by date range or sort order?+
Date-range filtering is not currently supported. Results are always returned in chronological ascending order. The only available filter is the case-insensitive query string matched against event titles. You can fork it on Parse and revise to add date-range parameters if finer temporal filtering is required.
Page content last updated . Spec covers 1 endpoint from unrealgermany.de.
Related APIs in EntertainmentSee all →
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.
ticketmaster.de API
Access data from ticketmaster.de.
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.
siegessaeule.de API
Discover and explore queer events happening in Berlin by searching the Siegessäule event listings, complete with venue information, calendar dates, and categorized event details. Filter events by section to find exactly what you're interested in attending.
docksfreiheit36.com API
Access data from docksfreiheit36.com.
humanitix.com API
Search and discover events on Humanitix, viewing detailed information including dates, times, locations, descriptions, and host names. Filter by keyword, category, price, and date to find events that match your interests.
de.ra.co API
Discover upcoming electronic music events from Resident Advisor with details including event names, dates, venues, artist lineups, and flyer images all in one place. Plan your nights out by browsing through curated listings of the hottest electronic music shows happening near you.
austintexas.org API
Search and discover community events happening in Austin, including concerts, festivals, exhibits, and family activities all in one place. Find exactly what you're looking for by browsing events from Visit Austin's official event listings.