# Cinemark Chile — 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 movies playing at Cinemark Chile cinemas, check showtimes and ticket prices, browse concession options, and explore current promotions and rewards program details. Plan your cinema visit by searching available theaters, viewing movie information, and accessing exclusive deals all in one place.

**Category:** Entertainment | **Website:** [cinemark.cl/](https://cinemark.cl/) | **Docs:** [parse.bot/marketplace/77588500-d651-4cae-ae34-1f0d97815be0/cinemark-cl-api](https://parse.bot/marketplace/77588500-d651-4cae-ae34-1f0d97815be0/cinemark-cl-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-cinemark-cl-api-77588500/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_cinemas

Get a list of all Cinemark cinemas in Chile with their addresses, locations, available formats, and room counts. Returns all theaters regardless of location.

**Estimated cost:** Metered

_No parameters required._

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

### get_confiteria

Get the snack bar / concessions menu items for a specific cinema. Returns categories of items (Combos, Coleccionables, Rellenos, etc.) with prices in cents, descriptions, and modifier options.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `cinema_id` | string | Yes | The numeric ID of the cinema (theater ID from get_cinemas results, e.g. '512'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-cinemark-cl-api-77588500/get_confiteria \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"cinema_id":"<string>"}'
```

### get_formats

Get available cinema formats at Cinemark Chile (2D, 3D, IMAX, DBOX, XD, PALCO, PREMIER, PLAY) with descriptions, images, and feature flags.

**Estimated cost:** Metered

_No parameters required._

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

### get_movie_details

Get detailed information for a specific movie including synopsis, cast, genres, available formats, versions, languages, and trailer URL. The slug is available from get_movies results. Returns the movie object directly.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | The URL slug of the movie (e.g. 'scary-movie'). Available from get_movies results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-cinemark-cl-api-77588500/get_movie_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_movies

Get all movies currently available at Cinemark Chile including those showing now, in presale, and coming soon. Optionally filter by status. Each movie includes id, slug, title, status, openingDate, runTime, posterUrl, rating, formats, and languages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `status` | string | No | Filter movies by status. Accepted values: SHOWING_NOW, PRESALE, COMING_SOON. Case-insensitive. Omitting returns all movies. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-cinemark-cl-api-77588500/get_movies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"status":"<string>"}'
```

### get_movies_now_showing

Get the currently showing movies and showtimes for a specific cinema, grouped by date and movie. Each movie entry includes its sessions with times, formats, seat availability, and room numbers.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `cinema_id` | string | Yes | The numeric ID of the cinema (theater ID from get_cinemas results, e.g. '2305'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-cinemark-cl-api-77588500/get_movies_now_showing \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"cinema_id":"<string>"}'
```

### get_muvi_club_info

Get Muvi Club loyalty program information and benefits.

**Estimated cost:** Metered

_No parameters required._

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

### get_promotions

Get current promotions and discounts available at Cinemark Chile cinemas. Each promotion includes title, description, image, validity dates, applicable theater IDs, and terms.

**Estimated cost:** Metered

_No parameters required._

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

### get_releases

Get movies available for presale or coming soon. Returns movies with status PRESALE or COMING_SOON from the full movies catalog. Optionally filter by opening date.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | No | Filter releases by opening date prefix (YYYY-MM-DD). Omitting returns all presale and coming soon movies. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-cinemark-cl-api-77588500/get_releases \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date":"<string>"}'
```

### get_showtimes

Get showtimes for a specific theater. Returns all available sessions for the next several days, including movie name, session time, format, language, room, and seat availability. May return an empty array if no showtimes are currently published.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date` | string | No | Date to filter showtimes for in YYYY-MM-DD format. Omitting returns all upcoming showtimes. |
| `theater_id` | string | Yes | Numeric theater ID from get_cinemas results (e.g. '2305'). |

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

### get_ticket_prices

Get ticket types and prices for a specific showtime session.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `cinema_id` | string | Yes | The unique ID of the cinema. |
| `showtime_id` | string | Yes | The unique ID of the showtime session. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-cinemark-cl-api-77588500/get_ticket_prices \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"cinema_id":"<string>","showtime_id":"<string>"}'
```
