Showtimes

V2

Get showtimes for the specified theatre and date


Endpoints

Verb Endpoint Description
GET /v2/theatres/{theatre-number}/showtimes/{date} Returns all showtimes for the specified Theatre and Date and meeting additional search criteria provided.
GET /v2/theatres/{theatre-number}/showtimes Returns all future showtimes for the specified Theatre.
GET /v2/showtimes/{id} Returns the Showtime with the specified id.
GET /v2/theatres/{theatre-number}/movies/{movie-id}/earliest-showtime Returns the earliest showtime for a specific movie id at the specified theatre.
GET /v2/showtimes/views/current-location/{date}/{latitude}/{longitude} Returns all showtimes in proximity to the latitude and logitude for the specified Date and meeting additional search criteria provided.

Showtimes Query Parameters

  • You may optionally supply a movie query string parameter to specify a movie name to search showtimes for.
    • If one isn't provided, all movies will be returned
  • You may optionally supply a movie-id query string parameter to specify a movie id to search showtimes for.
    • If one isn't provided, all movies will be returned
  • You may optionally supply a include-attributes query string parameter to specify a comma delimited list of attributes that the showtimes must have.
    • If one isn't provided all showtimes will be returned.
    • Visit here to browse the full list of options
  • You may optionally supply a exclude-attributes query string parameter to specify a comma delimited list of attributes that the showtimes must not have.
    • If one isn't provided all showtimes will be returned.
    • Visit here to browse the full list of options
  • You may optionally supply a attribute-operator query string parameter to specify if your included or excluded attributes should be inclusive or exclusive.
    • If one isn't provided all showtimes will be returned.
    • Options Include:
      • and
      • or
  • You may optionally supply a page-number query string parameter to specify which page of results to retrieve.
    • If one isn't provided the results will begin with the first page (a value of 1 will be used).
  • You may optionally supply a page-size query string parameter to specify the number of results per page.
    • If one isn't provided a default of 10 will be used.

Showtimes Properties

Name Description
pageSize The number of results included for each page, up to a maximum of 100. Defaults to 10.
pageNumber The page number returned.
count The total number of results available across all pages.
lastUpdatedDateUtc The date time UTC of when any showtime in the result set was last updated.
_embedded.Showtimes A list of Showtime Representations returned.

Showtimes Links

Relation Description Verbs Templated
self The current list of showtimes results. GET No
previous The previous page of showtimes results. GET No
next The next page of showtimes results. GET No

Showtime


Showtime Properties

Name Description
id The showtime id.
performanceNumber The Radiant performance number.
movieId The movie id.
movieName The movie title.
genre The primary genre of the movie.
movieUrl The movie website URL.
sortableMovieName The movie's sortable title name.
showDateTimeUtc The show date/time in UTC (ISO-8601)
showDateTimeLocal The show date/time in the theatre's local timezone.
sellUntilDateTimeUtc The date time UTC of when the showtime should stop being sold.
auditorium The auditorium id where the showing is taking place.
layoutId The auditorium layout being used for the this showtime.
layoutVersionNumber The auditorium layout version number. This is incremented whenever an auditorium layout is modified.
isSoldOut Indicates if tickets are sold out.
isAlmostSoldOut Indicates if tickets are almost sold out based on an AMC predefined threshold.
isCanceled Indicates if the showing has been canceled.
inTheatreTicketingOnly Indicates if tickets for the showtime are only available in theatre.
utcOffset The UTC offset of the showtime.
purchaseUrl The website url where tickets may be purchased from AMC Theatres.
mobilePurchaseUrl The mobile website url where tickets may be purchased from AMC Theatres.
runTime The duration of the showing in minutes.
mpaaRating The MPAA's (Motion Picture Association of America's) official movie rating.
permiumFormat The premium format of the showtime.
ticketPrices The showings ticket prices.
lastUpdatedDateUtc The date time UTC of when the showtime was last updated.
media.heroDesktopDynamic Url location of hero Desktop.
media.heroMobileDynamic Url location of hero Mobile.
media.posterDynamic Url location of the Movie Poster.
media.posterDynamic120x74 Url location of the Movie Poster sized 120x74.
media.posterAlternateDynamic Url location of the Movie poster alternate.
media.poster3DDynamic Url location of the Movie 3D poster.
media.posterIMAXDynamic Url location of the IMAX poster.
media.trailerTeaserDynamic Url location of the trailer teaser.
media.trailerAlternateDynamic Url location of the alternate trailer.
isEmbargoed Nullable flag indicating if this showtime is embargoed. If false or null, showtime is not embargoed.
isComingSoon Nullable flag indicating if this showtime is coming soon (will be available for display soon). If false or null, showtime is not coming soon.
isDiscountMatineePriced Indicates whether this showtime is available at a discounted matinee price.
discountMatineeMessage If a showtime is available at discounted matinee price, display message for PLF and Non PLF showtimes.
visibilityDateTimeUtc A UTC DateTime indicating when an embargoed showtime will become displayable, and no longer be embargoed.
attributes A list of showtime attributes.
estimatedFees Estimated fees per ticket where pre-purchase display is required by law.
estimatedFees.cost The estimated fee amount excluding tax.
estimatedFees.tax The estimated fee tax amount.
estimatedFees.name The estimated fee type name.
estimatedFees.name The estimated fee quantity.
_embedded.TicketPrices A list of TicketPrice Representations returned.


Showtime Links

Relation Description Methods Templated
self The current showtime representation. GET No
https://api.amctheatres.com/rels/v2/movie The movie being shown. GET No
https://api.amctheatres.com/rels/v2/theatre The theatre where the showing occurs. GET No
https://api.amctheatres.com/rels/v2/seating-layout The auditorium's seating layout (if showing is reserved seating). GET No
https://api.amctheatres.com/rels/v2/showtimes/private-theatre-rental-movies The available movies for the current showtime if it is a private theatre rental. GET No

Ticket Price


Ticket Price Properties

Name Description
price A decimal value representing the price of the ticket in USD. The value is not final and is for display only
type The ticket type, adult, child, or senior
sku The SKU value used to assemble the product for an order
agePolicy The age based policy regarding sale of the particular ticket type
tax A decimal value representing the tax on the ticket price in USD. The value is not final and is for display only.

Attribute


Attribute Properties

Name Description
name The display name
description The attribute description.
code The unique identifier for queries.


Examples

Get theatre showtimes on the specified date for a specific movie
GET  /v2/theatres/610/showtimes/2-24-17/?movie=wall

Response

{
  "pageSize": 10,
  "pageNumber": 1,
  "count": 15,
  "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
  "_links": {
    "self": {
      "href": "https://api.amctheatres.com/v2/theatres/610/showtimes/2-24-2017?movie=wall&page-number=1&page-size=10",
      "templated": false
    },
    "next": {
      "href": "https://api.amctheatres.com/v2/theatres/610/showtimes/2-24-2017?movie=wall&page-number=2&page-size=10",
      "templated": false
    }
  },
  "_embedded": {
    "showtimes": [
      {
        "id": 52550358,
        "internalReleaseNumber": 57459,
        "performanceNumber": 92419,
        "movieId": 47041,
        "movieName": "The Great Wall",
        "sortableMovieName": "Great Wall, The",
        "genre": "ACTION",
        "showDateTimeUtc": "2017-02-24T16:00:00Z",
        "showDateTimeLocal": "2017-02-24T10:00:00",
        "sellUntilDateTimeUtc": "2017-02-24T16:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 14,
        "layoutId": 10,
        "layoutVersionNumber": 1,
        "runTime": 103,
        "mpaaRating": "PG13",
        "premiumFormat": "IMAX 3D",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550358",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550358",
        "movieUrl": "https://www.amctheatres.com/movies/the-great-wall",
        "wwmReleaseNumber": 235575,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "isDiscountMatineePriced": false,
        "attributes": [
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "IMAX3D",
            "name": "IMAX 3D"
          }
        ],
        "ticketPrices": [
          {
            "price": 10.37,
            "type": "ADULT",
            "sku": "TICKET-RS-52550358-ADULT",
            "tax": 0.88
          },
          {
            "price": 10.37,
            "type": "CHILD",
            "sku": "TICKET-RS-52550358-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.88
          },
          {
            "price": 10.37,
            "type": "SENIOR",
            "sku": "TICKET-RS-52550358-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.88
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/MovieStills/26553.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/Poster/218071R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52550358",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/47041",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92419",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92419",
            "templated": false
          }
        }
      },
      {
        "id": 52554425,
        "internalReleaseNumber": 57457,
        "performanceNumber": 92456,
        "movieId": 47041,
        "movieName": "The Great Wall",
        "sortableMovieName": "Great Wall, The",
        "genre": "ACTION",
        "showDateTimeUtc": "2017-02-24T16:45:00Z",
        "showDateTimeLocal": "2017-02-24T10:45:00",
        "sellUntilDateTimeUtc": "2017-02-24T16:55:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 23,
        "layoutId": 11,
        "layoutVersionNumber": 1,
        "runTime": 103,
        "mpaaRating": "PG13",
        "premiumFormat": "RealD 3D",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52554425",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52554425",
        "movieUrl": "https://www.amctheatres.com/movies/the-great-wall",
        "wwmReleaseNumber": 242625,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "isDiscountMatineePriced": false,
        "attributes": [
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          },
          {
            "code": "REALD3D",
            "name": "RealD 3D"
          }
        ],
        "ticketPrices": [
          {
            "price": 8.18,
            "type": "ADULT",
            "sku": "TICKET-RS-52554425-ADULT",
            "tax": 0.69
          },
          {
            "price": 8.18,
            "type": "CHILD",
            "sku": "TICKET-RS-52554425-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.69
          },
          {
            "price": 8.18,
            "type": "SENIOR",
            "sku": "TICKET-RS-52554425-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.69
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/MovieStills/26553.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/Poster/218071R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52554425",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/47041",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92456",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92456",
            "templated": false
          }
        }
      },
      {
        "id": 52531035,
        "internalReleaseNumber": 57453,
        "performanceNumber": 92290,
        "movieId": 47041,
        "movieName": "The Great Wall",
        "sortableMovieName": "Great Wall, The",
        "genre": "ACTION",
        "showDateTimeUtc": "2017-02-24T17:00:00Z",
        "showDateTimeLocal": "2017-02-24T11:00:00",
        "sellUntilDateTimeUtc": "2017-02-24T17:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 5,
        "layoutId": 12,
        "layoutVersionNumber": 1,
        "runTime": 103,
        "mpaaRating": "PG13",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52531035",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52531035",
        "movieUrl": "https://www.amctheatres.com/movies/the-great-wall",
        "wwmReleaseNumber": 218071,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "isDiscountMatineePriced": false,
        "attributes": [
          {
            "code": "DINEINSEATSIDESERVICE",
            "name": "Dine-In Full Service",
            "description": "The perfect way to experience dinner and a movie.  Reserve your seat and enjoy a made-from-scratch menu prepared fresh by our chefs, plus a full bar.  Just push the service button at your seat to order."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          }
        ],
        "ticketPrices": [
          {
            "price": 4.9,
            "type": "ADULT",
            "sku": "TICKET-RS-52531035-ADULT",
            "tax": 0.41
          },
          {
            "price": 4.9,
            "type": "CHILD",
            "sku": "TICKET-RS-52531035-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.41
          },
          {
            "price": 4.9,
            "type": "SENIOR",
            "sku": "TICKET-RS-52531035-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.41
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/MovieStills/26553.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/Poster/218071R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52531035",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/47041",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92290",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92290",
            "templated": false
          }
        }
      },
      {
        "id": 52550357,
        "internalReleaseNumber": 57459,
        "performanceNumber": 92418,
        "movieId": 47041,
        "movieName": "The Great Wall",
        "sortableMovieName": "Great Wall, The",
        "genre": "ACTION",
        "showDateTimeUtc": "2017-02-24T18:45:00Z",
        "showDateTimeLocal": "2017-02-24T12:45:00",
        "sellUntilDateTimeUtc": "2017-02-24T18:55:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 14,
        "layoutId": 13,
        "layoutVersionNumber": 1,
        "runTime": 103,
        "mpaaRating": "PG13",
        "premiumFormat": "IMAX 3D",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550357",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550357",
        "movieUrl": "https://www.amctheatres.com/movies/the-great-wall",
        "wwmReleaseNumber": 235575,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "isDiscountMatineePriced": false,
        "attributes": [
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "IMAX3D",
            "name": "IMAX 3D"
          }
        ],
        "ticketPrices": [
          {
            "price": 13.64,
            "type": "ADULT",
            "sku": "TICKET-RS-52550357-ADULT",
            "tax": 1.15
          },
          {
            "price": 12,
            "type": "CHILD",
            "sku": "TICKET-RS-52550357-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 1.01
          },
          {
            "price": 12,
            "type": "SENIOR",
            "sku": "TICKET-RS-52550357-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 1.01
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/MovieStills/26553.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/Poster/218071R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52550357",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/47041",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92418",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92418",
            "templated": false
          }
        }
      },
      {
        "id": 52554424,
        "internalReleaseNumber": 57457,
        "performanceNumber": 92455,
        "movieId": 47041,
        "movieName": "The Great Wall",
        "sortableMovieName": "Great Wall, The",
        "genre": "ACTION",
        "showDateTimeUtc": "2017-02-24T19:30:00Z",
        "showDateTimeLocal": "2017-02-24T13:30:00",
        "sellUntilDateTimeUtc": "2017-02-24T19:40:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 23,
        "layoutId": 14,
        "layoutVersionNumber": 1,
        "runTime": 103,
        "mpaaRating": "PG13",
        "premiumFormat": "RealD 3D",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52554424",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52554424",
        "movieUrl": "https://www.amctheatres.com/movies/the-great-wall",
        "wwmReleaseNumber": 242625,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "isDiscountMatineePriced": false,
        "attributes": [
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          },
          {
            "code": "REALD3D",
            "name": "RealD 3D"
          }
        ],
        "ticketPrices": [
          {
            "price": 8.18,
            "type": "ADULT",
            "sku": "TICKET-RS-52554424-ADULT",
            "tax": 0.69
          },
          {
            "price": 6.54,
            "type": "CHILD",
            "sku": "TICKET-RS-52554424-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.55
          },
          {
            "price": 6.54,
            "type": "SENIOR",
            "sku": "TICKET-RS-52554424-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.55
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/MovieStills/26553.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/Poster/218071R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52554424",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/47041",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92455",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92455",
            "templated": false
          }
        }
      },
      {
        "id": 52531034,
        "internalReleaseNumber": 57453,
        "performanceNumber": 92289,
        "movieId": 47041,
        "movieName": "The Great Wall",
        "sortableMovieName": "Great Wall, The",
        "genre": "ACTION",
        "showDateTimeUtc": "2017-02-24T20:00:00Z",
        "showDateTimeLocal": "2017-02-24T14:00:00",
        "sellUntilDateTimeUtc": "2017-02-24T20:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 5,
        "layoutId": 15,
        "layoutVersionNumber": 1,
        "runTime": 103,
        "mpaaRating": "PG13",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52531034",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52531034",
        "movieUrl": "https://www.amctheatres.com/movies/the-great-wall",
        "wwmReleaseNumber": 218071,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "isDiscountMatineePriced": false,
        "attributes": [
          {
            "code": "DINEINSEATSIDESERVICE",
            "name": "Dine-In Full Service",
            "description": "The perfect way to experience dinner and a movie.  Reserve your seat and enjoy a made-from-scratch menu prepared fresh by our chefs, plus a full bar.  Just push the service button at your seat to order."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          }
        ],
        "ticketPrices": [
          {
            "price": 8.18,
            "type": "ADULT",
            "sku": "TICKET-RS-52531034-ADULT",
            "tax": 0.69
          },
          {
            "price": 6.54,
            "type": "CHILD",
            "sku": "TICKET-RS-52531034-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.55
          },
          {
            "price": 6.54,
            "type": "SENIOR",
            "sku": "TICKET-RS-52531034-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.55
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/MovieStills/26553.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/Poster/218071R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52531034",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/47041",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92289",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92289",
            "templated": false
          }
        }
      },
      {
        "id": 52550356,
        "internalReleaseNumber": 57459,
        "performanceNumber": 92417,
        "movieId": 47041,
        "movieName": "The Great Wall",
        "sortableMovieName": "Great Wall, The",
        "genre": "ACTION",
        "showDateTimeUtc": "2017-02-24T21:30:00Z",
        "showDateTimeLocal": "2017-02-24T15:30:00",
        "sellUntilDateTimeUtc": "2017-02-24T21:40:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 14,
        "layoutId": 16,
        "layoutVersionNumber": 1,
        "runTime": 103,
        "mpaaRating": "PG13",
        "premiumFormat": "IMAX 3D",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550356",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550356",
        "movieUrl": "https://www.amctheatres.com/movies/the-great-wall",
        "wwmReleaseNumber": 235575,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "isDiscountMatineePriced": false,
        "attributes": [
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "IMAX3D",
            "name": "IMAX 3D"
          }
        ],
        "ticketPrices": [
          {
            "price": 13.64,
            "type": "ADULT",
            "sku": "TICKET-RS-52550356-ADULT",
            "tax": 1.15
          },
          {
            "price": 12,
            "type": "CHILD",
            "sku": "TICKET-RS-52550356-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 1.01
          },
          {
            "price": 12,
            "type": "SENIOR",
            "sku": "TICKET-RS-52550356-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 1.01
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/MovieStills/26553.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/Poster/218071R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52550356",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/47041",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92417",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92417",
            "templated": false
          }
        }
      },
      {
        "id": 52554422,
        "internalReleaseNumber": 57457,
        "performanceNumber": 92453,
        "movieId": 47041,
        "movieName": "The Great Wall",
        "sortableMovieName": "Great Wall, The",
        "genre": "ACTION",
        "showDateTimeUtc": "2017-02-24T22:15:00Z",
        "showDateTimeLocal": "2017-02-24T16:15:00",
        "sellUntilDateTimeUtc": "2017-02-24T22:25:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 23,
        "layoutId": 17,
        "layoutVersionNumber": 1,
        "runTime": 103,
        "mpaaRating": "PG13",
        "premiumFormat": "RealD 3D",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52554422",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52554422",
        "movieUrl": "https://www.amctheatres.com/movies/the-great-wall",
        "wwmReleaseNumber": 242625,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "isDiscountMatineePriced": false,
        "attributes": [
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          },
          {
            "code": "REALD3D",
            "name": "RealD 3D"
          }
        ],
        "ticketPrices": [
          {
            "price": 13.1,
            "type": "ADULT",
            "sku": "TICKET-RS-52554422-ADULT",
            "tax": 1.11
          },
          {
            "price": 9.82,
            "type": "CHILD",
            "sku": "TICKET-RS-52554422-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.83
          },
          {
            "price": 11.46,
            "type": "SENIOR",
            "sku": "TICKET-RS-52554422-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.97
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/MovieStills/26553.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/Poster/218071R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52554422",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/47041",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92453",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92453",
            "templated": false
          }
        }
      },
      {
        "id": 52531033,
        "internalReleaseNumber": 57453,
        "performanceNumber": 92288,
        "movieId": 47041,
        "movieName": "The Great Wall",
        "sortableMovieName": "Great Wall, The",
        "genre": "ACTION",
        "showDateTimeUtc": "2017-02-24T23:00:00Z",
        "showDateTimeLocal": "2017-02-24T17:00:00",
        "sellUntilDateTimeUtc": "2017-02-24T23:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 5,
        "layoutId": 18,
        "layoutVersionNumber": 1,
        "runTime": 103,
        "mpaaRating": "PG13",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52531033",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52531033",
        "movieUrl": "https://www.amctheatres.com/movies/the-great-wall",
        "wwmReleaseNumber": 218071,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "isDiscountMatineePriced": false,
        "attributes": [
          {
            "code": "DINEINSEATSIDESERVICE",
            "name": "Dine-In Full Service",
            "description": "The perfect way to experience dinner and a movie.  Reserve your seat and enjoy a made-from-scratch menu prepared fresh by our chefs, plus a full bar.  Just push the service button at your seat to order."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          }
        ],
        "ticketPrices": [
          {
            "price": 9.82,
            "type": "ADULT",
            "sku": "TICKET-RS-52531033-ADULT",
            "tax": 0.83
          },
          {
            "price": 6.54,
            "type": "CHILD",
            "sku": "TICKET-RS-52531033-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.55
          },
          {
            "price": 8.18,
            "type": "SENIOR",
            "sku": "TICKET-RS-52531033-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.69
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/MovieStills/26553.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/Poster/218071R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52531033",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/47041",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92288",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92288",
            "templated": false
          }
        }
      },
      {
        "id": 52550355,
        "internalReleaseNumber": 57459,
        "performanceNumber": 92416,
        "movieId": 47041,
        "movieName": "The Great Wall",
        "sortableMovieName": "Great Wall, The",
        "genre": "ACTION",
        "showDateTimeUtc": "2017-02-25T00:15:00Z",
        "showDateTimeLocal": "2017-02-24T18:15:00",
        "sellUntilDateTimeUtc": "2017-02-25T00:25:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 14,
        "layoutId": 19,
        "layoutVersionNumber": 1,
        "runTime": 103,
        "mpaaRating": "PG13",
        "premiumFormat": "IMAX 3D",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550355",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550355",
        "movieUrl": "https://www.amctheatres.com/movies/the-great-wall",
        "wwmReleaseNumber": 235575,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "isDiscountMatineePriced": false,
        "attributes": [
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "IMAX3D",
            "name": "IMAX 3D"
          }
        ],
        "ticketPrices": [
          {
            "price": 15.28,
            "type": "ADULT",
            "sku": "TICKET-RS-52550355-ADULT",
            "tax": 1.29
          },
          {
            "price": 12,
            "type": "CHILD",
            "sku": "TICKET-RS-52550355-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 1.01
          },
          {
            "price": 13.64,
            "type": "SENIOR",
            "sku": "TICKET-RS-52550355-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 1.15
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/MovieStills/26553.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/Poster/218071R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52550355",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/47041",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92416",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92416",
            "templated": false
          }
        }
      }
    ]
  }
}
Get theatre showtimes on the specified date for a specific movie with the specified attributes
GET  /v2/theatres/610/showtimes/2-24-17/?movie=wall&attribute-operator=and&include-attributes=IMAX3D

