# Uae Voxcinemas — 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 discover movies playing at VOX Cinemas across the UAE, view detailed information about specific films and cinema locations, and check real-time showtimes for your preferred screenings. Get comprehensive details about each cinema including their facilities and locations to plan your movie experience.

**Category:** Entertainment | **Website:** [uae.voxcinemas.com/](https://uae.voxcinemas.com/) | **Docs:** [parse.bot/marketplace/03aabb6f-c746-4b00-852b-14d919e21e28/uae-voxcinemas-com-api](https://parse.bot/marketplace/03aabb6f-c746-4b00-852b-14d919e21e28/uae-voxcinemas-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-uae-voxcinemas-com-api-03aabb6f/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_cinema_details

Get detailed information for a specific cinema location including address, coordinates, Google Maps URL, and city. The cinema is identified by its code from the get_cinemas endpoint.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Cinema code from get_cinemas results (e.g. '0002', '0036', '0013'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-uae-voxcinemas-com-api-03aabb6f/get_cinema_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_cinemas

Get list of all VOX Cinemas locations in the UAE with name, city, address, cinema code, and coordinates.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-uae-voxcinemas-com-api-03aabb6f/get_cinemas \
  -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, genre, runtime, release date, language, subtitles, and content rating. The movie slug is obtained from the get_movies endpoint results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Movie URL slug from get_movies results (e.g. 'disclosure-day', 'obsession', 'michael'). |

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

### get_movies

Get list of currently showing movies at VOX Cinemas UAE, including title, language, genre, content rating, runtime, poster URL, and release date. Returns all movies in the 'Now Showing' category by default.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Movie category: 'whatson' for currently showing movies. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-uae-voxcinemas-com-api-03aabb6f/get_movies \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>"}'
```

### get_showtimes

Get movie showtimes across VOX Cinemas UAE, with optional filtering by date, cinema name, or movie name. Returns available session times grouped by movie, cinema, and experience type. Limited to the first 10 movies for performance.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `cinema` | string | No | Filter by cinema name (partial match, case-insensitive). |
| `date` | string | No | Date in YYYYMMDD format (e.g. '20260611'). Omitting returns today's showtimes. |
| `movie` | string | No | Filter by movie name (partial match, case-insensitive). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-uae-voxcinemas-com-api-03aabb6f/get_showtimes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"cinema":"<string>","date":"<string>","movie":"<string>"}'
```
