Get List of Cinema Movies

Fetch a paginated list of cinema experiences (movies) with optional filtering and sorting.

GET /api/v1/merpi/experience?cinema=true

This page provides cinema-specific guidance for retrieving movie listings. For comprehensive documentation including all parameters, response fields, pagination, and examples, see the Get List of Experiences page.

circle-exclamation

Cinema-Specific Usage

To retrieve only cinema experiences (movies), add the cinema=true parameter to the experiences endpoint:

GET /api/v1/merpi/experience?cinema=true HTTP/1.1
Accept: application/json

Common Cinema Queries

Get all cinema movies

GET /api/v1/merpi/experience?cinema=true
GET /api/v1/merpi/experience?cinema=true&featured=true

Search for a specific movie

GET /api/v1/merpi/experience?cinema=true&search=batman

Get movies by cinema business

Get recently added movies

Combine filters

Understanding Cinema Response

Cinema experiences in the list response include the cinema field set to true and must include a cinema_info object:

Cinema-Specific Fields

When cinema: true, the response includes:

Field
Description

cinema

Always true for cinema experiences

cinema_info

Object containing showing frequency (e.g., "weekly", "monthly")

cinema_info.showing

How often the movie is shown

circle-exclamation

Building a Cinema Listings Page

JavaScript Example

Python Example

Key Differences from Regular Experiences

Aspect
Cinema Experience
Regular Experience

cinema value

true

false

cinema_info

Present

Not present

Duration

Recurring (weeks/months)

Fixed dates

Detail needed

Showtimes via detail endpoint

Complete info in list

Typical category

"Cinema"

"Parties", "Concerts", etc.

Next Steps

After fetching the cinema list:

  1. Display movie cards - Show title, poster, cinema name, and showing frequency

  2. Get showtimes - Use the id from each movie to fetch complete showtime details via Get Cinema Experience Details

  3. Enable booking - Direct users to select showtimes before booking tickets

  4. Filter by location - Use business and address data to show nearby cinemas you can pass the city or state in the search query parameter.

Complete Documentation

For comprehensive information including:

  • All available query parameters

  • Complete response field descriptions

  • Pagination details

  • Error handling

  • More examples

See the Get List of Experiences documentation.

Last updated