# Visitlondon — 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 filter thousands of London events by your preferred dates and categories to find concerts, theater, exhibitions, and more happening across the city. Discover what's on in London and plan your visit based on real-time event listings from visitlondon.com.

**Category:** Entertainment | **Website:** [www.visitlondon.com/things-to-do/whats-on](https://www.visitlondon.com/things-to-do/whats-on) | **Docs:** [parse.bot/marketplace/a0e0ab29-43e7-4c4c-b11b-07d6680bd795/visitlondon-com-api](https://parse.bot/marketplace/a0e0ab29-43e7-4c4c-b11b-07d6680bd795/visitlondon-com-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-visitlondon-com-api-a0e0ab29/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_events

Search London events with optional date range and category filters. Returns paginated results including event title, category, dates, price, ratings, and coordinates. Results are auto-iterated across pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Event category filter. Omitted or empty returns all categories. |
| `from_date` | string | No | Start date in D-M-YYYY format (e.g. 14-7-2026). Filters events occurring on or after this date. |
| `page` | integer | No | Page number for paginated results. |
| `to_date` | string | No | End date in D-M-YYYY format (e.g. 31-7-2026). Filters events occurring on or before this date. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-visitlondon-com-api-a0e0ab29/search_events \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","from_date":"<string>","page":"<integer>","to_date":"<string>"}'
```