Response

{
  "pageSize": 10,
  "pageNumber": 1,
  "count": 15,
  "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
  "_links": {
    "self": {
      "href": "https://api.amctheatres.com/v2/theatres/610/showtimes/2-24-2017?movie=wall&include-attributes=imax3d&operator=and&page-number=1&page-size=10",
      "templated": false
    }
  },
  "_embedded": {
    "showtimes": [
      {
        "id": 52550358,
        "internalReleaseNumber": 57459,
        "performanceNumber": 92419,
        "movieId": 47041,
        "movieName": "The Great Wall",
        "sortableMovieName": "Great Wall, The",
        "genre": "ACTION",
        "showDateTimeUtc": "2017-02-24T16:00:00Z",
        "showDateTimeLocal": "2017-02-24T10:00:00",
        "sellUntilDateTimeUtc": "2017-02-24T16:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 14,
        "layoutId": 10,
        "layoutVersionNumber": 1,
        "runTime": 103,
        "mpaaRating": "PG13",
        "premiumFormat": "IMAX 3D",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550358",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550358",
        "movieUrl": "https://www.amctheatres.com/movies/the-great-wall",
        "wwmReleaseNumber": 235575,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "attributes": [
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "IMAX3D",
            "name": "IMAX 3D"
          }
        ],
        "ticketPrices": [
          {
            "price": 10.37,
            "type": "ADULT",
            "sku": "TICKET-RS-52550358-ADULT",
            "tax": 0.88
          },
          {
            "price": 10.37,
            "type": "CHILD",
            "sku": "TICKET-RS-52550358-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.88
          },
          {
            "price": 10.37,
            "type": "SENIOR",
            "sku": "TICKET-RS-52550358-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.88
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/MovieStills/26553.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/Poster/218071R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52550358",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/47041",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92419",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92419",
            "templated": false
          }
        }
      },
      {
        "id": 52550357,
        "internalReleaseNumber": 57459,
        "performanceNumber": 92418,
        "movieId": 47041,
        "movieName": "The Great Wall",
        "sortableMovieName": "Great Wall, The",
        "genre": "ACTION",
        "showDateTimeUtc": "2017-02-24T18:45:00Z",
        "showDateTimeLocal": "2017-02-24T12:45:00",
        "sellUntilDateTimeUtc": "2017-02-24T18:55:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 14,
        "layoutId": 11,
        "layoutVersionNumber": 1,
        "runTime": 103,
        "mpaaRating": "PG13",
        "premiumFormat": "IMAX 3D",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550357",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550357",
        "movieUrl": "https://www.amctheatres.com/movies/the-great-wall",
        "wwmReleaseNumber": 235575,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "attributes": [
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "IMAX3D",
            "name": "IMAX 3D"
          }
        ],
        "ticketPrices": [
          {
            "price": 13.64,
            "type": "ADULT",
            "sku": "TICKET-RS-52550357-ADULT",
            "tax": 1.15
          },
          {
            "price": 12,
            "type": "CHILD",
            "sku": "TICKET-RS-52550357-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 1.01
          },
          {
            "price": 12,
            "type": "SENIOR",
            "sku": "TICKET-RS-52550357-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 1.01
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/MovieStills/26553.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/Poster/218071R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52550357",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/47041",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92418",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92418",
            "templated": false
          }
        }
      },
      {
        "id": 52550356,
        "internalReleaseNumber": 57459,
        "performanceNumber": 92417,
        "movieId": 47041,
        "movieName": "The Great Wall",
        "sortableMovieName": "Great Wall, The",
        "genre": "ACTION",
        "showDateTimeUtc": "2017-02-24T21:30:00Z",
        "showDateTimeLocal": "2017-02-24T15:30:00",
        "sellUntilDateTimeUtc": "2017-02-24T21:40:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 14,
        "layoutId": 12,
        "layoutVersionNumber": 1,
        "runTime": 103,
        "mpaaRating": "PG13",
        "premiumFormat": "IMAX 3D",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550356",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550356",
        "movieUrl": "https://www.amctheatres.com/movies/the-great-wall",
        "wwmReleaseNumber": 235575,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "attributes": [
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "IMAX3D",
            "name": "IMAX 3D"
          }
        ],
        "ticketPrices": [
          {
            "price": 13.64,
            "type": "ADULT",
            "sku": "TICKET-RS-52550356-ADULT",
            "tax": 1.15
          },
          {
            "price": 12,
            "type": "CHILD",
            "sku": "TICKET-RS-52550356-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 1.01
          },
          {
            "price": 12,
            "type": "SENIOR",
            "sku": "TICKET-RS-52550356-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 1.01
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/MovieStills/26553.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/Poster/218071R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52550356",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/47041",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92417",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92417",
            "templated": false
          }
        }
      },
      {
        "id": 52550355,
        "internalReleaseNumber": 57459,
        "performanceNumber": 92416,
        "movieId": 47041,
        "movieName": "The Great Wall",
        "sortableMovieName": "Great Wall, The",
        "genre": "ACTION",
        "showDateTimeUtc": "2017-02-25T00:15:00Z",
        "showDateTimeLocal": "2017-02-24T18:15:00",
        "sellUntilDateTimeUtc": "2017-02-25T00:25:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 14,
        "layoutId": 13,
        "layoutVersionNumber": 1,
        "runTime": 103,
        "mpaaRating": "PG13",
        "premiumFormat": "IMAX 3D",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550355",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550355",
        "movieUrl": "https://www.amctheatres.com/movies/the-great-wall",
        "wwmReleaseNumber": 235575,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "attributes": [
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "IMAX3D",
            "name": "IMAX 3D"
          }
        ],
        "ticketPrices": [
          {
            "price": 15.28,
            "type": "ADULT",
            "sku": "TICKET-RS-52550355-ADULT",
            "tax": 1.29
          },
          {
            "price": 12,
            "type": "CHILD",
            "sku": "TICKET-RS-52550355-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 1.01
          },
          {
            "price": 13.64,
            "type": "SENIOR",
            "sku": "TICKET-RS-52550355-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 1.15
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/MovieStills/26553.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/Poster/218071R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52550355",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/47041",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92416",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92416",
            "templated": false
          }
        }
      },
      {
        "id": 52550354,
        "internalReleaseNumber": 57459,
        "performanceNumber": 92415,
        "movieId": 47041,
        "movieName": "The Great Wall",
        "sortableMovieName": "Great Wall, The",
        "genre": "ACTION",
        "showDateTimeUtc": "2017-02-25T03:00:00Z",
        "showDateTimeLocal": "2017-02-24T21:00:00",
        "sellUntilDateTimeUtc": "2017-02-25T03:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 14,
        "layoutId": 14,
        "layoutVersionNumber": 1,
        "runTime": 103,
        "mpaaRating": "PG13",
        "premiumFormat": "IMAX 3D",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550354",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550354",
        "movieUrl": "https://www.amctheatres.com/movies/the-great-wall",
        "wwmReleaseNumber": 235575,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "attributes": [
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "IMAX3D",
            "name": "IMAX 3D"
          }
        ],
        "ticketPrices": [
          {
            "price": 15.28,
            "type": "ADULT",
            "sku": "TICKET-RS-52550354-ADULT",
            "tax": 1.29
          },
          {
            "price": 12,
            "type": "CHILD",
            "sku": "TICKET-RS-52550354-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 1.01
          },
          {
            "price": 13.64,
            "type": "SENIOR",
            "sku": "TICKET-RS-52550354-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 1.15
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/MovieStills/26553.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/Poster/218071R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52550354",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/47041",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92415",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92415",
            "templated": false
          }
        }
      }
    ]
  }
}
Get theatre showtimes on the specified date at a theatre where displaying estimated fees is required by law
GET  /v2/theatres/552/showtimes/5-15-24

Response

