# Lsdb — 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 and discover hardstyle and hardcore DJ livesets from the LSDB database, retrieving detailed tracklists and browsing the newest additions. Find exactly what you're looking for with powerful search capabilities to explore thousands of live DJ performances and their complete song listings.

**Category:** Music | **Website:** [lsdb.nl/](https://lsdb.nl/) | **Docs:** [parse.bot/marketplace/d304bad0-6441-4da0-9285-573104c207d1/lsdb-nl-api](https://parse.bot/marketplace/d304bad0-6441-4da0-9285-573104c207d1/lsdb-nl-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-lsdb-nl-api-d304bad0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_tracklist

Retrieve full set details and ordered tracklist from a set page. Returns the set title, artist(s), event name, date, genre, duration, stage/area info (Meer info), and each numbered track entry parsed into artist, title, and remix/mix name. Unknown or ID tracks are preserved as explicit placeholders. One network round-trip per call.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full lsdb.nl set page URL (e.g. https://lsdb.nl/set/252828/b-front-frontliner-pres-b-frontliner-decibel-outdoor-2024-17-08-24). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lsdb-nl-api-d304bad0/get_tracklist \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### latest

List the most recently added livesets from the RSS feed. Returns up to 20 entries with set URLs, titles, artists, events, genres, and publication dates. No input required.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lsdb-nl-api-d304bad0/latest \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search

Search livesets by text query. Returns paginated results with set URLs, titles, and dates, sorted by date descending. Results are auto-iterated across pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search query text (artist, event, or track name). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lsdb-nl-api-d304bad0/search \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>"}'
```
