# Barbican — 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.

> Browse and filter upcoming events at London's Barbican Centre by category and date range to find performances, exhibitions, and cultural events that match your interests. Quickly discover what's happening at the venue without having to navigate their website directly.

**Category:** Entertainment | **Website:** [www.barbican.org.uk/](https://www.barbican.org.uk/) | **Docs:** [parse.bot/marketplace/e64d111d-fe94-4d43-bc51-5ba5645387ed/barbican-org-uk-api](https://parse.bot/marketplace/e64d111d-fe94-4d43-bc51-5ba5645387ed/barbican-org-uk-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-barbican-org-uk-api-e64d111d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_events

List upcoming events at the Barbican Centre. Returns paginated results ordered chronologically. Each page contains up to 30 events. Results can be filtered by art form category and/or a custom date range. The listing covers events happening from today onwards.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Filter events by art form category. Omitting returns all categories. |
| `date_from` | string | No | Start date for filtering events, in YYYY-MM-DD format (e.g. 2026-08-01). |
| `date_to` | string | No | End date for filtering events, in YYYY-MM-DD format (e.g. 2026-08-31). |
| `page` | integer | No | Zero-based page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-barbican-org-uk-api-e64d111d/list_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","date_from":"<string>","date_to":"<string>","page":"<integer>"}'
```