{
  "pageSize": 10,
  "pageNumber": 1,
  "count": 107,
  "lastUpdatedDateUtc": "2024-05-15T15:50:24Z",
  "_links": {
    "self": {
      "href": "https://api.amctheatres.com/v2/theatres/552/showtimes/5-15-2024?page-number=1&page-size=10",
      "templated": false
    },
    "next": {
      "href": "https://api.amctheatres.com/v2/theatres/552/showtimes/5-15-2024?page-number=2&page-size=10",
      "templated": false
    }
  },
  "_embedded": {
    "showtimes": [
      {
        "id": 121329146,
        "internalReleaseNumber": 114456,
        "performanceNumber": 96490,
        "movieId": 76255,
        "movieName": "The Roundup: Punishment",
        "sortableMovieName": "Roundup: Punishment, The",
        "genre": "ACTION",
        "showDateTimeUtc": "2024-05-15T15:00:00Z",
        "showDateTimeLocal": "2024-05-15T11:00:00",
        "sellUntilDateTimeUtc": "2024-05-15T15:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-04:00",
        "theatreId": 552,
        "auditorium": 19,
        "layoutId": 234,
        "layoutVersionNumber": 1,
        "runTime": 109,
        "mpaaRating": "NR",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329146",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329146",
        "movieUrl": "https://www.amctheatres.com/movies/the-roundup-punishment-76255",
        "wwmReleaseNumber": 0,
        "lastUpdatedDateUtc": "2024-05-07T18:57:50Z",
        "isDiscountMatineePriced": true,
        "discountMatineeMessage": "25% OFF",
        "visibilityDateTimeUtc": "2024-04-10T13:56:00Z",
        "estimatedFees": [
          {
            "cost": 2.19,
            "name": "convenience",
            "quantity": 1
          }
        ],
        "attributes": [
          {
            "code": "INTFILMS",
            "name": "International Films",
            "description": "AMC Theatres is proud to offer a variety of international films for audiences."
          },
          {
            "code": "KOREANENGLISHSUBTITLE",
            "name": "Korean Spoken with English Subtitles"
          },
          {
            "code": "LASERATAMC",
            "name": "Laser at AMC",
            "description": "Experience lifelike colors, enhanced brightness, and breath-taking clarity with Laser Projection by Cinionic. With more color, more light, and more contrast, you’ll see the laser difference from every angle."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          }
        ],
        "ticketPrices": [
          {
            "price": 13.49,
            "type": "ADULT",
            "sku": "TICKET-RS-121329146-ADULT",
            "tax": 0.0,
            "priceCode": "KR",
            "posType": "ADULT*"
          },
          {
            "price": 11.19,
            "type": "CHILD",
            "sku": "TICKET-RS-121329146-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.0,
            "priceCode": "H2",
            "posType": "CHILD*"
          },
          {
            "price": 12.39,
            "type": "SENIOR",
            "sku": "TICKET-RS-121329146-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.0,
            "priceCode": "Lc",
            "posType": "RR SEN*"
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://amc-theatres-res.cloudinary.com/v1713802659/amc-cdn/production/2/movies/76300/76255/MovieStillDynamic/164720.jpg",
          "heroMobileDynamic": "https://amc-theatres-res.cloudinary.com/v1713802659/amc-cdn/production/2/movies/76300/76255/MovieStillDynamic/164720.jpg",
          "posterDynamic": "https://amc-theatres-res.cloudinary.com/v1712251238/amc-cdn/production/2/movies/76300/76255/PosterDynamic/164444.png",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": "",
          "posterDynamic180X74": "https://amc-theatres-res.cloudinary.com/w_180,h_74,c_fill,g_auto,q_auto,f_auto,fl_lossy/v1712251238/amc-cdn/production/2/movies/76300/76255/PosterDynamic/164444.png"
        },
        "languages": {},
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/121329146",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/76255",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/552",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/552/96490",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/seating-layout": {
            "href": "https://api.amctheatres.com/v3/seating-layouts/552/96490",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/concessions-delivery-times": {
            "href": "https://api.amctheatres.com//v3/orders/{order-Id}/showtimes/121329146/concession-delivery-times",
            "templated": true
          }
        }
      },
      {
        "id": 121328962,
        "internalReleaseNumber": 114866,
        "performanceNumber": 96472,
        "movieId": 75738,
        "movieName": "Dragonkeeper",
        "sortableMovieName": "Dragonkeeper",
        "genre": "ANIMATION",
        "showDateTimeUtc": "2024-05-15T15:00:00Z",
        "showDateTimeLocal": "2024-05-15T11:00:00",
        "sellUntilDateTimeUtc": "2024-05-15T15:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-04:00",
        "theatreId": 552,
        "auditorium": 10,
        "layoutId": 225,
        "layoutVersionNumber": 1,
        "runTime": 99,
        "mpaaRating": "PG",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121328962",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121328962",
        "movieUrl": "https://www.amctheatres.com/movies/dragonkeeper-75738",
        "wwmReleaseNumber": 0,
        "lastUpdatedDateUtc": "2024-05-07T18:57:50Z",
        "isDiscountMatineePriced": true,
        "discountMatineeMessage": "25% OFF",
        "visibilityDateTimeUtc": "2024-04-17T16:59:00Z",
        "estimatedFees": [
          {
            "cost": 2.19,
            "name": "convenience",
            "quantity": 1
          }
        ],
        "attributes": [
          {
            "code": "LASERATAMC",
            "name": "Laser at AMC",
            "description": "Experience lifelike colors, enhanced brightness, and breath-taking clarity with Laser Projection by Cinionic. With more color, more light, and more contrast, you’ll see the laser difference from every angle."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          }
        ],
        "ticketPrices": [
          {
            "price": 13.49,
            "type": "ADULT",
            "sku": "TICKET-RS-121328962-ADULT",
            "tax": 0.0,
            "priceCode": "KR",
            "posType": "ADULT*"
          },
          {
            "price": 11.19,
            "type": "CHILD",
            "sku": "TICKET-RS-121328962-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.0,
            "priceCode": "H2",
            "posType": "CHILD*"
          },
          {
            "price": 12.39,
            "type": "SENIOR",
            "sku": "TICKET-RS-121328962-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.0,
            "priceCode": "Lc",
            "posType": "RR SEN*"
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://amc-theatres-res.cloudinary.com/v1713978852/amc-cdn/production/2/movies/75700/75738/MovieStillDynamic/164753.png",
          "heroMobileDynamic": "https://amc-theatres-res.cloudinary.com/v1713978852/amc-cdn/production/2/movies/75700/75738/MovieStillDynamic/164753.png",
          "posterDynamic": "https://amc-theatres-res.cloudinary.com/v1713978767/amc-cdn/production/2/movies/75700/75738/PosterDynamic/164749.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": "",
          "posterDynamic180X74": "https://amc-theatres-res.cloudinary.com/w_180,h_74,c_fill,g_auto,q_auto,f_auto,fl_lossy/v1713978767/amc-cdn/production/2/movies/75700/75738/PosterDynamic/164749.jpg"
        },
        "languages": {},
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/121328962",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/75738",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/552",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/552/96472",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/seating-layout": {
            "href": "https://api.amctheatres.com/v3/seating-layouts/552/96472",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/concessions-delivery-times": {
            "href": "https://api.amctheatres.com//v3/orders/{order-Id}/showtimes/121328962/concession-delivery-times",
            "templated": true
          }
        }
      },
      {
        "id": 121329194,
        "internalReleaseNumber": 112597,
        "performanceNumber": 96475,
        "movieId": 70326,
        "movieName": "Abigail",
        "sortableMovieName": "Abigail",
        "genre": "HORROR",
        "showDateTimeUtc": "2024-05-15T15:00:00Z",
        "showDateTimeLocal": "2024-05-15T11:00:00",
        "sellUntilDateTimeUtc": "2024-05-15T15:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-04:00",
        "theatreId": 552,
        "auditorium": 21,
        "layoutId": 236,
        "layoutVersionNumber": 1,
        "runTime": 110,
        "mpaaRating": "R",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329194",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329194",
        "movieUrl": "https://www.amctheatres.com/movies/abigail-70326",
        "wwmReleaseNumber": 356070,
        "lastUpdatedDateUtc": "2024-05-07T18:57:50Z",
        "isDiscountMatineePriced": true,
        "discountMatineeMessage": "25% OFF",
        "visibilityDateTimeUtc": "2024-03-19T17:14:00Z",
        "estimatedFees": [
          {
            "cost": 2.19,
            "name": "convenience",
            "quantity": 1
          }
        ],
        "attributes": [
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "LASERATAMC",
            "name": "Laser at AMC",
            "description": "Experience lifelike colors, enhanced brightness, and breath-taking clarity with Laser Projection by Cinionic. With more color, more light, and more contrast, you’ll see the laser difference from every angle."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          }
        ],
        "ticketPrices": [
          {
            "price": 13.49,
            "type": "ADULT",
            "sku": "TICKET-RS-121329194-ADULT",
            "tax": 0.0,
            "priceCode": "KR",
            "posType": "ADULT*"
          },
          {
            "price": 11.19,
            "type": "CHILD",
            "sku": "TICKET-RS-121329194-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.0,
            "priceCode": "H2",
            "posType": "CHILD*"
          },
          {
            "price": 12.39,
            "type": "SENIOR",
            "sku": "TICKET-RS-121329194-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.0,
            "priceCode": "Lc",
            "posType": "RR SEN*"
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://amc-theatres-res.cloudinary.com/v1710860027/amc-cdn/production/2/movies/70300/70326/MovieStillDynamic/164020.jpg",
          "heroMobileDynamic": "https://amc-theatres-res.cloudinary.com/v1710860027/amc-cdn/production/2/movies/70300/70326/MovieStillDynamic/164020.jpg",
          "posterDynamic": "https://amc-theatres-res.cloudinary.com/v1705685889/amc-cdn/production/2/movies/70300/70326/PosterDynamic/162279.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": "",
          "posterDynamic180X74": "https://amc-theatres-res.cloudinary.com/w_180,h_74,c_fill,g_auto,q_auto,f_auto,fl_lossy/v1705685889/amc-cdn/production/2/movies/70300/70326/PosterDynamic/162279.jpg"
        },
        "languages": {},
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/121329194",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/70326",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/552",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/552/96475",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/seating-layout": {
            "href": "https://api.amctheatres.com/v3/seating-layouts/552/96475",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/concessions-delivery-times": {
            "href": "https://api.amctheatres.com//v3/orders/{order-Id}/showtimes/121329194/concession-delivery-times",
            "templated": true
          }
        }
      },
      {
        "id": 121329039,
        "internalReleaseNumber": 112671,
        "performanceNumber": 96448,
        "movieId": 70406,
        "movieName": "Kung Fu Panda 4",
        "sortableMovieName": "Kung Fu Panda 4",
        "genre": "Family",
        "showDateTimeUtc": "2024-05-15T15:00:00Z",
        "showDateTimeLocal": "2024-05-15T11:00:00",
        "sellUntilDateTimeUtc": "2024-05-15T15:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-04:00",
        "theatreId": 552,
        "auditorium": 15,
        "layoutId": 230,
        "layoutVersionNumber": 1,
        "runTime": 94,
        "mpaaRating": "PG",
        "premiumFormat": "RealD 3D",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329039",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329039",
        "movieUrl": "https://www.amctheatres.com/movies/kung-fu-panda-4-70406",
        "wwmReleaseNumber": 356457,
        "lastUpdatedDateUtc": "2024-05-07T18:57:50Z",
        "isDiscountMatineePriced": true,
        "discountMatineeMessage": "UP TO 20% OFF",
        "visibilityDateTimeUtc": "2024-01-19T19:14:00Z",
        "estimatedFees": [
          {
            "cost": 2.19,
            "name": "convenience",
            "quantity": 1
          }
        ],
        "attributes": [
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "LASERATAMC",
            "name": "Laser at AMC",
            "description": "Experience lifelike colors, enhanced brightness, and breath-taking clarity with Laser Projection by Cinionic. With more color, more light, and more contrast, you’ll see the laser difference from every angle."
          },
          {
            "code": "REALD3D",
            "name": "RealD 3D"
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          }
        ],
        "ticketPrices": [
          {
            "price": 17.49,
            "type": "ADULT",
            "sku": "TICKET-RS-121329039-ADULT",
            "tax": 0.0,
            "priceCode": "KT",
            "posType": "ADULT*"
          },
          {
            "price": 15.19,
            "type": "CHILD",
            "sku": "TICKET-RS-121329039-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.0,
            "priceCode": "H6",
            "posType": "CHILD*"
          },
          {
            "price": 16.39,
            "type": "SENIOR",
            "sku": "TICKET-RS-121329039-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.0,
            "priceCode": "Le",
            "posType": "RR SEN*"
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://amc-theatres-res.cloudinary.com/v1708517118/amc-cdn/production/2/movies/70400/70406/MovieStills/336162R9.jpg",
          "heroMobileDynamic": "https://amc-theatres-res.cloudinary.com/v1708517118/amc-cdn/production/2/movies/70400/70406/MovieStills/336162R9.jpg",
          "posterDynamic": "https://amc-theatres-res.cloudinary.com/v1702493212/amc-cdn/production/2/movies/70400/70406/PosterDynamic/161281.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": "",
          "posterDynamic180X74": "https://amc-theatres-res.cloudinary.com/w_180,h_74,c_fill,g_auto,q_auto,f_auto,fl_lossy/v1702493212/amc-cdn/production/2/movies/70400/70406/PosterDynamic/161281.jpg"
        },
        "languages": {},
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/121329039",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/70406",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/552",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/552/96448",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/seating-layout": {
            "href": "https://api.amctheatres.com/v3/seating-layouts/552/96448",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/concessions-delivery-times": {
            "href": "https://api.amctheatres.com//v3/orders/{order-Id}/showtimes/121329039/concession-delivery-times",
            "templated": true
          }
        }
      },
      {
        "id": 121328843,
        "internalReleaseNumber": 113398,
        "performanceNumber": 96626,
        "movieId": 72776,
        "movieName": "Monkey Man",
        "sortableMovieName": "Monkey Man",
        "genre": "ACTION",
        "showDateTimeUtc": "2024-05-15T15:00:00Z",
        "showDateTimeLocal": "2024-05-15T11:00:00",
        "sellUntilDateTimeUtc": "2024-05-15T15:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-04:00",
        "theatreId": 552,
        "auditorium": 4,
        "layoutId": 219,
        "layoutVersionNumber": 1,
        "runTime": 121,
        "mpaaRating": "R",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121328843",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121328843",
        "movieUrl": "https://www.amctheatres.com/movies/monkey-man-72776",
        "wwmReleaseNumber": 356336,
        "lastUpdatedDateUtc": "2024-05-07T18:57:50Z",
        "isDiscountMatineePriced": true,
        "discountMatineeMessage": "25% OFF",
        "visibilityDateTimeUtc": "2024-02-22T16:32:00Z",
        "estimatedFees": [
          {
            "cost": 2.19,
            "name": "convenience",
            "quantity": 1
          }
        ],
        "attributes": [
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "LASERATAMC",
            "name": "Laser at AMC",
            "description": "Experience lifelike colors, enhanced brightness, and breath-taking clarity with Laser Projection by Cinionic. With more color, more light, and more contrast, you’ll see the laser difference from every angle."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          }
        ],
        "ticketPrices": [
          {
            "price": 13.49,
            "type": "ADULT",
            "sku": "TICKET-RS-121328843-ADULT",
            "tax": 0.0,
            "priceCode": "KR",
            "posType": "ADULT*"
          },
          {
            "price": 11.19,
            "type": "CHILD",
            "sku": "TICKET-RS-121328843-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.0,
            "priceCode": "H2",
            "posType": "CHILD*"
          },
          {
            "price": 12.39,
            "type": "SENIOR",
            "sku": "TICKET-RS-121328843-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.0,
            "priceCode": "Lc",
            "posType": "RR SEN*"
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://amc-theatres-res.cloudinary.com/v1708029163/amc-cdn/production/2/movies/72800/72776/MovieStillDynamic/163169.jpg",
          "heroMobileDynamic": "https://amc-theatres-res.cloudinary.com/v1708029163/amc-cdn/production/2/movies/72800/72776/MovieStillDynamic/163169.jpg",
          "posterDynamic": "https://amc-theatres-res.cloudinary.com/v1706554972/amc-cdn/production/2/movies/72800/72776/PosterDynamic/162667.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": "",
          "posterDynamic180X74": "https://amc-theatres-res.cloudinary.com/w_180,h_74,c_fill,g_auto,q_auto,f_auto,fl_lossy/v1706554972/amc-cdn/production/2/movies/72800/72776/PosterDynamic/162667.jpg"
        },
        "languages": {},
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/121328843",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/72776",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/552",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/552/96626",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/seating-layout": {
            "href": "https://api.amctheatres.com/v3/seating-layouts/552/96626",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/concessions-delivery-times": {
            "href": "https://api.amctheatres.com//v3/orders/{order-Id}/showtimes/121328843/concession-delivery-times",
            "templated": true
          }
        }
      },
      {
        "id": 121329314,
        "internalReleaseNumber": 115272,
        "performanceNumber": 96465,
        "movieId": 76864,
        "movieName": "Star",
        "sortableMovieName": "Star",
        "genre": "DRAMA",
        "showDateTimeUtc": "2024-05-15T15:15:00Z",
        "showDateTimeLocal": "2024-05-15T11:15:00",
        "sellUntilDateTimeUtc": "2024-05-15T15:25:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-04:00",
        "theatreId": 552,
        "auditorium": 25,
        "layoutId": 240,
        "layoutVersionNumber": 1,
        "runTime": 155,
        "mpaaRating": "NR",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329314",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329314",
        "movieUrl": "https://www.amctheatres.com/movies/star-76864",
        "wwmReleaseNumber": 0,
        "lastUpdatedDateUtc": "2024-05-07T18:57:50Z",
        "isDiscountMatineePriced": true,
        "discountMatineeMessage": "25% OFF",
        "estimatedFees": [
          {
            "cost": 2.19,
            "name": "convenience",
            "quantity": 1
          }
        ],
        "attributes": [
          {
            "code": "INCLINTER",
            "name": "Includes Intermission"
          },
          {
            "code": "INTFILMS",
            "name": "International Films",
            "description": "AMC Theatres is proud to offer a variety of international films for audiences."
          },
          {
            "code": "LASERATAMC",
            "name": "Laser at AMC",
            "description": "Experience lifelike colors, enhanced brightness, and breath-taking clarity with Laser Projection by Cinionic. With more color, more light, and more contrast, you’ll see the laser difference from every angle."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "TAMILENGLISHSUBTITLE",
            "name": "Tamil Spoken with English Subtitles"
          }
        ],
        "ticketPrices": [
          {
            "price": 13.49,
            "type": "ADULT",
            "sku": "TICKET-RS-121329314-ADULT",
            "tax": 0.0,
            "priceCode": "KR",
            "posType": "ADULT*"
          },
          {
            "price": 11.19,
            "type": "CHILD",
            "sku": "TICKET-RS-121329314-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.0,
            "priceCode": "H2",
            "posType": "CHILD*"
          },
          {
            "price": 12.39,
            "type": "SENIOR",
            "sku": "TICKET-RS-121329314-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.0,
            "priceCode": "Lc",
            "posType": "RR SEN*"
          }
        ],
        "media": {
          "heroDesktopDynamic": "",
          "heroMobileDynamic": "",
          "posterDynamic": "",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": "",
          "posterDynamic180X74": ""
        },
        "languages": {},
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/121329314",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/76864",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/552",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/552/96465",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/seating-layout": {
            "href": "https://api.amctheatres.com/v3/seating-layouts/552/96465",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/concessions-delivery-times": {
            "href": "https://api.amctheatres.com//v3/orders/{order-Id}/showtimes/121329314/concession-delivery-times",
            "templated": true
          }
        }
      },
      {
        "id": 121329004,
        "internalReleaseNumber": 111749,
        "performanceNumber": 96445,
        "movieId": 67468,
        "movieName": "Kingdom of the Planet of the Apes",
        "sortableMovieName": "Kingdom of the Planet of the Apes",
        "genre": "ACTION",
        "showDateTimeUtc": "2024-05-15T15:15:00Z",
        "showDateTimeLocal": "2024-05-15T11:15:00",
        "sellUntilDateTimeUtc": "2024-05-15T15:25:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-04:00",
        "theatreId": 552,
        "auditorium": 14,
        "layoutId": 229,
        "layoutVersionNumber": 1,
        "runTime": 145,
        "mpaaRating": "PG13",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329004",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329004",
        "movieUrl": "https://www.amctheatres.com/movies/kingdom-of-the-planet-of-the-apes-67468",
        "wwmReleaseNumber": 338418,
        "lastUpdatedDateUtc": "2024-05-07T18:57:50Z",
        "isDiscountMatineePriced": true,
        "discountMatineeMessage": "25% OFF",
        "visibilityDateTimeUtc": "2024-03-28T12:40:00Z",
        "estimatedFees": [
          {
            "cost": 2.19,
            "name": "convenience",
            "quantity": 1
          }
        ],
        "attributes": [
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "DISNEYRWDS",
            "name": "Pay with Disney Rewards Redemption Card",
            "description": "Eligible for Disney Rewards Tender option"
          },
          {
            "code": "LASERATAMC",
            "name": "Laser at AMC",
            "description": "Experience lifelike colors, enhanced brightness, and breath-taking clarity with Laser Projection by Cinionic. With more color, more light, and more contrast, you’ll see the laser difference from every angle."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          }
        ],
        "ticketPrices": [
          {
            "price": 14.49,
            "type": "ADULT",
            "sku": "TICKET-RS-121329004-ADULT",
            "tax": 0.0,
            "priceCode": "Ka",
            "posType": "ADULT*"
          },
          {
            "price": 12.19,
            "type": "CHILD",
            "sku": "TICKET-RS-121329004-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.0,
            "priceCode": "6a",
            "posType": "CHILD*"
          },
          {
            "price": 13.39,
            "type": "SENIOR",
            "sku": "TICKET-RS-121329004-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.0,
            "priceCode": "MF",
            "posType": "RR SEN*"
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://amc-theatres-res.cloudinary.com/v1703765061/amc-cdn/production/2/movies/67500/67468/MovieStills/338418RD.jpg",
          "heroMobileDynamic": "https://amc-theatres-res.cloudinary.com/v1703765061/amc-cdn/production/2/movies/67500/67468/MovieStills/338418RD.jpg",
          "posterDynamic": "https://amc-theatres-res.cloudinary.com/v1712593232/amc-cdn/production/2/movies/67500/67468/PosterDynamic/164492.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": "",
          "posterDynamic180X74": "https://amc-theatres-res.cloudinary.com/w_180,h_74,c_fill,g_auto,q_auto,f_auto,fl_lossy/v1712593232/amc-cdn/production/2/movies/67500/67468/PosterDynamic/164492.jpg"
        },
        "languages": {},
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/121329004",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/67468",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/552",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/552/96445",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/seating-layout": {
            "href": "https://api.amctheatres.com/v3/seating-layouts/552/96445",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/concessions-delivery-times": {
            "href": "https://api.amctheatres.com//v3/orders/{order-Id}/showtimes/121329004/concession-delivery-times",
            "templated": true
          }
        }
      },
      {
        "id": 121329056,
        "internalReleaseNumber": 114968,
        "performanceNumber": 96458,
        "movieId": 76400,
        "movieName": "Poolman",
        "sortableMovieName": "Poolman",
        "genre": "COMEDY",
        "showDateTimeUtc": "2024-05-15T15:30:00Z",
        "showDateTimeLocal": "2024-05-15T11:30:00",
        "sellUntilDateTimeUtc": "2024-05-15T15:40:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-04:00",
        "theatreId": 552,
        "auditorium": 16,
        "layoutId": 231,
        "layoutVersionNumber": 1,
        "runTime": 100,
        "mpaaRating": "NR",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329056",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329056",
        "movieUrl": "https://www.amctheatres.com/movies/poolman-76400",
        "wwmReleaseNumber": 357909,
        "lastUpdatedDateUtc": "2024-05-07T18:57:50Z",
        "isDiscountMatineePriced": true,
        "discountMatineeMessage": "25% OFF",
        "visibilityDateTimeUtc": "2024-04-29T15:56:00Z",
        "estimatedFees": [
          {
            "cost": 2.19,
            "name": "convenience",
            "quantity": 1
          }
        ],
        "attributes": [
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          },
          {
            "code": "LASERATAMC",
            "name": "Laser at AMC",
            "description": "Experience lifelike colors, enhanced brightness, and breath-taking clarity with Laser Projection by Cinionic. With more color, more light, and more contrast, you’ll see the laser difference from every angle."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          }
        ],
        "ticketPrices": [
          {
            "price": 13.49,
            "type": "ADULT",
            "sku": "TICKET-RS-121329056-ADULT",
            "tax": 0.0,
            "priceCode": "KR",
            "posType": "ADULT*"
          },
          {
            "price": 11.19,
            "type": "CHILD",
            "sku": "TICKET-RS-121329056-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.0,
            "priceCode": "H2",
            "posType": "CHILD*"
          },
          {
            "price": 12.39,
            "type": "SENIOR",
            "sku": "TICKET-RS-121329056-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.0,
            "priceCode": "Lc",
            "posType": "RR SEN*"
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://amc-theatres-res.cloudinary.com/v1713978996/amc-cdn/production/2/movies/76400/76400/MovieStillDynamic/164758.jpg",
          "heroMobileDynamic": "https://amc-theatres-res.cloudinary.com/v1713978996/amc-cdn/production/2/movies/76400/76400/MovieStillDynamic/164758.jpg",
          "posterDynamic": "https://amc-theatres-res.cloudinary.com/v1713978892/amc-cdn/production/2/movies/76400/76400/PosterDynamic/164754.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": "",
          "posterDynamic180X74": "https://amc-theatres-res.cloudinary.com/w_180,h_74,c_fill,g_auto,q_auto,f_auto,fl_lossy/v1713978892/amc-cdn/production/2/movies/76400/76400/PosterDynamic/164754.jpg"
        },
        "languages": {},
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/121329056",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/76400",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/552",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/552/96458",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/seating-layout": {
            "href": "https://api.amctheatres.com/v3/seating-layouts/552/96458",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/concessions-delivery-times": {
            "href": "https://api.amctheatres.com//v3/orders/{order-Id}/showtimes/121329056/concession-delivery-times",
            "templated": true
          }
        }
      },
      {
        "id": 121329224,
        "internalReleaseNumber": 112292,
        "performanceNumber": 96495,
        "movieId": 75698,
        "movieName": "Civil War",
        "sortableMovieName": "Civil War",
        "genre": "ACTION",
        "showDateTimeUtc": "2024-05-15T15:45:00Z",
        "showDateTimeLocal": "2024-05-15T11:45:00",
        "sellUntilDateTimeUtc": "2024-05-15T15:55:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-04:00",
        "theatreId": 552,
        "auditorium": 22,
        "layoutId": 237,
        "layoutVersionNumber": 1,
        "runTime": 109,
        "mpaaRating": "R",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329224",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329224",
        "movieUrl": "https://www.amctheatres.com/movies/civil-war-75698",
        "wwmReleaseNumber": 328218,
        "lastUpdatedDateUtc": "2024-05-07T18:57:50Z",
        "isDiscountMatineePriced": true,
        "discountMatineeMessage": "25% OFF",
        "visibilityDateTimeUtc": "2024-03-18T13:00:00Z",
        "estimatedFees": [
          {
            "cost": 2.19,
            "name": "convenience",
            "quantity": 1
          }
        ],
        "attributes": [
          {
            "code": "AMCARTISANFILMS",
            "name": "AMC Artisan Films",
            "description": "AMC Artisan Films"
          },
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "LASERATAMC",
            "name": "Laser at AMC",
            "description": "Experience lifelike colors, enhanced brightness, and breath-taking clarity with Laser Projection by Cinionic. With more color, more light, and more contrast, you’ll see the laser difference from every angle."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          }
        ],
        "ticketPrices": [
          {
            "price": 13.49,
            "type": "ADULT",
            "sku": "TICKET-RS-121329224-ADULT",
            "tax": 0.0,
            "priceCode": "KR",
            "posType": "ADULT*"
          },
          {
            "price": 11.19,
            "type": "CHILD",
            "sku": "TICKET-RS-121329224-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.0,
            "priceCode": "H2",
            "posType": "CHILD*"
          },
          {
            "price": 12.39,
            "type": "SENIOR",
            "sku": "TICKET-RS-121329224-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.0,
            "priceCode": "Lc",
            "posType": "RR SEN*"
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://amc-theatres-res.cloudinary.com/v1714561508/amc-cdn/production/2/movies/75700/75698/MovieStills/328218RK.jpg",
          "heroMobileDynamic": "https://amc-theatres-res.cloudinary.com/v1714561508/amc-cdn/production/2/movies/75700/75698/MovieStills/328218RK.jpg",
          "posterDynamic": "https://amc-theatres-res.cloudinary.com/v1710518753/amc-cdn/production/2/movies/75700/75698/PosterDynamic/163907.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": "",
          "posterDynamic180X74": "https://amc-theatres-res.cloudinary.com/w_180,h_74,c_fill,g_auto,q_auto,f_auto,fl_lossy/v1710518753/amc-cdn/production/2/movies/75700/75698/PosterDynamic/163907.jpg"
        },
        "languages": {},
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/121329224",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/75698",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/552",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/552/96495",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/seating-layout": {
            "href": "https://api.amctheatres.com/v3/seating-layouts/552/96495",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/concessions-delivery-times": {
            "href": "https://api.amctheatres.com//v3/orders/{order-Id}/showtimes/121329224/concession-delivery-times",
            "templated": true
          }
        }
      },
      {
        "id": 121328926,
        "internalReleaseNumber": 111757,
        "performanceNumber": 96442,
        "movieId": 67468,
        "movieName": "Kingdom of the Planet of the Apes",
        "sortableMovieName": "Kingdom of the Planet of the Apes",
        "genre": "ACTION",
        "showDateTimeUtc": "2024-05-15T15:45:00Z",
        "showDateTimeLocal": "2024-05-15T11:45:00",
        "sellUntilDateTimeUtc": "2024-05-15T15:55:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-04:00",
        "theatreId": 552,
        "auditorium": 8,
        "layoutId": 223,
        "layoutVersionNumber": 1,
        "runTime": 145,
        "mpaaRating": "PG13",
        "premiumFormat": "Dolby Cinema at AMC",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121328926",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121328926",
        "movieUrl": "https://www.amctheatres.com/movies/kingdom-of-the-planet-of-the-apes-67468",
        "wwmReleaseNumber": 338418,
        "lastUpdatedDateUtc": "2024-05-07T18:57:50Z",
        "isDiscountMatineePriced": true,
        "discountMatineeMessage": "UP TO 20% OFF",
        "visibilityDateTimeUtc": "2024-03-28T12:40:00Z",
        "estimatedFees": [
          {
            "cost": 2.69,
            "name": "convenience",
            "quantity": 1
          }
        ],
        "attributes": [
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "DISNEYRWDS",
            "name": "Pay with Disney Rewards Redemption Card",
            "description": "Eligible for Disney Rewards Tender option"
          },
          {
            "code": "DOLBYCINEMAATAMCPRIME",
            "name": "Dolby Cinema at AMC"
          },
          {
            "code": "RECLINERSEATING",
            "name": "AMC Signature Recliners",
            "description": "Kick back and enjoy the show from a luxurious AMC Signature Recliner."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          }
        ],
        "ticketPrices": [
          {
            "price": 21.49,
            "type": "ADULT",
            "sku": "TICKET-RS-121328926-ADULT",
            "tax": 0.0,
            "priceCode": "Kr",
            "posType": "ADULT*"
          },
          {
            "price": 19.19,
            "type": "CHILD",
            "sku": "TICKET-RS-121328926-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.0,
            "priceCode": "DK",
            "posType": "CHILD*"
          },
          {
            "price": 20.39,
            "type": "SENIOR",
            "sku": "TICKET-RS-121328926-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.0,
            "priceCode": "N5",
            "posType": "RR SEN*"
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://amc-theatres-res.cloudinary.com/v1703765061/amc-cdn/production/2/movies/67500/67468/MovieStills/338418RD.jpg",
          "heroMobileDynamic": "https://amc-theatres-res.cloudinary.com/v1703765061/amc-cdn/production/2/movies/67500/67468/MovieStills/338418RD.jpg",
          "posterDynamic": "https://amc-theatres-res.cloudinary.com/v1712593232/amc-cdn/production/2/movies/67500/67468/PosterDynamic/164492.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": "",
          "posterDynamic180X74": "https://amc-theatres-res.cloudinary.com/w_180,h_74,c_fill,g_auto,q_auto,f_auto,fl_lossy/v1712593232/amc-cdn/production/2/movies/67500/67468/PosterDynamic/164492.jpg"
        },
        "languages": {},
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/121328926",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/67468",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/552",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/552/96442",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/seating-layout": {
            "href": "https://api.amctheatres.com/v3/seating-layouts/552/96442",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/concessions-delivery-times": {
            "href": "https://api.amctheatres.com//v3/orders/{order-Id}/showtimes/121328926/concession-delivery-times",
            "templated": true
          }
        }
      }
    ]
  }
}
Get all future theatre showtimes
GET  /v2/theatres/610/showtimes

