Unreal Germany APIunrealgermany.de ↗
Search upcoming Unreal Germany events by title. Returns event titles, dates, banner images, and URLs via a single endpoint.
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.
curl -X GET 'https://api.parse.bot/scraper/916c0cdd-0786-4e71-a36e-bd43e758da9b/search_events?query=KUKO' \ -H 'X-API-Key: $PARSE_API_KEY'
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")
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.
| Param | Type | Description |
|---|---|---|
| query | string | Case-insensitive search term matched against event titles. Omitting returns all upcoming events. |
{
"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.
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.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Display a chronological feed of upcoming Unreal Germany events on a community dashboard using
titleanddatefields - Build an event alert system that checks for new events matching a keyword via the
queryparameter - Populate event cards in a mobile app using the
bannerimage URL andtitle - Track how many upcoming events are scheduled using the
totalcount 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
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 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.
Does Unreal Germany have an official developer API?+
What does search_events return, and how does the title filter work?+
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?+
Does the API return venue addresses, ticket prices, or speaker details?+
Can I filter events by date range or sort order?+
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.