# Unreal Germany — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search for upcoming events organized by Unreal Germany and instantly retrieve event titles, banner images, and dates to find activities that interest you. Stay informed about what's happening in the Unreal Germany community without having to browse their website manually.

**Category:** Entertainment | **Website:** [www.unrealgermany.de/#events](https://www.unrealgermany.de/#events) | **Docs:** [parse.bot/marketplace/b6c5598b-cff6-4071-ab5b-63691bbf2686/unrealgermany-de-api](https://parse.bot/marketplace/b6c5598b-cff6-4071-ab5b-63691bbf2686/unrealgermany-de-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-unrealgermany-de-api-b6c5598b/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_events

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | No | Case-insensitive search term matched against event titles. Omitting returns all upcoming events. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-unrealgermany-de-api-b6c5598b/search_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