Response

{
  "pageSize": 10,
  "pageNumber": 1,
  "count": 1035,
  "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
  "_links": {
    "self": {
      "href": "https://api.amctheatres.com/v2/theatres/610/showtimes?page-number=1&page-size=10",
      "templated": false
    },
    "next": {
      "href": "https://api.amctheatres.com/v2/theatres/610/showtimes?page-number=2&page-size=10",
      "templated": false
    }
  },
  "_embedded": {
    "showtimes": [
      {
        "id": 52550358,
        "internalReleaseNumber": 57459,
        "performanceNumber": 92419,
        "movieId": 47041,
        "movieName": "The Great Wall",
        "sortableMovieName": "Great Wall, The",
        "genre": "ACTION",
        "showDateTimeUtc": "2017-02-24T16:00:00Z",
        "showDateTimeLocal": "2017-02-24T10:00:00",
        "sellUntilDateTimeUtc": "2017-02-24T16:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 14,
        "layoutId": 10,
        "layoutVersionNumber": 1,
        "runTime": 103,
        "mpaaRating": "PG13",
        "premiumFormat": "IMAX 3D",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550358",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550358",
        "movieUrl": "https://www.amctheatres.com/movies/the-great-wall",
        "wwmReleaseNumber": 235575,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "isDiscountMatineePriced": false,
        "attributes": [
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "IMAX3D",
            "name": "IMAX 3D"
          }
        ],
        "ticketPrices": [
          {
            "price": 10.37,
            "type": "ADULT",
            "sku": "TICKET-RS-52550358-ADULT",
            "tax": 0.88
          },
          {
            "price": 10.37,
            "type": "CHILD",
            "sku": "TICKET-RS-52550358-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.88
          },
          {
            "price": 10.37,
            "type": "SENIOR",
            "sku": "TICKET-RS-52550358-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.88
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/MovieStills/26553.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/Poster/218071R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52550358",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/47041",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92419",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92419",
            "templated": false
          }
        }
      },
      {
        "id": 52531057,
        "internalReleaseNumber": 57107,
        "performanceNumber": 92312,
        "movieId": 48505,
        "movieName": "Split",
        "sortableMovieName": "Split",
        "genre": "SUSPENSE",
        "showDateTimeUtc": "2017-02-24T16:00:00Z",
        "showDateTimeLocal": "2017-02-24T10:00:00",
        "sellUntilDateTimeUtc": "2017-02-24T16:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 10,
        "layoutId": 11,
        "layoutVersionNumber": 1,
        "runTime": 117,
        "mpaaRating": "PG13",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52531057",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52531057",
        "movieUrl": "https://www.amctheatres.com/movies/split",
        "wwmReleaseNumber": 221332,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "isDiscountMatineePriced": false,
        "attributes": [
          {
            "code": "ADULTS18ANDOVERONLY",
            "name": "Adults 18 and Over only",
            "description": "Only adults 18 and over are allowed in Cinema Suites auditoriums."
          },
          {
            "code": "RECLINERSEATING",
            "name": "Premium Power Recliners",
            "description": "This auditorium has recliner seats."
          },
          {
            "code": "DINEINSEATSIDESERVICE",
            "name": "Dine-In Full Service",
            "description": "The perfect way to experience dinner and a movie.  Reserve your seat and enjoy a made-from-scratch menu prepared fresh by our chefs, plus a full bar.  Just push the service button at your seat to order."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          }
        ],
        "ticketPrices": [
          {
            "price": 6,
            "type": "ADULT",
            "sku": "TICKET-RS-52531057-ADULT",
            "tax": 0.51
          },
          {
            "price": 6,
            "type": "SENIOR",
            "sku": "TICKET-RS-52531057-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.51
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/48500/48505/MovieStills/26722.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/48500/48505/MovieStills/24647.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52531057",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/48505",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92312",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92312",
            "templated": false
          }
        }
      },
      {
        "id": 52554461,
        "internalReleaseNumber": 57177,
        "performanceNumber": 92492,
        "movieId": 51510,
        "movieName": "The Red Turtle",
        "sortableMovieName": "Red Turtle, The",
        "genre": "ANIMATION",
        "showDateTimeUtc": "2017-02-24T16:00:00Z",
        "showDateTimeLocal": "2017-02-24T10:00:00",
        "sellUntilDateTimeUtc": "2017-02-24T16:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 30,
        "layoutId": 12,
        "layoutVersionNumber": 1,
        "runTime": 80,
        "mpaaRating": "PG",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52554461",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52554461",
        "movieUrl": "https://www.amctheatres.com/movies/the-red-turtle",
        "wwmReleaseNumber": 231342,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "isDiscountMatineePriced": false,
        "attributes": [
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "AMCINDEPENDENT",
            "name": "AMC independent",
            "description": "AMC independent identifies a Title sourced outside of normal distribution channels."
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          }
        ],
        "ticketPrices": [
          {
            "price": 4.9,
            "type": "ADULT",
            "sku": "TICKET-RS-52554461-ADULT",
            "tax": 0.41
          },
          {
            "price": 4.9,
            "type": "CHILD",
            "sku": "TICKET-RS-52554461-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.41
          },
          {
            "price": 4.9,
            "type": "SENIOR",
            "sku": "TICKET-RS-52554461-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.41
          }
        ],
        "media": {
          "heroDesktopDynamic": "",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/51500/51510/MovieStills/24865.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52554461",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/51510",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92492",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92492",
            "templated": false
          }
        }
      },
      {
        "id": 52554420,
        "internalReleaseNumber": 57466,
        "performanceNumber": 92451,
        "movieId": 50648,
        "movieName": "Fist Fight",
        "sortableMovieName": "Fist Fight",
        "genre": "COMEDY",
        "showDateTimeUtc": "2017-02-24T16:10:00Z",
        "showDateTimeLocal": "2017-02-24T10:10:00",
        "sellUntilDateTimeUtc": "2017-02-24T16:20:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 22,
        "layoutId": 13,
        "layoutVersionNumber": 1,
        "runTime": 91,
        "mpaaRating": "R",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52554420",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52554420",
        "movieUrl": "https://www.amctheatres.com/movies/fist-fight",
        "wwmReleaseNumber": 225354,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "isDiscountMatineePriced": false,
        "attributes": [
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          }
        ],
        "ticketPrices": [
          {
            "price": 4.9,
            "type": "ADULT",
            "sku": "TICKET-RS-52554420-ADULT",
            "tax": 0.41
          },
          {
            "price": 4.9,
            "type": "CHILD",
            "sku": "TICKET-RS-52554420-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.41
          },
          {
            "price": 4.9,
            "type": "SENIOR",
            "sku": "TICKET-RS-52554420-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.41
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/50600/50648/MovieStills/26288.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/50600/50648/MovieStills/26851.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52554420",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/50648",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92451",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92451",
            "templated": false
          }
        }
      },
      {
        "id": 52564276,
        "internalReleaseNumber": 56924,
        "performanceNumber": 92495,
        "movieId": 51148,
        "movieName": "Elle",
        "sortableMovieName": "Elle",
        "genre": "DRAMA",
        "showDateTimeUtc": "2017-02-24T16:10:00Z",
        "showDateTimeLocal": "2017-02-24T10:10:00",
        "sellUntilDateTimeUtc": "2017-02-24T16:20:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 18,
        "layoutId": 14,
        "layoutVersionNumber": 1,
        "runTime": 131,
        "mpaaRating": "R",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52564276",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52564276",
        "movieUrl": "https://www.amctheatres.com/movies/elle",
        "wwmReleaseNumber": 231497,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "isDiscountMatineePriced": false,
        "attributes": [
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "AMCINDEPENDENT",
            "name": "AMC independent",
            "description": "AMC independent identifies a Title sourced outside of normal distribution channels."
          }
        ],
        "ticketPrices": [
          {
            "price": 4.9,
            "type": "ADULT",
            "sku": "TICKET-RS-52564276-ADULT",
            "tax": 0.41
          },
          {
            "price": 4.9,
            "type": "CHILD",
            "sku": "TICKET-RS-52564276-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.41
          },
          {
            "price": 4.9,
            "type": "SENIOR",
            "sku": "TICKET-RS-52564276-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.41
          }
        ],
        "media": {
          "heroDesktopDynamic": "",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/51100/51148/Poster/231497R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52564276",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/51148",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92495",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92495",
            "templated": false
          }
        }
      },
      {
        "id": 52531040,
        "internalReleaseNumber": 57343,
        "performanceNumber": 92295,
        "movieId": 44762,
        "movieName": "The Lego Batman Movie",
        "sortableMovieName": "Lego Batman Movie, The",
        "genre": "ANIMATION",
        "showDateTimeUtc": "2017-02-24T16:15:00Z",
        "showDateTimeLocal": "2017-02-24T10:15:00",
        "sellUntilDateTimeUtc": "2017-02-24T16:25:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 6,
        "layoutId": 15,
        "layoutVersionNumber": 1,
        "runTime": 105,
        "mpaaRating": "PG",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52531040",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52531040",
        "movieUrl": "https://www.amctheatres.com/movies/the-lego-batman-movie",
        "wwmReleaseNumber": 209280,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "isDiscountMatineePriced": false,
        "attributes": [
          {
            "code": "DINEINSEATSIDESERVICE",
            "name": "Dine-In Full Service",
            "description": "The perfect way to experience dinner and a movie.  Reserve your seat and enjoy a made-from-scratch menu prepared fresh by our chefs, plus a full bar.  Just push the service button at your seat to order."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          }
        ],
        "ticketPrices": [
          {
            "price": 4.9,
            "type": "ADULT",
            "sku": "TICKET-RS-52531040-ADULT",
            "tax": 0.41
          },
          {
            "price": 4.9,
            "type": "CHILD",
            "sku": "TICKET-RS-52531040-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.41
          },
          {
            "price": 4.9,
            "type": "SENIOR",
            "sku": "TICKET-RS-52531040-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.41
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/44800/44762/MovieStills/25892.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/44800/44762/MovieStills/26678.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52531040",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/44762",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92295",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92295",
            "templated": false
          }
        }
      },
      {
        "id": 52554405,
        "internalReleaseNumber": 56409,
        "performanceNumber": 92436,
        "movieId": 43025,
        "movieName": "Moana",
        "sortableMovieName": "Moana",
        "genre": "ANIMATION",
        "showDateTimeUtc": "2017-02-24T16:30:00Z",
        "showDateTimeLocal": "2017-02-24T10:30:00",
        "sellUntilDateTimeUtc": "2017-02-24T16:40:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 19,
        "layoutId": 16,
        "layoutVersionNumber": 1,
        "runTime": 113,
        "mpaaRating": "PG",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52554405",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52554405",
        "movieUrl": "https://www.amctheatres.com/movies/moana",
        "wwmReleaseNumber": 164751,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "isDiscountMatineePriced": false,
        "attributes": [
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "NOGREENRED",
            "name": "No Green or Red Tickets",
            "description": "No green or red tickets accepted for feature presentation."
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          }
        ],
        "ticketPrices": [
          {
            "price": 4.9,
            "type": "ADULT",
            "sku": "TICKET-RS-52554405-ADULT",
            "tax": 0.41
          },
          {
            "price": 4.9,
            "type": "CHILD",
            "sku": "TICKET-RS-52554405-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.41
          },
          {
            "price": 4.9,
            "type": "SENIOR",
            "sku": "TICKET-RS-52554405-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.41
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/titles/images/Hero/43025/Moana_Hero.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/43000/43025/Poster/164751R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52554405",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/43025",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92436",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92436",
            "templated": false
          }
        }
      },
      {
        "id": 52550368,
        "internalReleaseNumber": 57143,
        "performanceNumber": 92429,
        "movieId": 48158,
        "movieName": "Fifty Shades Darker",
        "sortableMovieName": "Fifty Shades Darker",
        "genre": "DRAMA",
        "showDateTimeUtc": "2017-02-24T16:30:00Z",
        "showDateTimeLocal": "2017-02-24T10:30:00",
        "sellUntilDateTimeUtc": "2017-02-24T16:40:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 17,
        "layoutId": 17,
        "layoutVersionNumber": 1,
        "runTime": 120,
        "mpaaRating": "R",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550368",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550368",
        "movieUrl": "https://www.amctheatres.com/movies/fifty-shades-darker",
        "wwmReleaseNumber": 209336,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "isDiscountMatineePriced": false,
        "attributes": [
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          }
        ],
        "ticketPrices": [
          {
            "price": 4.9,
            "type": "ADULT",
            "sku": "TICKET-RS-52550368-ADULT",
            "tax": 0.41
          },
          {
            "price": 4.9,
            "type": "CHILD",
            "sku": "TICKET-RS-52550368-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.41
          },
          {
            "price": 4.9,
            "type": "SENIOR",
            "sku": "TICKET-RS-52550368-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.41
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/48200/48158/MovieStills/26338.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/48200/48158/Poster/209336R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52550368",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/48158",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92429",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92429",
            "templated": false
          }
        }
      },
      {
        "id": 52531030,
        "internalReleaseNumber": 56120,
        "performanceNumber": 92285,
        "movieId": 48198,
        "movieName": "La La Land",
        "sortableMovieName": "La La Land",
        "genre": "MUSICAL",
        "showDateTimeUtc": "2017-02-24T16:30:00Z",
        "showDateTimeLocal": "2017-02-24T10:30:00",
        "sellUntilDateTimeUtc": "2017-02-24T16:40:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 4,
        "layoutId": 18,
        "layoutVersionNumber": 1,
        "runTime": 128,
        "mpaaRating": "PG13",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52531030",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52531030",
        "movieUrl": "https://www.amctheatres.com/movies/la-la-land",
        "wwmReleaseNumber": 209869,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "isDiscountMatineePriced": false,
        "attributes": [
          {
            "code": "DINEINSEATSIDESERVICE",
            "name": "Dine-In Full Service",
            "description": "The perfect way to experience dinner and a movie.  Reserve your seat and enjoy a made-from-scratch menu prepared fresh by our chefs, plus a full bar.  Just push the service button at your seat to order."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "AMCINDEPENDENT",
            "name": "AMC independent",
            "description": "AMC independent identifies a Title sourced outside of normal distribution channels."
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          }
        ],
        "ticketPrices": [
          {
            "price": 4.9,
            "type": "ADULT",
            "sku": "TICKET-RS-52531030-ADULT",
            "tax": 0.41
          },
          {
            "price": 4.9,
            "type": "CHILD",
            "sku": "TICKET-RS-52531030-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.41
          },
          {
            "price": 4.9,
            "type": "SENIOR",
            "sku": "TICKET-RS-52531030-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.41
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/titles/images/Hero/48198/lalaland_hero.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/48200/48198/Poster/209869R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52531030",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/48198",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92285",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92285",
            "templated": false
          }
        }
      },
      {
        "id": 52554455,
        "internalReleaseNumber": 57119,
        "performanceNumber": 92486,
        "movieId": 50200,
        "movieName": "A Dog's Purpose",
        "sortableMovieName": "Dog's Purpose, A",
        "genre": "COMEDY",
        "showDateTimeUtc": "2017-02-24T16:30:00Z",
        "showDateTimeLocal": "2017-02-24T10:30:00",
        "sellUntilDateTimeUtc": "2017-02-24T16:40:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 29,
        "layoutId": 19,
        "layoutVersionNumber": 1,
        "runTime": 100,
        "mpaaRating": "PG",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52554455",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52554455",
        "movieUrl": "https://www.amctheatres.com/movies/a-dog-s-purpose",
        "wwmReleaseNumber": 226073,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "isDiscountMatineePriced": false,
        "attributes": [
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          }
        ],
        "ticketPrices": [
          {
            "price": 4.9,
            "type": "ADULT",
            "sku": "TICKET-RS-52554455-ADULT",
            "tax": 0.41
          },
          {
            "price": 4.9,
            "type": "CHILD",
            "sku": "TICKET-RS-52554455-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.41
          },
          {
            "price": 4.9,
            "type": "SENIOR",
            "sku": "TICKET-RS-52554455-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.41
          }
        ],
        "media": {
          "heroDesktopDynamic": "",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/50200/50200/Poster/226073R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52554455",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/50200",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92486",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92486",
            "templated": false
          }
        }
      }
    ]
  }
}
Get all future showtimes at theatre where displaying estimated fees is required by law
GET  /v2/theatres/552/showtimes

