cinemark.cl APIcinemark.cl ↗
Access Cinemark Chile showtimes, ticket prices, cinema locations, concessions, promotions, and movie details via a structured REST API with 11 endpoints.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/c41820e7-6833-4249-9478-8e3e925c3114/get_cinemas' \ -H 'X-API-Key: $PARSE_API_KEY'
Get a list of all Cinemark cinemas in Chile with their addresses, locations, available formats, and room counts.
No input parameters required.
{
"type": "object",
"fields": {
"theaters": "array of theater objects with id, name, slug, address, city, latitude, longitude, location, formats, totalCinemaRooms, hasConcessions"
},
"sample": {
"data": {
"theaters": [
{
"id": 2305,
"city": "Arica",
"name": "Arica / Cinemark Mallplaza Arica",
"slug": "cinemark-mallplaza-arica",
"address": "Av. Diego Portales 640, Local 300, Arica",
"formats": [
{
"id": "0000000001",
"name": "PALCO",
"shortName": "PALCO"
},
{
"id": "0000000003",
"name": "2D",
"shortName": "2D"
}
],
"latitude": "-18.4691",
"location": {
"id": "d8213f91-c559-477a-934c-aaea6e4d154a",
"name": "Arica"
},
"longitude": "-70.3086",
"loyaltyCode": "17",
"hasConcessions": true,
"totalCinemaRooms": 7
}
]
},
"status": "success"
}
}About the cinemark.cl API
The Cinemark Chile API provides structured access to 11 endpoints covering every major dimension of Cinemark's Chilean cinema operations. Starting with get_cinemas, you can retrieve all theater locations including coordinates, available formats, and room counts, then drill into per-cinema showtimes, ticket pricing, concession menus, and active promotions — all in a single consistent interface.
Cinemas, Movies, and Showtimes
The get_cinemas endpoint returns a full list of Cinemark Chile theaters, each with id, name, slug, address, city, latitude, longitude, available formats, totalCinemaRooms, and a hasConcessi flag indicating concession availability. These IDs are the keys for querying per-theater data. Pass a theater_id to get_showtimes with an optional date (YYYY-MM-DD) to get sessions grouped by movie; omitting the date returns today's schedule. Note that the endpoint may return an empty array if no sessions have been published yet for that theater and date.
Movie Data and Ticket Pricing
get_movies returns all titles across SHOWING_NOW, PRESALE, and COMING_SOON statuses — filter using the optional status parameter. Each movie object includes id, slug, title, openingDate, runTime, posterUrl, rating, formats, and languages. For richer detail, pass a movie slug to get_movie_details to retrieve the full synopsis, cast, genres, versions, and a trailerUrl. Ticket pricing is session-specific: supply a cinema_id and showtime_id to get_ticket_prices, which returns a Tickets array with ticket types and their prices for that exact session.
Formats, Promotions, and Loyalty
get_formats lists every cinema format Cinemark Chile offers — 2D, 3D, IMAX, DBOX, XD, PALCO, PREMIER, and PLAY — with description, images, featured flag, and display order. get_promotions returns active deals with startDate, endDate, theaterIds, termsAndConditions, and call-to-action fields. get_muvi_club_info exposes the Muvi Club loyalty program benefits structure. get_releases covers presale and coming-soon titles, optionally filtered by a specific date, while get_confiteria returns the grouped concession menu for a given cinema_id.
- Build a showtimes aggregator that maps session times and formats (IMAX, 3D, DBOX) across all Chilean Cinemark locations.
- Display real-time ticket pricing by chaining get_showtimes and get_ticket_prices for a selected theater and date.
- Create a movie discovery app that filters titles by SHOWING_NOW, PRESALE, or COMING_SOON status from get_movies.
- Generate a cinema locator with latitude/longitude coordinates from get_cinemas for map-based queries.
- Track upcoming releases and presale windows using get_releases with a target date parameter.
- Surface active promotions and their theater-specific validity using get_promotions theaterIds and date range fields.
- Display concession menus alongside ticket options by combining get_confiteria and get_ticket_prices for a given cinema.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.