# Landmark Theatres — 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 current movies, check showtimes, and browse Landmark Theatres locations nationwide with direct ticketing links. Search what's playing at any US Landmark Theatre and get all the information you need to plan your movie outing.

**Category:** Entertainment | **Website:** [landmarktheatres.com/](https://landmarktheatres.com/) | **Docs:** [parse.bot/marketplace/7721fad1-5f85-43f1-ab18-e89fcd7a7173/landmarktheatres-com-api](https://parse.bot/marketplace/7721fad1-5f85-43f1-ab18-e89fcd7a7173/landmarktheatres-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-landmarktheatres-com-api-7721fad1/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_showtimes

Get detailed showtimes for a specific theater on a specific date. Returns movies with individual screening times, ticketing URLs, occupancy rates, and accessibility tags. If neither theater_id nor theater_name is provided, returns results for a default location (Midtown Art Cinema). Dates without scheduled screenings return an empty movies array.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | No | Date in YYYY-MM-DD format. Defaults to today's date if omitted. |
| `theater_id` | string | No | Direct theater ID. Overrides theater_name if provided. |
| `theater_name` | string | No | Theater name to search for (partial matching supported). |

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

### list_theaters

List all Landmark Theatres locations with addresses, coordinates, screen counts, and descriptions. Returns all theaters sorted alphabetically by name. Each theater has an ID that can be used with now_playing and get_showtimes endpoints.

**Estimated cost:** Metered

_No parameters required._

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

### now_playing

Get all movies currently playing or scheduled at a specific Landmark Theatre location. Returns full movie details including title, runtime, genres, cast, directors, synopsis, rating, poster URL, trailer URL, and scheduled dates. If neither theater_id nor theater_name is provided, returns results for a default location (Midtown Art Cinema).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `theater_id` | string | No | Direct theater ID (e.g. 'X00QM', 'X019B'). Overrides theater_name if provided. Get IDs from list_theaters endpoint. |
| `theater_name` | string | No | Theater name to search for (e.g. 'Kendall Square', 'Denver Pavilions'). Partial matching supported. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-landmarktheatres-com-api-7721fad1/now_playing \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"theater_id":"<string>","theater_name":"<string>"}'
```