Response

{
  "pageSize": 10,
  "pageNumber": 1,
  "count": 1908,
  "lastUpdatedDateUtc": "2024-05-15T15:05:25Z",
  "_links": {
    "self": {
      "href": "https://api.amctheatres.com/v2/theatres/552/showtimes?page-number=1&page-size=10",
      "templated": false
    },
    "next": {
      "href": "https://api.amctheatres.com/v2/theatres/552/showtimes?page-number=2&page-size=10",
      "templated": false
    }
  },
  "_embedded": {
    "showtimes": [
      {
        "id": 121329146,
        "internalReleaseNumber": 114456,
        "performanceNumber": 96490,
        "movieId": 76255,
        "movieName": "The Roundup: Punishment",
        "sortableMovieName": "Roundup: Punishment, The",
        "genre": "ACTION",
        "showDateTimeUtc": "2024-05-15T15:00:00Z",
        "showDateTimeLocal": "2024-05-15T11:00:00",
        "sellUntilDateTimeUtc": "2024-05-15T15:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-04:00",
        "theatreId": 552,
        "auditorium": 19,
        "layoutId": 234,
        "layoutVersionNumber": 1,
        "runTime": 109,
        "mpaaRating": "NR",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329146",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329146",
        "movieUrl": "https://www.amctheatres.com/movies/the-roundup-punishment-76255",
        "wwmReleaseNumber": 0,
        "lastUpdatedDateUtc": "2024-05-07T18:57:50Z",
        "isDiscountMatineePriced": true,
        "discountMatineeMessage": "25% OFF",
        "visibilityDateTimeUtc": "2024-04-10T13:56:00Z",
        "estimatedFees": [
          {
            "cost": 2.19,
            "name": "convenience",
            "quantity": 1
          }
        ],
        "attributes": [
          {
            "code": "INTFILMS",
            "name": "International Films",
            "description": "AMC Theatres is proud to offer a variety of international films for audiences."
          },
          {
            "code": "KOREANENGLISHSUBTITLE",
            "name": "Korean Spoken with English Subtitles"
          },
          {
            "code": "LASERATAMC",
            "name": "Laser at AMC",
            "description": "Experience lifelike colors, enhanced brightness, and breath-taking clarity with Laser Projection by Cinionic. With more color, more light, and more contrast, you’ll see the laser difference from every angle."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          }
        ],
        "ticketPrices": [
          {
            "price": 13.49,
            "type": "ADULT",
            "sku": "TICKET-RS-121329146-ADULT",
            "tax": 0.0,
            "priceCode": "KR",
            "posType": "ADULT*"
          },
          {
            "price": 11.19,
            "type": "CHILD",
            "sku": "TICKET-RS-121329146-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.0,
            "priceCode": "H2",
            "posType": "CHILD*"
          },
          {
            "price": 12.39,
            "type": "SENIOR",
            "sku": "TICKET-RS-121329146-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.0,
            "priceCode": "Lc",
            "posType": "RR SEN*"
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://amc-theatres-res.cloudinary.com/v1713802659/amc-cdn/production/2/movies/76300/76255/MovieStillDynamic/164720.jpg",
          "heroMobileDynamic": "https://amc-theatres-res.cloudinary.com/v1713802659/amc-cdn/production/2/movies/76300/76255/MovieStillDynamic/164720.jpg",
          "posterDynamic": "https://amc-theatres-res.cloudinary.com/v1712251238/amc-cdn/production/2/movies/76300/76255/PosterDynamic/164444.png",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": "",
          "posterDynamic180X74": "https://amc-theatres-res.cloudinary.com/w_180,h_74,c_fill,g_auto,q_auto,f_auto,fl_lossy/v1712251238/amc-cdn/production/2/movies/76300/76255/PosterDynamic/164444.png"
        },
        "languages": {},
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/121329146",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/76255",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/552",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/552/96490",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/seating-layout": {
            "href": "https://api.amctheatres.com/v3/seating-layouts/552/96490",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/concessions-delivery-times": {
            "href": "https://api.amctheatres.com//v3/orders/{order-Id}/showtimes/121329146/concession-delivery-times",
            "templated": true
          }
        }
      },
      {
        "id": 121328962,
        "internalReleaseNumber": 114866,
        "performanceNumber": 96472,
        "movieId": 75738,
        "movieName": "Dragonkeeper",
        "sortableMovieName": "Dragonkeeper",
        "genre": "ANIMATION",
        "showDateTimeUtc": "2024-05-15T15:00:00Z",
        "showDateTimeLocal": "2024-05-15T11:00:00",
        "sellUntilDateTimeUtc": "2024-05-15T15:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-04:00",
        "theatreId": 552,
        "auditorium": 10,
        "layoutId": 225,
        "layoutVersionNumber": 1,
        "runTime": 99,
        "mpaaRating": "PG",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121328962",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121328962",
        "movieUrl": "https://www.amctheatres.com/movies/dragonkeeper-75738",
        "wwmReleaseNumber": 0,
        "lastUpdatedDateUtc": "2024-05-07T18:57:50Z",
        "isDiscountMatineePriced": true,
        "discountMatineeMessage": "25% OFF",
        "visibilityDateTimeUtc": "2024-04-17T16:59:00Z",
        "estimatedFees": [
          {
            "cost": 2.19,
            "name": "convenience",
            "quantity": 1
          }
        ],
        "attributes": [
          {
            "code": "LASERATAMC",
            "name": "Laser at AMC",
            "description": "Experience lifelike colors, enhanced brightness, and breath-taking clarity with Laser Projection by Cinionic. With more color, more light, and more contrast, you’ll see the laser difference from every angle."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          }
        ],
        "ticketPrices": [
          {
            "price": 13.49,
            "type": "ADULT",
            "sku": "TICKET-RS-121328962-ADULT",
            "tax": 0.0,
            "priceCode": "KR",
            "posType": "ADULT*"
          },
          {
            "price": 11.19,
            "type": "CHILD",
            "sku": "TICKET-RS-121328962-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.0,
            "priceCode": "H2",
            "posType": "CHILD*"
          },
          {
            "price": 12.39,
            "type": "SENIOR",
            "sku": "TICKET-RS-121328962-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.0,
            "priceCode": "Lc",
            "posType": "RR SEN*"
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://amc-theatres-res.cloudinary.com/v1713978852/amc-cdn/production/2/movies/75700/75738/MovieStillDynamic/164753.png",
          "heroMobileDynamic": "https://amc-theatres-res.cloudinary.com/v1713978852/amc-cdn/production/2/movies/75700/75738/MovieStillDynamic/164753.png",
          "posterDynamic": "https://amc-theatres-res.cloudinary.com/v1713978767/amc-cdn/production/2/movies/75700/75738/PosterDynamic/164749.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": "",
          "posterDynamic180X74": "https://amc-theatres-res.cloudinary.com/w_180,h_74,c_fill,g_auto,q_auto,f_auto,fl_lossy/v1713978767/amc-cdn/production/2/movies/75700/75738/PosterDynamic/164749.jpg"
        },
        "languages": {},
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/121328962",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/75738",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/552",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/552/96472",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/seating-layout": {
            "href": "https://api.amctheatres.com/v3/seating-layouts/552/96472",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/concessions-delivery-times": {
            "href": "https://api.amctheatres.com//v3/orders/{order-Id}/showtimes/121328962/concession-delivery-times",
            "templated": true
          }
        }
      },
      {
        "id": 121329194,
        "internalReleaseNumber": 112597,
        "performanceNumber": 96475,
        "movieId": 70326,
        "movieName": "Abigail",
        "sortableMovieName": "Abigail",
        "genre": "HORROR",
        "showDateTimeUtc": "2024-05-15T15:00:00Z",
        "showDateTimeLocal": "2024-05-15T11:00:00",
        "sellUntilDateTimeUtc": "2024-05-15T15:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-04:00",
        "theatreId": 552,
        "auditorium": 21,
        "layoutId": 236,
        "layoutVersionNumber": 1,
        "runTime": 110,
        "mpaaRating": "R",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329194",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329194",
        "movieUrl": "https://www.amctheatres.com/movies/abigail-70326",
        "wwmReleaseNumber": 356070,
        "lastUpdatedDateUtc": "2024-05-07T18:57:50Z",
        "isDiscountMatineePriced": true,
        "discountMatineeMessage": "25% OFF",
        "visibilityDateTimeUtc": "2024-03-19T17:14:00Z",
        "estimatedFees": [
          {
            "cost": 2.19,
            "name": "convenience",
            "quantity": 1
          }
        ],
        "attributes": [
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "LASERATAMC",
            "name": "Laser at AMC",
            "description": "Experience lifelike colors, enhanced brightness, and breath-taking clarity with Laser Projection by Cinionic. With more color, more light, and more contrast, you’ll see the laser difference from every angle."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          }
        ],
        "ticketPrices": [
          {
            "price": 13.49,
            "type": "ADULT",
            "sku": "TICKET-RS-121329194-ADULT",
            "tax": 0.0,
            "priceCode": "KR",
            "posType": "ADULT*"
          },
          {
            "price": 11.19,
            "type": "CHILD",
            "sku": "TICKET-RS-121329194-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.0,
            "priceCode": "H2",
            "posType": "CHILD*"
          },
          {
            "price": 12.39,
            "type": "SENIOR",
            "sku": "TICKET-RS-121329194-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.0,
            "priceCode": "Lc",
            "posType": "RR SEN*"
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://amc-theatres-res.cloudinary.com/v1710860027/amc-cdn/production/2/movies/70300/70326/MovieStillDynamic/164020.jpg",
          "heroMobileDynamic": "https://amc-theatres-res.cloudinary.com/v1710860027/amc-cdn/production/2/movies/70300/70326/MovieStillDynamic/164020.jpg",
          "posterDynamic": "https://amc-theatres-res.cloudinary.com/v1705685889/amc-cdn/production/2/movies/70300/70326/PosterDynamic/162279.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": "",
          "posterDynamic180X74": "https://amc-theatres-res.cloudinary.com/w_180,h_74,c_fill,g_auto,q_auto,f_auto,fl_lossy/v1705685889/amc-cdn/production/2/movies/70300/70326/PosterDynamic/162279.jpg"
        },
        "languages": {},
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/121329194",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/70326",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/552",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/552/96475",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/seating-layout": {
            "href": "https://api.amctheatres.com/v3/seating-layouts/552/96475",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/concessions-delivery-times": {
            "href": "https://api.amctheatres.com//v3/orders/{order-Id}/showtimes/121329194/concession-delivery-times",
            "templated": true
          }
        }
      },
      {
        "id": 121329039,
        "internalReleaseNumber": 112671,
        "performanceNumber": 96448,
        "movieId": 70406,
        "movieName": "Kung Fu Panda 4",
        "sortableMovieName": "Kung Fu Panda 4",
        "genre": "Family",
        "showDateTimeUtc": "2024-05-15T15:00:00Z",
        "showDateTimeLocal": "2024-05-15T11:00:00",
        "sellUntilDateTimeUtc": "2024-05-15T15:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-04:00",
        "theatreId": 552,
        "auditorium": 15,
        "layoutId": 230,
        "layoutVersionNumber": 1,
        "runTime": 94,
        "mpaaRating": "PG",
        "premiumFormat": "RealD 3D",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329039",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329039",
        "movieUrl": "https://www.amctheatres.com/movies/kung-fu-panda-4-70406",
        "wwmReleaseNumber": 356457,
        "lastUpdatedDateUtc": "2024-05-07T18:57:50Z",
        "isDiscountMatineePriced": true,
        "discountMatineeMessage": "UP TO 20% OFF",
        "visibilityDateTimeUtc": "2024-01-19T19:14:00Z",
        "estimatedFees": [
          {
            "cost": 2.19,
            "name": "convenience",
            "quantity": 1
          }
        ],
        "attributes": [
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "LASERATAMC",
            "name": "Laser at AMC",
            "description": "Experience lifelike colors, enhanced brightness, and breath-taking clarity with Laser Projection by Cinionic. With more color, more light, and more contrast, you’ll see the laser difference from every angle."
          },
          {
            "code": "REALD3D",
            "name": "RealD 3D"
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          }
        ],
        "ticketPrices": [
          {
            "price": 17.49,
            "type": "ADULT",
            "sku": "TICKET-RS-121329039-ADULT",
            "tax": 0.0,
            "priceCode": "KT",
            "posType": "ADULT*"
          },
          {
            "price": 15.19,
            "type": "CHILD",
            "sku": "TICKET-RS-121329039-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.0,
            "priceCode": "H6",
            "posType": "CHILD*"
          },
          {
            "price": 16.39,
            "type": "SENIOR",
            "sku": "TICKET-RS-121329039-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.0,
            "priceCode": "Le",
            "posType": "RR SEN*"
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://amc-theatres-res.cloudinary.com/v1708517118/amc-cdn/production/2/movies/70400/70406/MovieStills/336162R9.jpg",
          "heroMobileDynamic": "https://amc-theatres-res.cloudinary.com/v1708517118/amc-cdn/production/2/movies/70400/70406/MovieStills/336162R9.jpg",
          "posterDynamic": "https://amc-theatres-res.cloudinary.com/v1702493212/amc-cdn/production/2/movies/70400/70406/PosterDynamic/161281.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": "",
          "posterDynamic180X74": "https://amc-theatres-res.cloudinary.com/w_180,h_74,c_fill,g_auto,q_auto,f_auto,fl_lossy/v1702493212/amc-cdn/production/2/movies/70400/70406/PosterDynamic/161281.jpg"
        },
        "languages": {},
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/121329039",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/70406",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/552",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/552/96448",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/seating-layout": {
            "href": "https://api.amctheatres.com/v3/seating-layouts/552/96448",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/concessions-delivery-times": {
            "href": "https://api.amctheatres.com//v3/orders/{order-Id}/showtimes/121329039/concession-delivery-times",
            "templated": true
          }
        }
      },
      {
        "id": 121328843,
        "internalReleaseNumber": 113398,
        "performanceNumber": 96626,
        "movieId": 72776,
        "movieName": "Monkey Man",
        "sortableMovieName": "Monkey Man",
        "genre": "ACTION",
        "showDateTimeUtc": "2024-05-15T15:00:00Z",
        "showDateTimeLocal": "2024-05-15T11:00:00",
        "sellUntilDateTimeUtc": "2024-05-15T15:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-04:00",
        "theatreId": 552,
        "auditorium": 4,
        "layoutId": 219,
        "layoutVersionNumber": 1,
        "runTime": 121,
        "mpaaRating": "R",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121328843",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121328843",
        "movieUrl": "https://www.amctheatres.com/movies/monkey-man-72776",
        "wwmReleaseNumber": 356336,
        "lastUpdatedDateUtc": "2024-05-07T18:57:50Z",
        "isDiscountMatineePriced": true,
        "discountMatineeMessage": "25% OFF",
        "visibilityDateTimeUtc": "2024-02-22T16:32:00Z",
        "estimatedFees": [
          {
            "cost": 2.19,
            "name": "convenience",
            "quantity": 1
          }
        ],
        "attributes": [
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "LASERATAMC",
            "name": "Laser at AMC",
            "description": "Experience lifelike colors, enhanced brightness, and breath-taking clarity with Laser Projection by Cinionic. With more color, more light, and more contrast, you’ll see the laser difference from every angle."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          }
        ],
        "ticketPrices": [
          {
            "price": 13.49,
            "type": "ADULT",
            "sku": "TICKET-RS-121328843-ADULT",
            "tax": 0.0,
            "priceCode": "KR",
            "posType": "ADULT*"
          },
          {
            "price": 11.19,
            "type": "CHILD",
            "sku": "TICKET-RS-121328843-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.0,
            "priceCode": "H2",
            "posType": "CHILD*"
          },
          {
            "price": 12.39,
            "type": "SENIOR",
            "sku": "TICKET-RS-121328843-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.0,
            "priceCode": "Lc",
            "posType": "RR SEN*"
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://amc-theatres-res.cloudinary.com/v1708029163/amc-cdn/production/2/movies/72800/72776/MovieStillDynamic/163169.jpg",
          "heroMobileDynamic": "https://amc-theatres-res.cloudinary.com/v1708029163/amc-cdn/production/2/movies/72800/72776/MovieStillDynamic/163169.jpg",
          "posterDynamic": "https://amc-theatres-res.cloudinary.com/v1706554972/amc-cdn/production/2/movies/72800/72776/PosterDynamic/162667.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": "",
          "posterDynamic180X74": "https://amc-theatres-res.cloudinary.com/w_180,h_74,c_fill,g_auto,q_auto,f_auto,fl_lossy/v1706554972/amc-cdn/production/2/movies/72800/72776/PosterDynamic/162667.jpg"
        },
        "languages": {},
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/121328843",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/72776",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/552",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/552/96626",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/seating-layout": {
            "href": "https://api.amctheatres.com/v3/seating-layouts/552/96626",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/concessions-delivery-times": {
            "href": "https://api.amctheatres.com//v3/orders/{order-Id}/showtimes/121328843/concession-delivery-times",
            "templated": true
          }
        }
      },
      {
        "id": 121329314,
        "internalReleaseNumber": 115272,
        "performanceNumber": 96465,
        "movieId": 76864,
        "movieName": "Star",
        "sortableMovieName": "Star",
        "genre": "DRAMA",
        "showDateTimeUtc": "2024-05-15T15:15:00Z",
        "showDateTimeLocal": "2024-05-15T11:15:00",
        "sellUntilDateTimeUtc": "2024-05-15T15:25:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-04:00",
        "theatreId": 552,
        "auditorium": 25,
        "layoutId": 240,
        "layoutVersionNumber": 1,
        "runTime": 155,
        "mpaaRating": "NR",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329314",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329314",
        "movieUrl": "https://www.amctheatres.com/movies/star-76864",
        "wwmReleaseNumber": 0,
        "lastUpdatedDateUtc": "2024-05-07T18:57:50Z",
        "isDiscountMatineePriced": true,
        "discountMatineeMessage": "25% OFF",
        "estimatedFees": [
          {
            "cost": 2.19,
            "name": "convenience",
            "quantity": 1
          }
        ],
        "attributes": [
          {
            "code": "INCLINTER",
            "name": "Includes Intermission"
          },
          {
            "code": "INTFILMS",
            "name": "International Films",
            "description": "AMC Theatres is proud to offer a variety of international films for audiences."
          },
          {
            "code": "LASERATAMC",
            "name": "Laser at AMC",
            "description": "Experience lifelike colors, enhanced brightness, and breath-taking clarity with Laser Projection by Cinionic. With more color, more light, and more contrast, you’ll see the laser difference from every angle."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "TAMILENGLISHSUBTITLE",
            "name": "Tamil Spoken with English Subtitles"
          }
        ],
        "ticketPrices": [
          {
            "price": 13.49,
            "type": "ADULT",
            "sku": "TICKET-RS-121329314-ADULT",
            "tax": 0.0,
            "priceCode": "KR",
            "posType": "ADULT*"
          },
          {
            "price": 11.19,
            "type": "CHILD",
            "sku": "TICKET-RS-121329314-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.0,
            "priceCode": "H2",
            "posType": "CHILD*"
          },
          {
            "price": 12.39,
            "type": "SENIOR",
            "sku": "TICKET-RS-121329314-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.0,
            "priceCode": "Lc",
            "posType": "RR SEN*"
          }
        ],
        "media": {
          "heroDesktopDynamic": "",
          "heroMobileDynamic": "",
          "posterDynamic": "",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": "",
          "posterDynamic180X74": ""
        },
        "languages": {},
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/121329314",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/76864",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/552",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/552/96465",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/seating-layout": {
            "href": "https://api.amctheatres.com/v3/seating-layouts/552/96465",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/concessions-delivery-times": {
            "href": "https://api.amctheatres.com//v3/orders/{order-Id}/showtimes/121329314/concession-delivery-times",
            "templated": true
          }
        }
      },
      {
        "id": 121329004,
        "internalReleaseNumber": 111749,
        "performanceNumber": 96445,
        "movieId": 67468,
        "movieName": "Kingdom of the Planet of the Apes",
        "sortableMovieName": "Kingdom of the Planet of the Apes",
        "genre": "ACTION",
        "showDateTimeUtc": "2024-05-15T15:15:00Z",
        "showDateTimeLocal": "2024-05-15T11:15:00",
        "sellUntilDateTimeUtc": "2024-05-15T15:25:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-04:00",
        "theatreId": 552,
        "auditorium": 14,
        "layoutId": 229,
        "layoutVersionNumber": 1,
        "runTime": 145,
        "mpaaRating": "PG13",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329004",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329004",
        "movieUrl": "https://www.amctheatres.com/movies/kingdom-of-the-planet-of-the-apes-67468",
        "wwmReleaseNumber": 338418,
        "lastUpdatedDateUtc": "2024-05-07T18:57:50Z",
        "isDiscountMatineePriced": true,
        "discountMatineeMessage": "25% OFF",
        "visibilityDateTimeUtc": "2024-03-28T12:40:00Z",
        "estimatedFees": [
          {
            "cost": 2.19,
            "name": "convenience",
            "quantity": 1
          }
        ],
        "attributes": [
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "DISNEYRWDS",
            "name": "Pay with Disney Rewards Redemption Card",
            "description": "Eligible for Disney Rewards Tender option"
          },
          {
            "code": "LASERATAMC",
            "name": "Laser at AMC",
            "description": "Experience lifelike colors, enhanced brightness, and breath-taking clarity with Laser Projection by Cinionic. With more color, more light, and more contrast, you’ll see the laser difference from every angle."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          }
        ],
        "ticketPrices": [
          {
            "price": 14.49,
            "type": "ADULT",
            "sku": "TICKET-RS-121329004-ADULT",
            "tax": 0.0,
            "priceCode": "Ka",
            "posType": "ADULT*"
          },
          {
            "price": 12.19,
            "type": "CHILD",
            "sku": "TICKET-RS-121329004-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.0,
            "priceCode": "6a",
            "posType": "CHILD*"
          },
          {
            "price": 13.39,
            "type": "SENIOR",
            "sku": "TICKET-RS-121329004-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.0,
            "priceCode": "MF",
            "posType": "RR SEN*"
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://amc-theatres-res.cloudinary.com/v1703765061/amc-cdn/production/2/movies/67500/67468/MovieStills/338418RD.jpg",
          "heroMobileDynamic": "https://amc-theatres-res.cloudinary.com/v1703765061/amc-cdn/production/2/movies/67500/67468/MovieStills/338418RD.jpg",
          "posterDynamic": "https://amc-theatres-res.cloudinary.com/v1712593232/amc-cdn/production/2/movies/67500/67468/PosterDynamic/164492.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": "",
          "posterDynamic180X74": "https://amc-theatres-res.cloudinary.com/w_180,h_74,c_fill,g_auto,q_auto,f_auto,fl_lossy/v1712593232/amc-cdn/production/2/movies/67500/67468/PosterDynamic/164492.jpg"
        },
        "languages": {},
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/121329004",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/67468",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/552",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/552/96445",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/seating-layout": {
            "href": "https://api.amctheatres.com/v3/seating-layouts/552/96445",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/concessions-delivery-times": {
            "href": "https://api.amctheatres.com//v3/orders/{order-Id}/showtimes/121329004/concession-delivery-times",
            "templated": true
          }
        }
      },
      {
        "id": 121329056,
        "internalReleaseNumber": 114968,
        "performanceNumber": 96458,
        "movieId": 76400,
        "movieName": "Poolman",
        "sortableMovieName": "Poolman",
        "genre": "COMEDY",
        "showDateTimeUtc": "2024-05-15T15:30:00Z",
        "showDateTimeLocal": "2024-05-15T11:30:00",
        "sellUntilDateTimeUtc": "2024-05-15T15:40:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-04:00",
        "theatreId": 552,
        "auditorium": 16,
        "layoutId": 231,
        "layoutVersionNumber": 1,
        "runTime": 100,
        "mpaaRating": "NR",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329056",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329056",
        "movieUrl": "https://www.amctheatres.com/movies/poolman-76400",
        "wwmReleaseNumber": 357909,
        "lastUpdatedDateUtc": "2024-05-07T18:57:50Z",
        "isDiscountMatineePriced": true,
        "discountMatineeMessage": "25% OFF",
        "visibilityDateTimeUtc": "2024-04-29T15:56:00Z",
        "estimatedFees": [
          {
            "cost": 2.19,
            "name": "convenience",
            "quantity": 1
          }
        ],
        "attributes": [
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          },
          {
            "code": "LASERATAMC",
            "name": "Laser at AMC",
            "description": "Experience lifelike colors, enhanced brightness, and breath-taking clarity with Laser Projection by Cinionic. With more color, more light, and more contrast, you’ll see the laser difference from every angle."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          }
        ],
        "ticketPrices": [
          {
            "price": 13.49,
            "type": "ADULT",
            "sku": "TICKET-RS-121329056-ADULT",
            "tax": 0.0,
            "priceCode": "KR",
            "posType": "ADULT*"
          },
          {
            "price": 11.19,
            "type": "CHILD",
            "sku": "TICKET-RS-121329056-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.0,
            "priceCode": "H2",
            "posType": "CHILD*"
          },
          {
            "price": 12.39,
            "type": "SENIOR",
            "sku": "TICKET-RS-121329056-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.0,
            "priceCode": "Lc",
            "posType": "RR SEN*"
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://amc-theatres-res.cloudinary.com/v1713978996/amc-cdn/production/2/movies/76400/76400/MovieStillDynamic/164758.jpg",
          "heroMobileDynamic": "https://amc-theatres-res.cloudinary.com/v1713978996/amc-cdn/production/2/movies/76400/76400/MovieStillDynamic/164758.jpg",
          "posterDynamic": "https://amc-theatres-res.cloudinary.com/v1713978892/amc-cdn/production/2/movies/76400/76400/PosterDynamic/164754.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": "",
          "posterDynamic180X74": "https://amc-theatres-res.cloudinary.com/w_180,h_74,c_fill,g_auto,q_auto,f_auto,fl_lossy/v1713978892/amc-cdn/production/2/movies/76400/76400/PosterDynamic/164754.jpg"
        },
        "languages": {},
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/121329056",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/76400",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/552",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/552/96458",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/seating-layout": {
            "href": "https://api.amctheatres.com/v3/seating-layouts/552/96458",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/concessions-delivery-times": {
            "href": "https://api.amctheatres.com//v3/orders/{order-Id}/showtimes/121329056/concession-delivery-times",
            "templated": true
          }
        }
      },
      {
        "id": 121329224,
        "internalReleaseNumber": 112292,
        "performanceNumber": 96495,
        "movieId": 75698,
        "movieName": "Civil War",
        "sortableMovieName": "Civil War",
        "genre": "ACTION",
        "showDateTimeUtc": "2024-05-15T15:45:00Z",
        "showDateTimeLocal": "2024-05-15T11:45:00",
        "sellUntilDateTimeUtc": "2024-05-15T15:55:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-04:00",
        "theatreId": 552,
        "auditorium": 22,
        "layoutId": 237,
        "layoutVersionNumber": 1,
        "runTime": 109,
        "mpaaRating": "R",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329224",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329224",
        "movieUrl": "https://www.amctheatres.com/movies/civil-war-75698",
        "wwmReleaseNumber": 328218,
        "lastUpdatedDateUtc": "2024-05-07T18:57:50Z",
        "isDiscountMatineePriced": true,
        "discountMatineeMessage": "25% OFF",
        "visibilityDateTimeUtc": "2024-03-18T13:00:00Z",
        "estimatedFees": [
          {
            "cost": 2.19,
            "name": "convenience",
            "quantity": 1
          }
        ],
        "attributes": [
          {
            "code": "AMCARTISANFILMS",
            "name": "AMC Artisan Films",
            "description": "AMC Artisan Films"
          },
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "LASERATAMC",
            "name": "Laser at AMC",
            "description": "Experience lifelike colors, enhanced brightness, and breath-taking clarity with Laser Projection by Cinionic. With more color, more light, and more contrast, you’ll see the laser difference from every angle."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          }
        ],
        "ticketPrices": [
          {
            "price": 13.49,
            "type": "ADULT",
            "sku": "TICKET-RS-121329224-ADULT",
            "tax": 0.0,
            "priceCode": "KR",
            "posType": "ADULT*"
          },
          {
            "price": 11.19,
            "type": "CHILD",
            "sku": "TICKET-RS-121329224-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.0,
            "priceCode": "H2",
            "posType": "CHILD*"
          },
          {
            "price": 12.39,
            "type": "SENIOR",
            "sku": "TICKET-RS-121329224-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.0,
            "priceCode": "Lc",
            "posType": "RR SEN*"
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://amc-theatres-res.cloudinary.com/v1714561508/amc-cdn/production/2/movies/75700/75698/MovieStills/328218RK.jpg",
          "heroMobileDynamic": "https://amc-theatres-res.cloudinary.com/v1714561508/amc-cdn/production/2/movies/75700/75698/MovieStills/328218RK.jpg",
          "posterDynamic": "https://amc-theatres-res.cloudinary.com/v1710518753/amc-cdn/production/2/movies/75700/75698/PosterDynamic/163907.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": "",
          "posterDynamic180X74": "https://amc-theatres-res.cloudinary.com/w_180,h_74,c_fill,g_auto,q_auto,f_auto,fl_lossy/v1710518753/amc-cdn/production/2/movies/75700/75698/PosterDynamic/163907.jpg"
        },
        "languages": {},
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/121329224",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/75698",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/552",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/552/96495",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/seating-layout": {
            "href": "https://api.amctheatres.com/v3/seating-layouts/552/96495",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/concessions-delivery-times": {
            "href": "https://api.amctheatres.com//v3/orders/{order-Id}/showtimes/121329224/concession-delivery-times",
            "templated": true
          }
        }
      },
      {
        "id": 121328926,
        "internalReleaseNumber": 111757,
        "performanceNumber": 96442,
        "movieId": 67468,
        "movieName": "Kingdom of the Planet of the Apes",
        "sortableMovieName": "Kingdom of the Planet of the Apes",
        "genre": "ACTION",
        "showDateTimeUtc": "2024-05-15T15:45:00Z",
        "showDateTimeLocal": "2024-05-15T11:45:00",
        "sellUntilDateTimeUtc": "2024-05-15T15:55:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-04:00",
        "theatreId": 552,
        "auditorium": 8,
        "layoutId": 223,
        "layoutVersionNumber": 1,
        "runTime": 145,
        "mpaaRating": "PG13",
        "premiumFormat": "Dolby Cinema at AMC",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121328926",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121328926",
        "movieUrl": "https://www.amctheatres.com/movies/kingdom-of-the-planet-of-the-apes-67468",
        "wwmReleaseNumber": 338418,
        "lastUpdatedDateUtc": "2024-05-07T18:57:50Z",
        "isDiscountMatineePriced": true,
        "discountMatineeMessage": "UP TO 20% OFF",
        "visibilityDateTimeUtc": "2024-03-28T12:40:00Z",
        "estimatedFees": [
          {
            "cost": 2.69,
            "name": "convenience",
            "quantity": 1
          }
        ],
        "attributes": [
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "DISNEYRWDS",
            "name": "Pay with Disney Rewards Redemption Card",
            "description": "Eligible for Disney Rewards Tender option"
          },
          {
            "code": "DOLBYCINEMAATAMCPRIME",
            "name": "Dolby Cinema at AMC"
          },
          {
            "code": "RECLINERSEATING",
            "name": "AMC Signature Recliners",
            "description": "Kick back and enjoy the show from a luxurious AMC Signature Recliner."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          }
        ],
        "ticketPrices": [
          {
            "price": 21.49,
            "type": "ADULT",
            "sku": "TICKET-RS-121328926-ADULT",
            "tax": 0.0,
            "priceCode": "Kr",
            "posType": "ADULT*"
          },
          {
            "price": 19.19,
            "type": "CHILD",
            "sku": "TICKET-RS-121328926-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.0,
            "priceCode": "DK",
            "posType": "CHILD*"
          },
          {
            "price": 20.39,
            "type": "SENIOR",
            "sku": "TICKET-RS-121328926-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.0,
            "priceCode": "N5",
            "posType": "RR SEN*"
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://amc-theatres-res.cloudinary.com/v1703765061/amc-cdn/production/2/movies/67500/67468/MovieStills/338418RD.jpg",
          "heroMobileDynamic": "https://amc-theatres-res.cloudinary.com/v1703765061/amc-cdn/production/2/movies/67500/67468/MovieStills/338418RD.jpg",
          "posterDynamic": "https://amc-theatres-res.cloudinary.com/v1712593232/amc-cdn/production/2/movies/67500/67468/PosterDynamic/164492.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": "",
          "posterDynamic180X74": "https://amc-theatres-res.cloudinary.com/w_180,h_74,c_fill,g_auto,q_auto,f_auto,fl_lossy/v1712593232/amc-cdn/production/2/movies/67500/67468/PosterDynamic/164492.jpg"
        },
        "languages": {},
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/121328926",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/67468",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/552",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/552/96442",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/seating-layout": {
            "href": "https://api.amctheatres.com/v3/seating-layouts/552/96442",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v3/concessions-delivery-times": {
            "href": "https://api.amctheatres.com//v3/orders/{order-Id}/showtimes/121328926/concession-delivery-times",
            "templated": true
          }
        }
      }
    ]
  }
}
Get a theatre Showtime by id
GET  /v2/showtimes/52550358

