# Resident Advisor 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.

> 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.

**Category:** Music | **Website:** [de.ra.co/](https://de.ra.co/) | **Docs:** [parse.bot/marketplace/cab1c341-aafb-4313-88d4-55724ef63d10/de-ra-co-api](https://parse.bot/marketplace/cab1c341-aafb-4313-88d4-55724ef63d10/de-ra-co-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-de-ra-co-api-cab1c341/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_events

List upcoming events for a given city area on Resident Advisor. Returns paginated results sorted by date ascending, then popularity. Each event includes name, date/time, venue, artists, banner image URL, and RA event link. The area is resolved from a country URL code and city slug matching RA's URL scheme (e.g. /events/de/berlin). Multi-day events appearing on multiple listing dates are deduplicated by event ID within a page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | No | City slug as used in RA URLs (e.g. 'berlin', 'munich', 'hamburg'). Lowercase, no spaces. |
| `country` | string | No | Two-letter country URL code as used in RA URLs (e.g. 'de' for Germany, 'uk' for United Kingdom, 'us' for United States). |
| `page` | integer | No | Page number for pagination (1-indexed). |
| `page_size` | integer | No | Number of events per page (1-50). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-de-ra-co-api-cab1c341/list_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>","country":"<string>","page":"<integer>","page_size":"<integer>"}'
```
