# Wigmore Hall — 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 concerts and events happening at Wigmore Hall, one of the UK's premier music venues, by accessing current event listings. Plan your visit by browsing available performances and dates all in one place.

**Category:** Entertainment | **Website:** [www.wigmore-hall.org.uk/](https://www.wigmore-hall.org.uk/) | **Docs:** [parse.bot/marketplace/64ceb7f5-9115-4404-88ca-3e16313db92a/wigmore-hall-org-uk-api](https://parse.bot/marketplace/64ceb7f5-9115-4404-88ca-3e16313db92a/wigmore-hall-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-wigmore-hall-org-uk-api-64ceb7f5/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_events

List upcoming events at Wigmore Hall. Returns paginated results of concerts and events from today onward (up to 180 days), ordered chronologically. Each page contains up to 12 events. Use the page parameter to paginate through all results; total_pages and total_items in the response indicate the full result set size.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. Each page returns up to 12 events. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-wigmore-hall-org-uk-api-64ceb7f5/list_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>"}'
```