Response

{
  "id": 52550358,
  "internalReleaseNumber": 57459,
  "performanceNumber": 92419,
  "movieId": 47041,
  "movieName": "The Great Wall",
  "sortableMovieName": "Great Wall, The",
  "genre": "ACTION",
  "showDateTimeUtc": "2017-02-24T16:00:00Z",
  "showDateTimeLocal": "2017-02-24T10:00:00",
  "sellUntilDateTimeUtc": "2017-02-24T16:10:00Z",
  "isSoldOut": false,
  "isAlmostSoldOut": false,
  "isCanceled": false,
  "utcOffset": "-06:00",
  "theatreId": 610,
  "auditorium": 14,
  "layoutId": 19,
  "layoutVersionNumber": 1,
  "runTime": 103,
  "mpaaRating": "PG13",
  "premiumFormat": "IMAX 3D",
  "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550358",
  "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550358",
  "movieUrl": "https://www.amctheatres.com/movies/the-great-wall",
  "wwmReleaseNumber": 235575,
  "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
  "isDiscountMatineePriced": false,
  "attributes": [
    {
      "code": "RESERVEDSEATING",
      "name": "Reserved Seating",
      "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
    },
    {
      "code": "IMAX3D",
      "name": "IMAX 3D"
    }
  ],
  "ticketPrices": [
    {
      "price": 10.37,
      "type": "ADULT",
      "sku": "TICKET-RS-52550358-ADULT",
      "tax": 0.88
    },
    {
      "price": 10.37,
      "type": "CHILD",
      "sku": "TICKET-RS-52550358-CHILD",
      "agePolicy": "Age 2-12",
      "tax": 0.88
    },
    {
      "price": 10.37,
      "type": "SENIOR",
      "sku": "TICKET-RS-52550358-SENIOR",
      "agePolicy": "Age 60+",
      "tax": 0.88
    }
  ],
  "media": {
    "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/MovieStills/26553.jpg",
    "heroMobileDynamic": "",
    "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/Poster/218071R1.JPG",
    "posterAlternateDynamic": "",
    "poster3DDynamic": "",
    "posterIMAXDynamic": "",
    "trailerTeaserDynamic": "",
    "trailerAlternateDynamic": ""
  },
  "languages": {
    "spoken": "English"
  },
  "_links": {
    "self": {
      "href": "https://api.amctheatres.com/v2/showtimes/52550358",
      "templated": false
    },
    "https://api.amctheatres.com/rels/v2/movie": {
      "href": "https://api.amctheatres.com/v2/movies/47041",
      "templated": false
    },
    "https://api.amctheatres.com/rels/v2/theatre": {
      "href": "https://api.amctheatres.com/v2/theatres/610",
      "templated": false
    },
    "https://api.amctheatres.com/rels/v1/seating-layout": {
      "href": "https://api.amctheatres.com/v1/seating-layouts/610/92419",
      "templated": false
    },
    "https://api.amctheatres.com/rels/v2/seating-layout": {
      "href": "https://api.amctheatres.com/v2/seating-layouts/610/92419",
      "templated": false
    }
  }
}
Get a theatre Showtime by id which features estimated fees
GET  /v2/showtimes/121329194

