Find optimal Cineplex showtimes
find_optimal_showtimesFind showtimes for a movie at a theatre on a given date, filtering out front rows and side seats, and requiring a block of contiguous open seats for your group.
Instructions
Given a movie title, theatre, and date, find showtimes matching a format (default IMAX) and check which ones have good seats available (not front rows, not sides, with a contiguous block big enough for your group).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date | Yes | Date in YYYY-MM-DD format | |
| theatreId | Yes | Cineplex theatre ID, from find_theatres | |
| movieTitle | Yes | Movie title, e.g. 'The Odyssey' | |
| formatMatch | No | Case-insensitive substring to match against the showtime's format/experience tag, default 'IMAX' | |
| minContiguous | No | Minimum contiguous open seats required, default 1 | |
| excludeFrontRows | No | Number of front rows to exclude, default 3 | |
| excludeSideSeats | No | Number of seats to exclude from each side wall, default 3 |