# Concert Archives — 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 performers and their concert history to discover performance details, repertoire, and event information from Concert Archives. Find specific concerts, view performer profiles, and explore what artists have performed and when.

**Category:** Music | **Website:** [concertarchives.org/](https://concertarchives.org/) | **Docs:** [parse.bot/marketplace/39145ba3-823b-4129-9df0-0bc856f531e5/concertarchives-org-api](https://parse.bot/marketplace/39145ba3-823b-4129-9df0-0bc856f531e5/concertarchives-org-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-concertarchives-org-api-39145ba3/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_concert_details

Retrieve detailed information for a specific concert including date, venue, location, performers, and setlists (repertoire). The setlist fetch is a secondary request; concerts without a published setlist return an empty songs array. Slug obtained from get_performer_concerts or search_concerts.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The slug of the concert, obtained from get_performer_concerts concerts[*].slug or search_concerts results[*].slug. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-concertarchives-org-api-39145ba3/get_concert_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_performer_concerts

Retrieve the concert history for a specific performer identified by slug. Returns a paginated list of concerts with date, title, venue, and concert slug. Each concert slug can be used with get_concert_details for full information.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `slug` | string | Yes | The slug of the performer, obtained from search_performers results[*].slug. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-concertarchives-org-api-39145ba3/get_performer_concerts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","slug":"<string>"}'
```

### search_concerts

Full-text search over concerts by keyword. Returns paginated results with date, title, slug, and venue/location. The slug can be used with get_concert_details for full information including setlists.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search query for concerts. |

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

### search_performers

Full-text search over performers (bands, orchestras, solo artists) by name. Returns paginated results with performer name, slug, and concert count. The slug is the identifier for fetching a performer's concert history via get_performer_concerts.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search query for the performer name. |

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