Response

{
  "id": 121329194,
  "internalReleaseNumber": 112597,
  "performanceNumber": 96475,
  "movieId": 70326,
  "movieName": "Abigail",
  "sortableMovieName": "Abigail",
  "genre": "HORROR",
  "showDateTimeUtc": "2024-05-15T15:00:00Z",
  "showDateTimeLocal": "2024-05-15T11:00:00",
  "sellUntilDateTimeUtc": "2024-05-15T15:10:00Z",
  "isSoldOut": false,
  "isAlmostSoldOut": false,
  "isCanceled": false,
  "utcOffset": "-04:00",
  "theatreId": 552,
  "auditorium": 21,
  "layoutId": 236,
  "layoutVersionNumber": 1,
  "runTime": 110,
  "mpaaRating": "R",
  "premiumFormat": "",
  "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329194",
  "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2024-05-15/empire/all/121329194",
  "movieUrl": "https://www.amctheatres.com/movies/abigail-70326",
  "wwmReleaseNumber": 356070,
  "lastUpdatedDateUtc": "2024-05-07T18:57:50Z",
  "isDiscountMatineePriced": true,
  "discountMatineeMessage": "25% OFF",
  "visibilityDateTimeUtc": "2024-03-19T17:14:00Z",
  "estimatedFees": [
    {
      "cost": 2.19,
      "name": "convenience",
      "quantity": 1
    }
  ],
  "attributes": [
    {
      "code": "CLOSEDCAPTION",
      "name": "Closed Caption",
      "description": "Closed Caption"
    },
    {
      "code": "DESCRIPTIVEVIDEO",
      "name": "Audio Description",
      "description": "Audio Description."
    },
    {
      "code": "LASERATAMC",
      "name": "Laser at AMC",
      "description": "Experience lifelike colors, enhanced brightness, and breath-taking clarity with Laser Projection by Cinionic. With more color, more light, and more contrast, you’ll see the laser difference from every angle."
    },
    {
      "code": "RESERVEDSEATING",
      "name": "Reserved Seating",
      "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
    }
  ],
  "ticketPrices": [
    {
      "price": 13.49,
      "type": "ADULT",
      "sku": "TICKET-RS-121329194-ADULT",
      "tax": 0.0,
      "priceCode": "KR",
      "posType": "ADULT*"
    },
    {
      "price": 11.19,
      "type": "CHILD",
      "sku": "TICKET-RS-121329194-CHILD",
      "agePolicy": "Age 2-12",
      "tax": 0.0,
      "priceCode": "H2",
      "posType": "CHILD*"
    },
    {
      "price": 12.39,
      "type": "SENIOR",
      "sku": "TICKET-RS-121329194-SENIOR",
      "agePolicy": "Age 60+",
      "tax": 0.0,
      "priceCode": "Lc",
      "posType": "RR SEN*"
    }
  ],
  "media": {
    "heroDesktopDynamic": "https://amc-theatres-res.cloudinary.com/v1710860027/amc-cdn/production/2/movies/70300/70326/MovieStillDynamic/164020.jpg",
    "heroMobileDynamic": "https://amc-theatres-res.cloudinary.com/v1710860027/amc-cdn/production/2/movies/70300/70326/MovieStillDynamic/164020.jpg",
    "posterDynamic": "https://amc-theatres-res.cloudinary.com/v1705685889/amc-cdn/production/2/movies/70300/70326/PosterDynamic/162279.jpg",
    "posterAlternateDynamic": "",
    "poster3DDynamic": "",
    "posterIMAXDynamic": "",
    "trailerTeaserDynamic": "",
    "trailerAlternateDynamic": "",
    "posterDynamic180X74": "https://amc-theatres-res.cloudinary.com/w_180,h_74,c_fill,g_auto,q_auto,f_auto,fl_lossy/v1705685889/amc-cdn/production/2/movies/70300/70326/PosterDynamic/162279.jpg"
  },
  "languages": {},
  "_links": {
    "self": {
      "href": "https://api.amctheatres.com/v2/showtimes/121329194",
      "templated": false
    },
    "https://api.amctheatres.com/rels/v2/movie": {
      "href": "https://api.amctheatres.com/v2/movies/70326",
      "templated": false
    },
    "https://api.amctheatres.com/rels/v2/theatre": {
      "href": "https://api.amctheatres.com/v2/theatres/552",
      "templated": false
    },
    "https://api.amctheatres.com/rels/v2/seating-layout": {
      "href": "https://api.amctheatres.com/v2/seating-layouts/552/96475",
      "templated": false
    },
    "https://api.amctheatres.com/rels/v3/seating-layout": {
      "href": "https://api.amctheatres.com/v3/seating-layouts/552/96475",
      "templated": false
    },
    "https://api.amctheatres.com/rels/v3/concessions-delivery-times": {
      "href": "https://api.amctheatres.com//v3/orders/{order-Id}/showtimes/121329194/concession-delivery-times",
      "templated": true
    }
  }
}
Get the earliest showtime by theatre and movie
GET  /v2/theatres/610/movies/47041/earliest-showtime

Response

{
  "id": 52554424,
  "internalReleaseNumber": 57457,
  "performanceNumber": 92455,
  "movieId": 47041,
  "movieName": "The Great Wall",
  "sortableMovieName": "Great Wall, The",
  "genre": "ACTION",
  "showDateTimeUtc": "2017-02-24T19:30:00Z",
  "showDateTimeLocal": "2017-02-24T13:30:00",
  "sellUntilDateTimeUtc": "2017-02-24T19:40:00Z",
  "isSoldOut": false,
  "isAlmostSoldOut": false,
  "isCanceled": false,
  "utcOffset": "-06:00",
  "theatreId": 610,
  "auditorium": 23,
  "layoutId": 10,
  "layoutVersionNumber": 1,
  "runTime": 103,
  "mpaaRating": "PG13",
  "premiumFormat": "RealD 3D",
  "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52554424",
  "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52554424",
  "movieUrl": "https://www.amctheatres.com/movies/the-great-wall",
  "wwmReleaseNumber": 242625,
  "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
  "attributes": [
    {
      "code": "RESERVEDSEATING",
      "name": "Reserved Seating",
      "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
    },
    {
      "code": "DESCRIPTIVEVIDEO",
      "name": "Audio Description",
      "description": "Audio Description."
    },
    {
      "code": "CLOSEDCAPTION",
      "name": "Closed Caption",
      "description": "Closed Caption"
    },
    {
      "code": "REALD3D",
      "name": "RealD 3D"
    }
  ],
  "ticketPrices": [
    {
      "price": 8.18,
      "type": "ADULT",
      "sku": "TICKET-RS-52554424-ADULT",
      "tax": 0.69
    },
    {
      "price": 6.54,
      "type": "CHILD",
      "sku": "TICKET-RS-52554424-CHILD",
      "agePolicy": "Age 2-12",
      "tax": 0.55
    },
    {
      "price": 6.54,
      "type": "SENIOR",
      "sku": "TICKET-RS-52554424-SENIOR",
      "agePolicy": "Age 60+",
      "tax": 0.55
    }
  ],
  "media": {
    "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/MovieStills/26553.jpg",
    "heroMobileDynamic": "",
    "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/Poster/218071R1.JPG",
    "posterAlternateDynamic": "",
    "poster3DDynamic": "",
    "posterIMAXDynamic": "",
    "trailerTeaserDynamic": "",
    "trailerAlternateDynamic": ""
  },
  "languages": {
    "spoken": "English"
  },
  "_links": {
    "self": {
      "href": "https://api.amctheatres.com/v2/showtimes/52554424",
      "templated": false
    },
    "https://api.amctheatres.com/rels/v2/movie": {
      "href": "https://api.amctheatres.com/v2/movies/47041",
      "templated": false
    },
    "https://api.amctheatres.com/rels/v2/theatre": {
      "href": "https://api.amctheatres.com/v2/theatres/610",
      "templated": false
    },
    "https://api.amctheatres.com/rels/v1/seating-layout": {
      "href": "https://api.amctheatres.com/v1/seating-layouts/610/92455",
      "templated": false
    },
    "https://api.amctheatres.com/rels/v2/seating-layout": {
      "href": "https://api.amctheatres.com/v2/seating-layouts/610/92455",
      "templated": false
    }
  }
}
Get theatre Showtimes by latitude, longitude, and date.
GET  /v2/showtimes/views/current-location/2-24-2017/38.91/-94.64

Response

