# Everyman Cinema — 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.

> Find showtimes and movies playing at Everyman Cinema venues across the UK, browse detailed schedules for each location, and plan your cinema visits with up-to-date venue information. Check what films are screening when and where to book your tickets in advance.

**Category:** Entertainment | **Website:** [www.everymancinema.com/film-listing/](https://www.everymancinema.com/film-listing/) | **Docs:** [parse.bot/marketplace/f77d14b6-a210-4bc3-bb01-83cabf0005b6/everymancinema-com-api](https://parse.bot/marketplace/f77d14b6-a210-4bc3-bb01-83cabf0005b6/everymancinema-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-everymancinema-com-api-f77d14b6/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_schedule

Returns film showtimes for a specific venue on a given date, including movie titles, start times, booking URLs, occupancy rates, tags, and film metadata (certificate, runtime, genres). Each showtime entry includes a direct booking link to purchase tickets.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | No | Date to retrieve showtimes for in ISO format YYYY-MM-DD. Defaults to today (UTC). |
| `theater_id` | string | Yes | Everyman Cinema venue ID (e.g. G0210 for Bury St Edmunds, X11DP for Altrincham). Obtain from list_venues endpoint. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-everymancinema-com-api-f77d14b6/get_schedule \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date":"<string>","theater_id":"<string>"}'
```

### get_scheduled_movies

Returns all movies scheduled at a specific venue along with their full scheduled dates, synopsis, poster URL, certificate, runtime, and genres. Useful for discovering what films are coming up over the next weeks at a venue without specifying a single date.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `theater_id` | string | Yes | Everyman Cinema venue ID (e.g. G0210 for Bury St Edmunds, X11DP for Altrincham). Obtain from list_venues endpoint. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-everymancinema-com-api-f77d14b6/get_scheduled_movies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"theater_id":"<string>"}'
```

### list_venues

Returns all Everyman Cinema venues with their IDs and names. The venue ID is required by other endpoints to retrieve schedules and showtimes. Results are a static list of all 50 UK locations.

**Estimated cost:** Metered

_No parameters required._

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