{
  "pageSize": 10,
  "pageNumber": 1,
  "count": 569,
  "_links": {
    "self": {
      "href": "https://api.amctheatres.com/v2/showtimes/views/current-location/2-24-2017/38.91/-94.64?page-number=1&page-size=10",
      "templated": false
    },
    "next": {
      "href": "https://api.amctheatres.com/v2/showtimes/views/current-location/2-24-2017/38.91/-94.64?page-number=2&page-size=10",
      "templated": false
    }
  },
  "_embedded": {
    "showtimes": [
      {
        "id": 52644344,
        "internalReleaseNumber": 57103,
        "performanceNumber": 24703,
        "movieId": 49414,
        "movieName": "Hidden Figures",
        "sortableMovieName": "Hidden Figures",
        "genre": "DRAMA",
        "showDateTimeUtc": "2017-02-24T16:00:00Z",
        "showDateTimeLocal": "2017-02-24T10:00:00",
        "sellUntilDateTimeUtc": "2017-02-24T16:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 38,
        "auditorium": 6,
        "layoutId": 10,
        "layoutVersionNumber": 1,
        "runTime": 126,
        "mpaaRating": "PG",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/towncenter/all/52644344",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/towncenter/all/52644344",
        "movieUrl": "https://www.amctheatres.com/movies/hidden-figures",
        "wwmReleaseNumber": 218226,
        "lastUpdatedDateUtc": "2017-02-09T11:01:48Z",
        "attributes": [
          {
            "code": "RECLINERSEATING",
            "name": "Premium Power Recliners",
            "description": "This auditorium has recliner seats."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          }
        ],
        "ticketPrices": [
          {
            "price": 5.76,
            "type": "ADULT",
            "sku": "TICKET-RS-52644344-ADULT",
            "tax": 0.47
          },
          {
            "price": 5.76,
            "type": "CHILD",
            "sku": "TICKET-RS-52644344-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.47
          },
          {
            "price": 5.76,
            "type": "SENIOR",
            "sku": "TICKET-RS-52644344-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.47
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/49400/49414/MovieStills/25861.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/49400/49414/Poster/218226R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52644344",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/49414",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/38",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/38/24703",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/38/24703",
            "templated": false
          }
        }
      },
      {
        "id": 52644359,
        "internalReleaseNumber": 57342,
        "performanceNumber": 24718,
        "movieId": 44762,
        "movieName": "The Lego Batman Movie",
        "sortableMovieName": "Lego Batman Movie, The",
        "genre": "ANIMATION",
        "showDateTimeUtc": "2017-02-24T16:00:00Z",
        "showDateTimeLocal": "2017-02-24T10:00:00",
        "sellUntilDateTimeUtc": "2017-02-24T16:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 38,
        "auditorium": 9,
        "layoutId": 11,
        "layoutVersionNumber": 1,
        "runTime": 105,
        "mpaaRating": "PG",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/towncenter/all/52644359",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/towncenter/all/52644359",
        "movieUrl": "https://www.amctheatres.com/movies/the-lego-batman-movie",
        "wwmReleaseNumber": 209280,
        "attributes": [
          {
            "code": "RECLINERSEATING",
            "name": "Premium Power Recliners",
            "description": "This auditorium has recliner seats."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          }
        ],
        "ticketPrices": [
          {
            "price": 5.76,
            "type": "ADULT",
            "sku": "TICKET-RS-52644359-ADULT",
            "tax": 0.47
          },
          {
            "price": 5.76,
            "type": "CHILD",
            "sku": "TICKET-RS-52644359-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.47
          },
          {
            "price": 5.76,
            "type": "SENIOR",
            "sku": "TICKET-RS-52644359-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.47
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/44800/44762/MovieStills/25892.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/44800/44762/MovieStills/26678.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52644359",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/44762",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/38",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/38/24718",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/38/24718",
            "templated": false
          }
        }
      },
      {
        "id": 52536340,
        "internalReleaseNumber": 57353,
        "performanceNumber": 46601,
        "movieId": 44762,
        "movieName": "The Lego Batman Movie",
        "sortableMovieName": "Lego Batman Movie, The",
        "genre": "ANIMATION",
        "showDateTimeUtc": "2017-02-24T16:00:00Z",
        "showDateTimeLocal": "2017-02-24T10:00:00",
        "sellUntilDateTimeUtc": "2017-02-24T16:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 118,
        "auditorium": 12,
        "layoutId": 12,
        "layoutVersionNumber": 1,
        "runTime": 105,
        "mpaaRating": "PG",
        "premiumFormat": "Dolby Cinema at AMC",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/barrywoods/all/52536340",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/barrywoods/all/52536340",
        "movieUrl": "https://www.amctheatres.com/movies/the-lego-batman-movie",
        "wwmReleaseNumber": 209280,
        "attributes": [
          {
            "code": "RECLINERSEATING",
            "name": "Premium Power Recliners",
            "description": "This auditorium has recliner seats."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "DOLBYCINEMAATAMCPRIME",
            "name": "Dolby Cinema at AMC"
          }
        ],
        "ticketPrices": [
          {
            "price": 11.92,
            "type": "ADULT",
            "sku": "TICKET-RS-52536340-ADULT",
            "tax": 0.93
          },
          {
            "price": 11.92,
            "type": "CHILD",
            "sku": "TICKET-RS-52536340-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.93
          },
          {
            "price": 11.92,
            "type": "SENIOR",
            "sku": "TICKET-RS-52536340-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.93
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/44800/44762/MovieStills/25892.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/44800/44762/MovieStills/26678.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52536340",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/44762",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/118",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/118/46601",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/118/46601",
            "templated": false
          }
        }
      },
      {
        "id": 52531057,
        "internalReleaseNumber": 57107,
        "performanceNumber": 92312,
        "movieId": 48505,
        "movieName": "Split",
        "sortableMovieName": "Split",
        "genre": "SUSPENSE",
        "showDateTimeUtc": "2017-02-24T16:00:00Z",
        "showDateTimeLocal": "2017-02-24T10:00:00",
        "sellUntilDateTimeUtc": "2017-02-24T16:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 10,
        "layoutId": 13,
        "layoutVersionNumber": 1,
        "runTime": 117,
        "mpaaRating": "PG13",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52531057",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52531057",
        "movieUrl": "https://www.amctheatres.com/movies/split",
        "wwmReleaseNumber": 221332,
        "attributes": [
          {
            "code": "ADULTS18ANDOVERONLY",
            "name": "Adults 18 and Over only",
            "description": "Only adults 18 and over are allowed in Cinema Suites auditoriums."
          },
          {
            "code": "RECLINERSEATING",
            "name": "Premium Power Recliners",
            "description": "This auditorium has recliner seats."
          },
          {
            "code": "DINEINSEATSIDESERVICE",
            "name": "Dine-In Full Service",
            "description": "The perfect way to experience dinner and a movie.  Reserve your seat and enjoy a made-from-scratch menu prepared fresh by our chefs, plus a full bar.  Just push the service button at your seat to order."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          }
        ],
        "ticketPrices": [
          {
            "price": 6,
            "type": "ADULT",
            "sku": "TICKET-RS-52531057-ADULT",
            "tax": 0.51
          },
          {
            "price": 6,
            "type": "SENIOR",
            "sku": "TICKET-RS-52531057-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.51
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/48500/48505/MovieStills/26722.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/48500/48505/MovieStills/24647.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52531057",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/48505",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92312",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92312",
            "templated": false
          }
        }
      },
      {
        "id": 52550358,
        "internalReleaseNumber": 57459,
        "performanceNumber": 92419,
        "movieId": 47041,
        "movieName": "The Great Wall",
        "sortableMovieName": "Great Wall, The",
        "genre": "ACTION",
        "showDateTimeUtc": "2017-02-24T16:00:00Z",
        "showDateTimeLocal": "2017-02-24T10:00:00",
        "sellUntilDateTimeUtc": "2017-02-24T16:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 14,
        "layoutId": 14,
        "layoutVersionNumber": 1,
        "runTime": 103,
        "mpaaRating": "PG13",
        "premiumFormat": "IMAX 3D",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550358",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52550358",
        "movieUrl": "https://www.amctheatres.com/movies/the-great-wall",
        "wwmReleaseNumber": 235575,
        "attributes": [
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "IMAX3D",
            "name": "IMAX 3D"
          }
        ],
        "ticketPrices": [
          {
            "price": 10.37,
            "type": "ADULT",
            "sku": "TICKET-RS-52550358-ADULT",
            "tax": 0.88
          },
          {
            "price": 10.37,
            "type": "CHILD",
            "sku": "TICKET-RS-52550358-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.88
          },
          {
            "price": 10.37,
            "type": "SENIOR",
            "sku": "TICKET-RS-52550358-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.88
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/MovieStills/26553.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/47000/47041/Poster/218071R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52550358",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/47041",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92419",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92419",
            "templated": false
          }
        }
      },
      {
        "id": 52554461,
        "internalReleaseNumber": 57177,
        "performanceNumber": 92492,
        "movieId": 51510,
        "movieName": "The Red Turtle",
        "sortableMovieName": "Red Turtle, The",
        "genre": "ANIMATION",
        "showDateTimeUtc": "2017-02-24T16:00:00Z",
        "showDateTimeLocal": "2017-02-24T10:00:00",
        "sellUntilDateTimeUtc": "2017-02-24T16:10:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 610,
        "auditorium": 30,
        "layoutId": 15,
        "layoutVersionNumber": 1,
        "runTime": 80,
        "mpaaRating": "PG",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52554461",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/studio/all/52554461",
        "movieUrl": "https://www.amctheatres.com/movies/the-red-turtle",
        "wwmReleaseNumber": 231342,
        "attributes": [
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "AMCINDEPENDENT",
            "name": "AMC independent",
            "description": "AMC independent identifies a Title sourced outside of normal distribution channels."
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          }
        ],
        "ticketPrices": [
          {
            "price": 4.9,
            "type": "ADULT",
            "sku": "TICKET-RS-52554461-ADULT",
            "tax": 0.41
          },
          {
            "price": 4.9,
            "type": "CHILD",
            "sku": "TICKET-RS-52554461-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.41
          },
          {
            "price": 4.9,
            "type": "SENIOR",
            "sku": "TICKET-RS-52554461-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.41
          }
        ],
        "media": {
          "heroDesktopDynamic": "",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/51500/51510/MovieStills/24865.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52554461",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/51510",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/610",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/610/92492",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/610/92492",
            "templated": false
          }
        }
      },
      {
        "id": 52536326,
        "internalReleaseNumber": 56120,
        "performanceNumber": 46587,
        "movieId": 48198,
        "movieName": "La La Land",
        "sortableMovieName": "La La Land",
        "genre": "MUSICAL",
        "showDateTimeUtc": "2017-02-24T16:05:00Z",
        "showDateTimeLocal": "2017-02-24T10:05:00",
        "sellUntilDateTimeUtc": "2017-02-24T16:15:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 118,
        "auditorium": 9,
        "layoutId": 16,
        "layoutVersionNumber": 1,
        "runTime": 128,
        "mpaaRating": "PG13",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/barrywoods/all/52536326",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/barrywoods/all/52536326",
        "movieUrl": "https://www.amctheatres.com/movies/la-la-land",
        "wwmReleaseNumber": 209869,
        "attributes": [
          {
            "code": "AMCINDEPENDENT",
            "name": "AMC independent",
            "description": "AMC independent identifies a Title sourced outside of normal distribution channels."
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          }
        ],
        "ticketPrices": [
          {
            "price": 5.41,
            "type": "ADULT",
            "sku": "TICKET-GA-52536326-ADULT",
            "tax": 0.42
          },
          {
            "price": 5.41,
            "type": "CHILD",
            "sku": "TICKET-GA-52536326-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.42
          },
          {
            "price": 5.41,
            "type": "SENIOR",
            "sku": "TICKET-GA-52536326-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.42
          }
        ],
        "media": {
          "heroDesktopDynamic": "https://cdn.amctheatres.com/titles/images/Hero/48198/lalaland_hero.jpg",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/48200/48198/Poster/209869R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52536326",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/48198",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/118",
            "templated": false
          }
        }
      },
      {
        "id": 52644328,
        "internalReleaseNumber": 57207,
        "performanceNumber": 24687,
        "movieId": 50376,
        "movieName": "John Wick: Chapter Two",
        "sortableMovieName": "John Wick: Chapter Two",
        "genre": "ACTION",
        "showDateTimeUtc": "2017-02-24T16:10:00Z",
        "showDateTimeLocal": "2017-02-24T10:10:00",
        "sellUntilDateTimeUtc": "2017-02-24T16:20:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 38,
        "auditorium": 2,
        "layoutId": 17,
        "layoutVersionNumber": 1,
        "runTime": 122,
        "mpaaRating": "R",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/towncenter/all/52644328",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/towncenter/all/52644328",
        "movieUrl": "https://www.amctheatres.com/movies/john-wick-chapter-two",
        "wwmReleaseNumber": 227497,
        "attributes": [
          {
            "code": "RECLINERSEATING",
            "name": "Premium Power Recliners",
            "description": "This auditorium has recliner seats."
          },
          {
            "code": "RESERVEDSEATING",
            "name": "Reserved Seating",
            "description": "Select your seat when you buy your tickets online, on our mobile app or at the theatre."
          },
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          }
        ],
        "ticketPrices": [
          {
            "price": 5.76,
            "type": "ADULT",
            "sku": "TICKET-RS-52644328-ADULT",
            "tax": 0.47
          },
          {
            "price": 5.76,
            "type": "CHILD",
            "sku": "TICKET-RS-52644328-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.47
          },
          {
            "price": 5.76,
            "type": "SENIOR",
            "sku": "TICKET-RS-52644328-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.47
          }
        ],
        "media": {
          "heroDesktopDynamic": "",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/50400/50376/MovieStills/26679.jpg",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52644328",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/50376",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/38",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v1/seating-layout": {
            "href": "https://api.amctheatres.com/v1/seating-layouts/38/24687",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/seating-layout": {
            "href": "https://api.amctheatres.com/v2/seating-layouts/38/24687",
            "templated": false
          }
        }
      },
      {
        "id": 52536287,
        "internalReleaseNumber": 57119,
        "performanceNumber": 46548,
        "movieId": 50200,
        "movieName": "A Dog's Purpose",
        "sortableMovieName": "Dog's Purpose, A",
        "genre": "COMEDY",
        "showDateTimeUtc": "2017-02-24T16:10:00Z",
        "showDateTimeLocal": "2017-02-24T10:10:00",
        "sellUntilDateTimeUtc": "2017-02-24T16:20:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 118,
        "auditorium": 1,
        "layoutId": 18,
        "layoutVersionNumber": 1,
        "runTime": 100,
        "mpaaRating": "PG",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/barrywoods/all/52536287",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/barrywoods/all/52536287",
        "movieUrl": "https://www.amctheatres.com/movies/a-dog-s-purpose",
        "wwmReleaseNumber": 226073,
        "attributes": [
          {
            "code": "DESCRIPTIVEVIDEO",
            "name": "Audio Description",
            "description": "Audio Description."
          },
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          }
        ],
        "ticketPrices": [
          {
            "price": 5.41,
            "type": "ADULT",
            "sku": "TICKET-GA-52536287-ADULT",
            "tax": 0.42
          },
          {
            "price": 5.41,
            "type": "CHILD",
            "sku": "TICKET-GA-52536287-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.42
          },
          {
            "price": 5.41,
            "type": "SENIOR",
            "sku": "TICKET-GA-52536287-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.42
          }
        ],
        "media": {
          "heroDesktopDynamic": "",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/50200/50200/Poster/226073R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52536287",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/50200",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/118",
            "templated": false
          }
        }
      },
      {
        "id": 52536365,
        "internalReleaseNumber": 57090,
        "performanceNumber": 46626,
        "movieId": 51422,
        "movieName": "Moonlight",
        "sortableMovieName": "Moonlight",
        "genre": "DRAMA",
        "showDateTimeUtc": "2017-02-24T16:10:00Z",
        "showDateTimeLocal": "2017-02-24T10:10:00",
        "sellUntilDateTimeUtc": "2017-02-24T16:20:00Z",
        "isSoldOut": false,
        "isAlmostSoldOut": false,
        "isCanceled": false,
        "utcOffset": "-06:00",
        "theatreId": 118,
        "auditorium": 18,
        "layoutId": 19,
        "layoutVersionNumber": 1,
        "runTime": 110,
        "mpaaRating": "R",
        "premiumFormat": "",
        "purchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/barrywoods/all/52536365",
        "mobilePurchaseUrl": "https://www.amctheatres.com/showtimes/all/2017-02-24/barrywoods/all/52536365",
        "movieUrl": "https://www.amctheatres.com/movies/moonlight",
        "wwmReleaseNumber": 234743,
        "attributes": [
          {
            "code": "AMCINDEPENDENT",
            "name": "AMC independent",
            "description": "AMC independent identifies a Title sourced outside of normal distribution channels."
          },
          {
            "code": "CLOSEDCAPTION",
            "name": "Closed Caption",
            "description": "Closed Caption"
          }
        ],
        "ticketPrices": [
          {
            "price": 5.41,
            "type": "ADULT",
            "sku": "TICKET-GA-52536365-ADULT",
            "tax": 0.42
          },
          {
            "price": 5.41,
            "type": "CHILD",
            "sku": "TICKET-GA-52536365-CHILD",
            "agePolicy": "Age 2-12",
            "tax": 0.42
          },
          {
            "price": 5.41,
            "type": "SENIOR",
            "sku": "TICKET-GA-52536365-SENIOR",
            "agePolicy": "Age 60+",
            "tax": 0.42
          }
        ],
        "media": {
          "heroDesktopDynamic": "",
          "heroMobileDynamic": "",
          "posterDynamic": "https://cdn.amctheatres.com/production/2/movies/51400/51422/Poster/234743R1.JPG",
          "posterAlternateDynamic": "",
          "poster3DDynamic": "",
          "posterIMAXDynamic": "",
          "trailerTeaserDynamic": "",
          "trailerAlternateDynamic": ""
        },
        "languages": {
          "spoken": "English"
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/showtimes/52536365",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/movie": {
            "href": "https://api.amctheatres.com/v2/movies/51422",
            "templated": false
          },
          "https://api.amctheatres.com/rels/v2/theatre": {
            "href": "https://api.amctheatres.com/v2/theatres/118",
            "templated": false
          }
        }
      }
    ]
  }
}