Media

V2

The media endpoints provide access to media (images, videos) associated with a resource (theatre, movie, attribute, person, or promotion)


Endpoints

Verb Endpoint Description
GET /v2/media/images/content-types Returns the list of available content types for images. All images must have a content type.
GET /v2/media/videos/content-types Returns the list of available content types for videos. All videos have a content type.
GET /v2/images/sizes Returns the list of available image sizes. All image renditions must have an image size
GET /v2/media/{media-type}/{media-id} Returns the specified media.
GET /v2/media/{resource-type}/{resource-id}/{media-type} Returns all media-type for the specified resource-type such as all videos for a movie.

Media Route Values (Required)

  • You must supply a media-type route value. The mediaId is the unique identifier of the media-type.
    • If an unknown value is used, a 404 error is returned. If the mediaId is not found, a 404 error is also returned.
    • Options Include:
      • images
      • videos
  • You must supply a resource-type route value. The resourceId is the unique identifier of the resource-type. If specifying a resource-type of attribute, resourceCode will be used.
    • If an unknown value is used, a 404 error is returned. If the resourceId is not found, a 404 error is also returned.
    • Options Include:
      • theatre
      • movie
      • attribute
      • person
      • promotion

Media Query Parameters

  • You may optionally supply a content-type query string parameter to specify a resource-specific content type. A complete list is found by issuing a GET to /v2/media/{media-type}/content-types.
    • Options Include:
      • Poster
      • PosterAlternate
      • Poster3D
      • PosterIMAX
      • MovieStill
      • Publicity
      • Trailer
      • TrailerTeaser
      • TrailerAlternate
      • MovieClip
      • News
      • Interview
      • Interior
      • Exterior
      • Primary
      • StoreIcon
      • Promotional
      • Hero
      • Digital Gift Card
  • You may optionally supply a size query string parameter to specify a common name for a size. A complete list is found by issuing a GET to /v2/images/sizes.
    • Options Include:
      • Digital Gift Card
      • FullRes
      • HeroLarge
      • HeroNewsletter
      • Large
      • Standard
      • Thumb
  • 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.

Media 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.
_embedded.Media A list of Media Representations returned.

Media Links

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

Media


Media Properties

Name Description
contentType Resource-specific content type
effectiveEndDate Last date that media is valid (nullable)
effectiveStartDate First date that media is valid. (nullable)
externalId Unique identifier to video's media warehouse
id Unique identifier for the given piece of media
imageUrl Url to video's image
isActive Returns where media is active within the system
longDescription Full description of media
name Name of media
relatedLinkDisplayText Text displayed for media link
relatedLinkUrl Media link
shortDescription Short description of media
sortOrder Sort order for listing multiple media pieces
stillImageUrl Url of video's still image
tags Comma separated list of identifiers
thumbnailUrl Url of video's thumbnail image;
videoUrl Url of video
resourceId Unique identifier for the images corresponding resource type
_embedded.Renditions A list of Renditions Representations returned.


Media Links

Relation Description Methods Templated
self The current media representation. GET, PUT, DELETE No
renditions The renditions associated with the media. POST, PUT, DELETE No
renditions/reload Reload the renditions associated with the media (for videos only). PUT No

Renditions


Renditions Properties

Name Description
bitRate Video's bit rate
bytes Video's file size
duration Video's duration in milliseconds
externalId Video's external unique identifier
height Pixel height of media
id Unique identifier for the given media's rendition
isActive Returns where rendition is active within the system
size Friendly name for rendition size
url Link to media file
width Pixel width of media


Renditions Links

Relation Description Methods Templated
self The current rendition PUT, DELETE No

ContentType


ContentType Properties

Name Description
allowMultipleMedia Returns whether media using this content type can have more than one piece of media
id Unique identifier for content type
mediaType One of the defined media types
  • image
  • video
name Name of content type
_embedded.ImageSizeTypes A list of ImageSizeTypes Representations returned.

ImageSizeTypes


ImageSizeTypes Properties

Name Description
contentType Name of associated content type
height Pixel height of media
id Unique identifier for the given media's rendition
name Name of image size
resizeMode Name of resize mode
width Pixel width of media


Examples

Gets content types for images
GET  /v2/media/images/content-types

Response

{
  "contentTypes": [
    {
      "id": 1,
      "name": "Poster",
      "mediaType": "image",
      "allowMultipleMedia": false,
      "_embedded": {
        "imageSizeTypes": [
          {
            "id": 1,
            "contentType": "Poster",
            "name": "Thumb",
            "height": 150,
            "width": 100,
            "resizeMode": "crop"
          },
          {
            "id": 2,
            "contentType": "Poster",
            "name": "Standard",
            "height": 300,
            "width": 200,
            "resizeMode": "crop"
          },
          {
            "id": 3,
            "contentType": "Poster",
            "name": "Large",
            "height": 600,
            "width": 400,
            "resizeMode": "crop"
          },
          {
            "id": 4,
            "contentType": "Poster",
            "name": "FullRes",
            "height": 1620,
            "width": 1080,
            "resizeMode": "crop"
          }
        ],
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/sizes?content-type=Poster",
            "templated": false
          }
        },
        "count": 4
      }
    },
    {
      "id": 2,
      "name": "PosterAlternate",
      "mediaType": "image",
      "allowMultipleMedia": false,
      "_embedded": {
        "imageSizeTypes": [
          {
            "id": 5,
            "contentType": "PosterAlternate",
            "name": "Thumb",
            "height": 150,
            "width": 100,
            "resizeMode": "crop"
          },
          {
            "id": 6,
            "contentType": "PosterAlternate",
            "name": "Standard",
            "height": 300,
            "width": 200,
            "resizeMode": "crop"
          },
          {
            "id": 7,
            "contentType": "PosterAlternate",
            "name": "Large",
            "height": 600,
            "width": 400,
            "resizeMode": "crop"
          },
          {
            "id": 8,
            "contentType": "PosterAlternate",
            "name": "FullRes",
            "height": 1620,
            "width": 1080,
            "resizeMode": "crop"
          }
        ],
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/sizes?content-type=PosterAlternate",
            "templated": false
          }
        },
        "count": 4
      }
    },
    {
      "id": 3,
      "name": "Poster3D",
      "mediaType": "image",
      "allowMultipleMedia": false,
      "_embedded": {
        "imageSizeTypes": [
          {
            "id": 9,
            "contentType": "Poster3D",
            "name": "Thumb",
            "height": 150,
            "width": 100,
            "resizeMode": "crop"
          },
          {
            "id": 10,
            "contentType": "Poster3D",
            "name": "Standard",
            "height": 300,
            "width": 200,
            "resizeMode": "crop"
          },
          {
            "id": 11,
            "contentType": "Poster3D",
            "name": "Large",
            "height": 600,
            "width": 400,
            "resizeMode": "crop"
          },
          {
            "id": 12,
            "contentType": "Poster3D",
            "name": "FullRes",
            "height": 1620,
            "width": 1080,
            "resizeMode": "crop"
          }
        ],
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/sizes?content-type=Poster3D",
            "templated": false
          }
        },
        "count": 4
      }
    },
    {
      "id": 4,
      "name": "PosterIMAX",
      "mediaType": "image",
      "allowMultipleMedia": false,
      "_embedded": {
        "imageSizeTypes": [
          {
            "id": 13,
            "contentType": "PosterIMAX",
            "name": "Thumb",
            "height": 150,
            "width": 100,
            "resizeMode": "crop"
          },
          {
            "id": 14,
            "contentType": "PosterIMAX",
            "name": "Standard",
            "height": 300,
            "width": 200,
            "resizeMode": "crop"
          },
          {
            "id": 15,
            "contentType": "PosterIMAX",
            "name": "Large",
            "height": 600,
            "width": 400,
            "resizeMode": "crop"
          },
          {
            "id": 16,
            "contentType": "PosterIMAX",
            "name": "FullRes",
            "height": 1620,
            "width": 1080,
            "resizeMode": "crop"
          }
        ],
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/sizes?content-type=PosterIMAX",
            "templated": false
          }
        },
        "count": 4
      }
    },
    {
      "id": 8,
      "name": "MovieStill",
      "mediaType": "image",
      "allowMultipleMedia": true
    },
    {
      "id": 13,
      "name": "Interior",
      "mediaType": "image",
      "allowMultipleMedia": true,
      "_embedded": {
        "imageSizeTypes": [
          {
            "id": 27,
            "contentType": "Interior",
            "name": "Thumb",
            "height": 133,
            "width": 317,
            "resizeMode": "crop"
          },
          {
            "id": 28,
            "contentType": "Interior",
            "name": "Standard",
            "height": 273,
            "width": 650,
            "resizeMode": "crop"
          },
          {
            "id": 29,
            "contentType": "Interior",
            "name": "Large",
            "height": 546,
            "width": 1300,
            "resizeMode": "crop"
          }
        ],
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/sizes?content-type=Interior",
            "templated": false
          }
        },
        "count": 3
      }
    },
    {
      "id": 14,
      "name": "Exterior",
      "mediaType": "image",
      "allowMultipleMedia": true,
      "_embedded": {
        "imageSizeTypes": [
          {
            "id": 30,
            "contentType": "Exterior",
            "name": "Thumb",
            "height": 133,
            "width": 317,
            "resizeMode": "crop"
          },
          {
            "id": 31,
            "contentType": "Exterior",
            "name": "Standard",
            "height": 273,
            "width": 650,
            "resizeMode": "crop"
          },
          {
            "id": 32,
            "contentType": "Exterior",
            "name": "Large",
            "height": 546,
            "width": 1300,
            "resizeMode": "crop"
          }
        ],
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/sizes?content-type=Exterior",
            "templated": false
          }
        },
        "count": 3
      }
    },
    {
      "id": 15,
      "name": "Primary",
      "mediaType": "image",
      "allowMultipleMedia": false,
      "_embedded": {
        "imageSizeTypes": [
          {
            "id": 33,
            "contentType": "Primary",
            "name": "Thumb",
            "height": 133,
            "width": 317,
            "resizeMode": "crop"
          },
          {
            "id": 34,
            "contentType": "Primary",
            "name": "Standard",
            "height": 273,
            "width": 650,
            "resizeMode": "crop"
          },
          {
            "id": 35,
            "contentType": "Primary",
            "name": "Large",
            "height": 546,
            "width": 1300,
            "resizeMode": "crop"
          }
        ],
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/sizes?content-type=Primary",
            "templated": false
          }
        },
        "count": 3
      }
    },
    {
      "id": 16,
      "name": "StoreIcon",
      "mediaType": "image",
      "allowMultipleMedia": false,
      "_embedded": {
        "imageSizeTypes": [
          {
            "id": 36,
            "contentType": "StoreIcon",
            "name": "Thumb",
            "height": 100,
            "width": 100,
            "resizeMode": "crop"
          }
        ],
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/sizes?content-type=StoreIcon",
            "templated": false
          }
        },
        "count": 1
      }
    },
    {
      "id": 17,
      "name": "Promotional",
      "mediaType": "image",
      "allowMultipleMedia": true,
      "_embedded": {
        "imageSizeTypes": [
          {
            "id": 37,
            "contentType": "Promotional",
            "name": "Thumb",
            "height": 133,
            "width": 317,
            "resizeMode": "crop"
          },
          {
            "id": 38,
            "contentType": "Promotional",
            "name": "Standard",
            "height": 273,
            "width": 650,
            "resizeMode": "crop"
          },
          {
            "id": 39,
            "contentType": "Promotional",
            "name": "Large",
            "height": 546,
            "width": 1300,
            "resizeMode": "crop"
          }
        ],
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/sizes?content-type=Promotional",
            "templated": false
          }
        },
        "count": 3
      }
    },
    {
      "id": 48,
      "name": "Hero",
      "mediaType": "image",
      "allowMultipleMedia": false,
      "_embedded": {
        "imageSizeTypes": [
          {
            "id": 70,
            "contentType": "Hero",
            "name": "HeroLarge",
            "height": 440,
            "width": 1048,
            "resizeMode": "crop"
          },
          {
            "id": 71,
            "contentType": "Hero",
            "name": "HeroNewsletter",
            "height": 262,
            "width": 625,
            "resizeMode": "crop"
          }
        ],
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/sizes?content-type=Hero",
            "templated": false
          }
        },
        "count": 2
      }
    },
    {
      "id": 67,
      "name": "Digital Gift Card",
      "mediaType": "image",
      "allowMultipleMedia": false,
      "_embedded": {
        "imageSizeTypes": [
          {
            "id": 90,
            "contentType": "Digital Gift Card",
            "name": "Digital Gift Card",
            "height": 151,
            "width": 245,
            "resizeMode": "crop"
          }
        ],
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/sizes?content-type=Digital Gift Card",
            "templated": false
          }
        },
        "count": 1
      }
    }
  ],
  "_links": {
    "self": {
      "href": "https://api.amctheatres.com/v2/media/images/content-types",
      "templated": false
    }
  },
  "count": 12
}
Gets content types for videos
GET  /v2/media/videos/content-types

Response

{
  "contentTypes": [
    {
      "id": 5,
      "name": "Trailer",
      "mediaType": "video",
      "allowMultipleMedia": false
    },
    {
      "id": 6,
      "name": "TrailerTeaser",
      "mediaType": "video",
      "allowMultipleMedia": false
    },
    {
      "id": 7,
      "name": "TrailerAlternate",
      "mediaType": "video",
      "allowMultipleMedia": false
    },
    {
      "id": 9,
      "name": "MovieClip",
      "mediaType": "video",
      "allowMultipleMedia": true
    }
  ],
  "_links": {
    "self": {
      "href": "https://api.amctheatres.com/v2/media/videos/content-types",
      "templated": false
    }
  },
  "count": 4
}
Gets all image sizes.
GET  /v2/media/images/sizes

Response

{
  "imageSizeTypes": [
    {
      "id": 1,
      "contentType": "Poster",
      "name": "Thumb",
      "height": 150,
      "width": 100,
      "resizeMode": "crop"
    },
    {
      "id": 2,
      "contentType": "Poster",
      "name": "Standard",
      "height": 300,
      "width": 200,
      "resizeMode": "crop"
    },
    {
      "id": 3,
      "contentType": "Poster",
      "name": "Large",
      "height": 600,
      "width": 400,
      "resizeMode": "crop"
    },
    {
      "id": 4,
      "contentType": "Poster",
      "name": "FullRes",
      "height": 1620,
      "width": 1080,
      "resizeMode": "crop"
    },
    {
      "id": 5,
      "contentType": "PosterAlternate",
      "name": "Thumb",
      "height": 150,
      "width": 100,
      "resizeMode": "crop"
    },
    {
      "id": 6,
      "contentType": "PosterAlternate",
      "name": "Standard",
      "height": 300,
      "width": 200,
      "resizeMode": "crop"
    },
    {
      "id": 7,
      "contentType": "PosterAlternate",
      "name": "Large",
      "height": 600,
      "width": 400,
      "resizeMode": "crop"
    },
    {
      "id": 8,
      "contentType": "PosterAlternate",
      "name": "FullRes",
      "height": 1620,
      "width": 1080,
      "resizeMode": "crop"
    },
    {
      "id": 9,
      "contentType": "Poster3D",
      "name": "Thumb",
      "height": 150,
      "width": 100,
      "resizeMode": "crop"
    },
    {
      "id": 10,
      "contentType": "Poster3D",
      "name": "Standard",
      "height": 300,
      "width": 200,
      "resizeMode": "crop"
    },
    {
      "id": 11,
      "contentType": "Poster3D",
      "name": "Large",
      "height": 600,
      "width": 400,
      "resizeMode": "crop"
    },
    {
      "id": 12,
      "contentType": "Poster3D",
      "name": "FullRes",
      "height": 1620,
      "width": 1080,
      "resizeMode": "crop"
    },
    {
      "id": 13,
      "contentType": "PosterIMAX",
      "name": "Thumb",
      "height": 150,
      "width": 100,
      "resizeMode": "crop"
    },
    {
      "id": 14,
      "contentType": "PosterIMAX",
      "name": "Standard",
      "height": 300,
      "width": 200,
      "resizeMode": "crop"
    },
    {
      "id": 15,
      "contentType": "PosterIMAX",
      "name": "Large",
      "height": 600,
      "width": 400,
      "resizeMode": "crop"
    },
    {
      "id": 16,
      "contentType": "PosterIMAX",
      "name": "FullRes",
      "height": 1620,
      "width": 1080,
      "resizeMode": "crop"
    },
    {
      "id": 27,
      "contentType": "Interior",
      "name": "Thumb",
      "height": 133,
      "width": 317,
      "resizeMode": "crop"
    },
    {
      "id": 28,
      "contentType": "Interior",
      "name": "Standard",
      "height": 273,
      "width": 650,
      "resizeMode": "crop"
    },
    {
      "id": 29,
      "contentType": "Interior",
      "name": "Large",
      "height": 546,
      "width": 1300,
      "resizeMode": "crop"
    },
    {
      "id": 30,
      "contentType": "Exterior",
      "name": "Thumb",
      "height": 133,
      "width": 317,
      "resizeMode": "crop"
    },
    {
      "id": 31,
      "contentType": "Exterior",
      "name": "Standard",
      "height": 273,
      "width": 650,
      "resizeMode": "crop"
    },
    {
      "id": 32,
      "contentType": "Exterior",
      "name": "Large",
      "height": 546,
      "width": 1300,
      "resizeMode": "crop"
    },
    {
      "id": 33,
      "contentType": "Primary",
      "name": "Thumb",
      "height": 133,
      "width": 317,
      "resizeMode": "crop"
    },
    {
      "id": 34,
      "contentType": "Primary",
      "name": "Standard",
      "height": 273,
      "width": 650,
      "resizeMode": "crop"
    },
    {
      "id": 35,
      "contentType": "Primary",
      "name": "Large",
      "height": 546,
      "width": 1300,
      "resizeMode": "crop"
    },
    {
      "id": 36,
      "contentType": "StoreIcon",
      "name": "Thumb",
      "height": 100,
      "width": 100,
      "resizeMode": "crop"
    },
    {
      "id": 37,
      "contentType": "Promotional",
      "name": "Thumb",
      "height": 133,
      "width": 317,
      "resizeMode": "crop"
    },
    {
      "id": 38,
      "contentType": "Promotional",
      "name": "Standard",
      "height": 273,
      "width": 650,
      "resizeMode": "crop"
    },
    {
      "id": 39,
      "contentType": "Promotional",
      "name": "Large",
      "height": 546,
      "width": 1300,
      "resizeMode": "crop"
    },
    {
      "id": 70,
      "contentType": "Hero",
      "name": "HeroLarge",
      "height": 440,
      "width": 1048,
      "resizeMode": "crop"
    },
    {
      "id": 71,
      "contentType": "Hero",
      "name": "HeroNewsletter",
      "height": 262,
      "width": 625,
      "resizeMode": "crop"
    },
    {
      "id": 90,
      "contentType": "Digital Gift Card",
      "name": "Digital Gift Card",
      "height": 151,
      "width": 245,
      "resizeMode": "crop"
    }
  ],
  "_links": {
    "self": {
      "href": "https://api.amctheatres.com/v2/media/images/sizes",
      "templated": false
    }
  },
  "count": 32
}
Gets image sizes with a Content Type of Interior.
GET  /v2/media/images/sizes?content-type=interior

Response

{
  "imageSizeTypes": [
    {
      "id": 27,
      "contentType": "Interior",
      "name": "Thumb",
      "height": 133,
      "width": 317,
      "resizeMode": "crop"
    },
    {
      "id": 28,
      "contentType": "Interior",
      "name": "Standard",
      "height": 273,
      "width": 650,
      "resizeMode": "crop"
    },
    {
      "id": 29,
      "contentType": "Interior",
      "name": "Large",
      "height": 546,
      "width": 1300,
      "resizeMode": "crop"
    }
  ],
  "_links": {
    "self": {
      "href": "https://api.amctheatres.com/v2/media/images/sizes?content-type=interior",
      "templated": false
    }
  },
  "count": 3
}
Gets an image by Id.
GET  /v2/media/images/7964

Response

{
  "id": 7964,
  "isActive": true,
  "contentType": "Hero",
  "name": "riddick-hero",
  "sortOrder": 0,
  "resourceId": "41952",
  "_embedded": {
    "renditions": [
      {
        "id": 9863,
        "isActive": true,
        "url": "http://cdn.amctheatres.com/titles/images/Hero/HeroLarge/7964_riddick-hero_FB07.jpg",
        "height": 440,
        "width": 1048,
        "size": "HeroLarge",
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/7964/renditions/9863",
            "templated": false
          }
        }
      },
      {
        "id": 9864,
        "isActive": true,
        "url": "http://cdn.amctheatres.com/titles/images/Hero/HeroNewsletter/7964_riddick-hero_7292.jpg",
        "height": 262,
        "width": 625,
        "size": "HeroNewsletter",
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/7964/renditions/9864",
            "templated": false
          }
        }
      }
    ]
  },
  "_links": {
    "self": {
      "href": "https://api.amctheatres.com/v2/media/images/7964",
      "templated": false
    },
    "renditions": {
      "href": "https://api.amctheatres.com/v2/media/images/7964/renditions",
      "templated": false
    }
  }
}
Gets a video by Id.
GET  /v2/media/videos/8157

Response

{
  "id": 8157,
  "isActive": true,
  "contentType": "MovieClip",
  "externalId": "2446779027001",
  "longDescription": "",
  "name": "Test Movie Clip for Resident Evil",
  "relatedLinkDisplayText": "",
  "relatedLinkUrl": "",
  "shortDescription": "Test Description",
  "sortOrder": 0,
  "stillImageUrl": "http://amcentertain.brightcove.com.edgesuite.net/pd/1655482053001/201306/681/1655482053001_2448195082001_vs-51b20012e4b025907e8eb1df-1592194047001.jpg?pubId=1655482053001",
  "tags": "",
  "thumbnailUrl": "http://amcentertain.brightcove.com.edgesuite.net/pd/1655482053001/201306/681/1655482053001_2448195086001_th-51b20012e4b025907e8eb1df-1592194047001.jpg?pubId=1655482053001",
  "videoUrl": "http://amcentertain.brightcove.com.edgesuite.net/rtmp/1655482053001/201306/681/1655482053001_2448195066001_137462-hd.mp4",
  "_embedded": {
    "renditions": [
      {
        "id": 20563,
        "isActive": true,
        "url": "http://amcentertain.brightcove.com.edgesuite.net/rtmp/1655482053001/201306/681/1655482053001_2448195066001_137462-hd.mp4",
        "height": 268,
        "width": 480,
        "bytes": 5351622,
        "bitRate": 596794,
        "duration": 71030,
        "externalId": "2448195066001",
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/videos/8157/renditions/20563",
            "templated": false
          }
        }
      },
      {
        "id": 20564,
        "isActive": true,
        "url": "http://amcentertain.brightcove.com.edgesuite.net/rtmp/1655482053001/201306/3681/1655482053001_2448195079001_137462-hd.mp4",
        "height": 720,
        "width": 1280,
        "bytes": 15919064,
        "bitRate": 1795672,
        "duration": 71030,
        "externalId": "2448195079001",
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/videos/8157/renditions/20564",
            "templated": false
          }
        }
      },
      {
        "id": 20565,
        "isActive": true,
        "url": "http://amcentertain.brightcove.com.edgesuite.net/rtmp/1655482053001/201306/3841/1655482053001_2448199015001_137462-hd.mp4",
        "height": 720,
        "width": 1280,
        "bytes": 23173353,
        "bitRate": 2623672,
        "duration": 71030,
        "externalId": "2448199015001",
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/videos/8157/renditions/20565",
            "templated": false
          }
        }
      },
      {
        "id": 20566,
        "isActive": true,
        "url": "http://amcentertain.brightcove.com.edgesuite.net/rtmp/1655482053001/201306/3351/1655482053001_2448150810001_137462-hd.mp4",
        "height": 404,
        "width": 720,
        "bytes": 11001836,
        "bitRate": 1223672,
        "duration": 71030,
        "externalId": "2448150810001",
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/videos/8157/renditions/20566",
            "templated": false
          }
        }
      },
      {
        "id": 20567,
        "isActive": true,
        "url": "http://amcentertain.brightcove.com.edgesuite.net/rtmp/1655482053001/201306/681/1655482053001_2448195078001_137462-hd.mp4",
        "height": 360,
        "width": 640,
        "bytes": 8002584,
        "bitRate": 896794,
        "duration": 71030,
        "externalId": "2448195078001",
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/videos/8157/renditions/20567",
            "templated": false
          }
        }
      },
      {
        "id": 20568,
        "isActive": true,
        "url": "http://amcentertain.brightcove.com.edgesuite.net/rtmp/1655482053001/201306/361/1655482053001_2448195390001_137462-hd.mp4",
        "height": 268,
        "width": 480,
        "bytes": 2445015,
        "bitRate": 270580,
        "duration": 71030,
        "externalId": "2448195390001",
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/videos/8157/renditions/20568",
            "templated": false
          }
        }
      }
    ]
  },
  "_links": {
    "self": {
      "href": "https://api.amctheatres.com/v2/media/videos/8157",
      "templated": false
    },
    "renditions": {
      "href": "https://api.amctheatres.com/v2/media/videos/8157/renditions",
      "templated": false
    },
    "streamRendition": {
      "href": "https://api.amctheatres.com/v2/media/videos/8157/stream-rendition",
      "templated": false
    }
  }
}
Gets all images for theatre 610.
GET  /v2/media/theatres/610/images

Request

/v2/media/theatres/610/images

Response

{
  "pageSize": 10,
  "pageNumber": 1,
  "count": 25,
  "_links": {
    "self": {
      "href": "https://api.amctheatres.com/v2/media/theatres/610/images?page-number=1&page-size=10",
      "templated": false
    },
    "next": {
      "href": "https://api.amctheatres.com/v2/media/theatres/610/images?page-number=2&page-size=10",
      "templated": false
    }
  },
  "_embedded": {
    "media": [
      {
        "id": 7924,
        "isActive": true,
        "contentType": "Exterior",
        "name": "38",
        "sortOrder": 0,
        "resourceId": "610",
        "_embedded": {
          "renditions": [
            {
              "id": 9784,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Thumb/7924_38_3923.jpg",
              "height": 133,
              "width": 317,
              "size": "Thumb",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7924/renditions/9784",
                  "templated": false
                }
              }
            },
            {
              "id": 9785,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Standard/7924_38_583A.jpg",
              "height": 273,
              "width": 650,
              "size": "Standard",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7924/renditions/9785",
                  "templated": false
                }
              }
            },
            {
              "id": 9786,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Large/7924_38_D2E2.jpg",
              "height": 546,
              "width": 1300,
              "size": "Large",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7924/renditions/9786",
                  "templated": false
                }
              }
            }
          ]
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/7924",
            "templated": false
          },
          "renditions": {
            "href": "https://api.amctheatres.com/v2/media/images/7924/renditions",
            "templated": false
          }
        }
      },
      {
        "id": 7925,
        "isActive": true,
        "contentType": "Exterior",
        "name": "52",
        "sortOrder": 0,
        "resourceId": "610",
        "_embedded": {
          "renditions": [
            {
              "id": 9787,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Thumb/7925_52_94B7.jpg",
              "height": 133,
              "width": 317,
              "size": "Thumb",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7925/renditions/9787",
                  "templated": false
                }
              }
            },
            {
              "id": 9788,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Standard/7925_52_3960.jpg",
              "height": 273,
              "width": 650,
              "size": "Standard",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7925/renditions/9788",
                  "templated": false
                }
              }
            },
            {
              "id": 9789,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Large/7925_52_F9E9.jpg",
              "height": 546,
              "width": 1300,
              "size": "Large",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7925/renditions/9789",
                  "templated": false
                }
              }
            }
          ]
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/7925",
            "templated": false
          },
          "renditions": {
            "href": "https://api.amctheatres.com/v2/media/images/7925/renditions",
            "templated": false
          }
        }
      },
      {
        "id": 7926,
        "isActive": true,
        "contentType": "Exterior",
        "name": "190",
        "sortOrder": 0,
        "resourceId": "610",
        "_embedded": {
          "renditions": [
            {
              "id": 9790,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Thumb/7926_190_F0B0.jpg",
              "height": 133,
              "width": 317,
              "size": "Thumb",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7926/renditions/9790",
                  "templated": false
                }
              }
            },
            {
              "id": 9791,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Standard/7926_190_AF8C.jpg",
              "height": 273,
              "width": 650,
              "size": "Standard",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7926/renditions/9791",
                  "templated": false
                }
              }
            },
            {
              "id": 9792,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Large/7926_190_063D.jpg",
              "height": 546,
              "width": 1300,
              "size": "Large",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7926/renditions/9792",
                  "templated": false
                }
              }
            }
          ]
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/7926",
            "templated": false
          },
          "renditions": {
            "href": "https://api.amctheatres.com/v2/media/images/7926/renditions",
            "templated": false
          }
        }
      },
      {
        "id": 7927,
        "isActive": true,
        "contentType": "Exterior",
        "name": "293",
        "sortOrder": 0,
        "resourceId": "610",
        "_embedded": {
          "renditions": [
            {
              "id": 9793,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Thumb/7927_293_21A9.jpg",
              "height": 133,
              "width": 317,
              "size": "Thumb",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7927/renditions/9793",
                  "templated": false
                }
              }
            },
            {
              "id": 9794,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Standard/7927_293_DF7D.jpg",
              "height": 273,
              "width": 650,
              "size": "Standard",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7927/renditions/9794",
                  "templated": false
                }
              }
            },
            {
              "id": 9795,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Large/7927_293_C7C5.jpg",
              "height": 546,
              "width": 1300,
              "size": "Large",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7927/renditions/9795",
                  "templated": false
                }
              }
            }
          ]
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/7927",
            "templated": false
          },
          "renditions": {
            "href": "https://api.amctheatres.com/v2/media/images/7927/renditions",
            "templated": false
          }
        }
      },
      {
        "id": 7928,
        "isActive": true,
        "contentType": "Exterior",
        "name": "435",
        "sortOrder": 0,
        "resourceId": "610",
        "_embedded": {
          "renditions": [
            {
              "id": 9796,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Thumb/7928_435_1B91.jpg",
              "height": 133,
              "width": 317,
              "size": "Thumb",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7928/renditions/9796",
                  "templated": false
                }
              }
            },
            {
              "id": 9797,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Standard/7928_435_5BBB.jpg",
              "height": 273,
              "width": 650,
              "size": "Standard",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7928/renditions/9797",
                  "templated": false
                }
              }
            },
            {
              "id": 9798,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Large/7928_435_C62B.jpg",
              "height": 546,
              "width": 1300,
              "size": "Large",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7928/renditions/9798",
                  "templated": false
                }
              }
            }
          ]
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/7928",
            "templated": false
          },
          "renditions": {
            "href": "https://api.amctheatres.com/v2/media/images/7928/renditions",
            "templated": false
          }
        }
      },
      {
        "id": 7929,
        "isActive": true,
        "contentType": "Exterior",
        "name": "206",
        "sortOrder": 0,
        "resourceId": "610",
        "_embedded": {
          "renditions": [
            {
              "id": 9799,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Thumb/7929_206_8317.jpg",
              "height": 133,
              "width": 317,
              "size": "Thumb",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7929/renditions/9799",
                  "templated": false
                }
              }
            },
            {
              "id": 9800,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Standard/7929_206_D141.jpg",
              "height": 273,
              "width": 650,
              "size": "Standard",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7929/renditions/9800",
                  "templated": false
                }
              }
            },
            {
              "id": 9801,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Large/7929_206_1FDB.jpg",
              "height": 546,
              "width": 1300,
              "size": "Large",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7929/renditions/9801",
                  "templated": false
                }
              }
            }
          ]
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/7929",
            "templated": false
          },
          "renditions": {
            "href": "https://api.amctheatres.com/v2/media/images/7929/renditions",
            "templated": false
          }
        }
      },
      {
        "id": 7930,
        "isActive": true,
        "contentType": "Interior",
        "name": "242",
        "sortOrder": 0,
        "resourceId": "610",
        "_embedded": {
          "renditions": [
            {
              "id": 9802,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Thumb/7930_242_EE4A.jpg",
              "height": 133,
              "width": 317,
              "size": "Thumb",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7930/renditions/9802",
                  "templated": false
                }
              }
            },
            {
              "id": 9803,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Standard/7930_242_834D.jpg",
              "height": 273,
              "width": 650,
              "size": "Standard",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7930/renditions/9803",
                  "templated": false
                }
              }
            },
            {
              "id": 9804,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Large/7930_242_5361.jpg",
              "height": 546,
              "width": 1300,
              "size": "Large",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7930/renditions/9804",
                  "templated": false
                }
              }
            }
          ]
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/7930",
            "templated": false
          },
          "renditions": {
            "href": "https://api.amctheatres.com/v2/media/images/7930/renditions",
            "templated": false
          }
        }
      },
      {
        "id": 7931,
        "isActive": true,
        "contentType": "Interior",
        "name": "424",
        "sortOrder": 0,
        "resourceId": "610",
        "_embedded": {
          "renditions": [
            {
              "id": 9805,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Thumb/7931_424_333D.jpg",
              "height": 133,
              "width": 317,
              "size": "Thumb",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7931/renditions/9805",
                  "templated": false
                }
              }
            },
            {
              "id": 9806,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Standard/7931_424_3E38.jpg",
              "height": 273,
              "width": 650,
              "size": "Standard",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7931/renditions/9806",
                  "templated": false
                }
              }
            },
            {
              "id": 9807,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Large/7931_424_6A63.jpg",
              "height": 546,
              "width": 1300,
              "size": "Large",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7931/renditions/9807",
                  "templated": false
                }
              }
            }
          ]
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/7931",
            "templated": false
          },
          "renditions": {
            "href": "https://api.amctheatres.com/v2/media/images/7931/renditions",
            "templated": false
          }
        }
      },
      {
        "id": 7932,
        "isActive": true,
        "contentType": "Interior",
        "name": "552",
        "sortOrder": 0,
        "resourceId": "610",
        "_embedded": {
          "renditions": [
            {
              "id": 9808,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Thumb/7932_552_F4DA.jpg",
              "height": 133,
              "width": 317,
              "size": "Thumb",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7932/renditions/9808",
                  "templated": false
                }
              }
            },
            {
              "id": 9809,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Standard/7932_552_790D.jpg",
              "height": 273,
              "width": 650,
              "size": "Standard",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7932/renditions/9809",
                  "templated": false
                }
              }
            },
            {
              "id": 9810,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Large/7932_552_C9D8.jpg",
              "height": 546,
              "width": 1300,
              "size": "Large",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7932/renditions/9810",
                  "templated": false
                }
              }
            }
          ]
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/7932",
            "templated": false
          },
          "renditions": {
            "href": "https://api.amctheatres.com/v2/media/images/7932/renditions",
            "templated": false
          }
        }
      },
      {
        "id": 7933,
        "isActive": true,
        "contentType": "Interior",
        "name": "607",
        "sortOrder": 0,
        "resourceId": "610",
        "_embedded": {
          "renditions": [
            {
              "id": 9811,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Thumb/7933_607_986B.jpg",
              "height": 133,
              "width": 317,
              "size": "Thumb",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7933/renditions/9811",
                  "templated": false
                }
              }
            },
            {
              "id": 9812,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Standard/7933_607_9812.jpg",
              "height": 273,
              "width": 650,
              "size": "Standard",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7933/renditions/9812",
                  "templated": false
                }
              }
            },
            {
              "id": 9813,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Large/7933_607_7146.jpg",
              "height": 546,
              "width": 1300,
              "size": "Large",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7933/renditions/9813",
                  "templated": false
                }
              }
            }
          ]
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/7933",
            "templated": false
          },
          "renditions": {
            "href": "https://api.amctheatres.com/v2/media/images/7933/renditions",
            "templated": false
          }
        }
      }
    ]
  }
}
Gets second page (page size 8) of all images for theatre 610.
GET  /v2/media/theatres/610/images?page-number=2&page-size=8

Request

/v2/media/theatres/610/images?page-number=2&page-size=8

Response

{
  "pageSize": 8,
  "pageNumber": 2,
  "count": 25,
  "_links": {
    "self": {
      "href": "https://api.amctheatres.com/v2/media/theatres/610/images?page-number=2&page-size=8",
      "templated": false
    },
    "previous": {
      "href": "https://api.amctheatres.com/v2/media/theatres/610/images?page-number=1&page-size=8",
      "templated": false
    },
    "next": {
      "href": "https://api.amctheatres.com/v2/media/theatres/610/images?page-number=3&page-size=8",
      "templated": false
    }
  },
  "_embedded": {
    "media": [
      {
        "id": 7932,
        "isActive": true,
        "contentType": "Interior",
        "name": "552",
        "sortOrder": 0,
        "resourceId": "610",
        "_embedded": {
          "renditions": [
            {
              "id": 9808,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Thumb/7932_552_F4DA.jpg",
              "height": 133,
              "width": 317,
              "size": "Thumb",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7932/renditions/9808",
                  "templated": false
                }
              }
            },
            {
              "id": 9809,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Standard/7932_552_790D.jpg",
              "height": 273,
              "width": 650,
              "size": "Standard",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7932/renditions/9809",
                  "templated": false
                }
              }
            },
            {
              "id": 9810,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Large/7932_552_C9D8.jpg",
              "height": 546,
              "width": 1300,
              "size": "Large",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7932/renditions/9810",
                  "templated": false
                }
              }
            }
          ]
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/7932",
            "templated": false
          },
          "renditions": {
            "href": "https://api.amctheatres.com/v2/media/images/7932/renditions",
            "templated": false
          }
        }
      },
      {
        "id": 7933,
        "isActive": true,
        "contentType": "Interior",
        "name": "607",
        "sortOrder": 0,
        "resourceId": "610",
        "_embedded": {
          "renditions": [
            {
              "id": 9811,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Thumb/7933_607_986B.jpg",
              "height": 133,
              "width": 317,
              "size": "Thumb",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7933/renditions/9811",
                  "templated": false
                }
              }
            },
            {
              "id": 9812,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Standard/7933_607_9812.jpg",
              "height": 273,
              "width": 650,
              "size": "Standard",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7933/renditions/9812",
                  "templated": false
                }
              }
            },
            {
              "id": 9813,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Large/7933_607_7146.jpg",
              "height": 546,
              "width": 1300,
              "size": "Large",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7933/renditions/9813",
                  "templated": false
                }
              }
            }
          ]
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/7933",
            "templated": false
          },
          "renditions": {
            "href": "https://api.amctheatres.com/v2/media/images/7933/renditions",
            "templated": false
          }
        }
      },
      {
        "id": 7934,
        "isActive": true,
        "contentType": "Interior",
        "name": "73",
        "sortOrder": 0,
        "resourceId": "610",
        "_embedded": {
          "renditions": [
            {
              "id": 9814,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Thumb/7934_73_A6DA.jpg",
              "height": 133,
              "width": 317,
              "size": "Thumb",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7934/renditions/9814",
                  "templated": false
                }
              }
            },
            {
              "id": 9815,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Standard/7934_73_E5E7.jpg",
              "height": 273,
              "width": 650,
              "size": "Standard",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7934/renditions/9815",
                  "templated": false
                }
              }
            },
            {
              "id": 9816,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Large/7934_73_DF02.jpg",
              "height": 546,
              "width": 1300,
              "size": "Large",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7934/renditions/9816",
                  "templated": false
                }
              }
            }
          ]
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/7934",
            "templated": false
          },
          "renditions": {
            "href": "https://api.amctheatres.com/v2/media/images/7934/renditions",
            "templated": false
          }
        }
      },
      {
        "id": 7935,
        "isActive": true,
        "contentType": "Exterior",
        "name": "130",
        "sortOrder": 0,
        "_embedded": {
          "renditions": [
            {
              "id": 9817,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Thumb/7935_130_37EF.jpg",
              "height": 133,
              "width": 317,
              "size": "Thumb",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7935/renditions/9817",
                  "templated": false
                }
              }
            },
            {
              "id": 9818,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Standard/7935_130_8A3F.jpg",
              "height": 273,
              "width": 650,
              "size": "Standard",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7935/renditions/9818",
                  "templated": false
                }
              }
            },
            {
              "id": 9819,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Large/7935_130_2F12.jpg",
              "height": 546,
              "width": 1300,
              "size": "Large",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7935/renditions/9819",
                  "templated": false
                }
              }
            }
          ]
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/7935",
            "templated": false
          },
          "renditions": {
            "href": "https://api.amctheatres.com/v2/media/images/7935/renditions",
            "templated": false
          }
        }
      },
      {
        "id": 7936,
        "isActive": true,
        "contentType": "Exterior",
        "name": "160",
        "sortOrder": 0,
        "_embedded": {
          "renditions": [
            {
              "id": 9820,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Thumb/7936_160_2933.jpg",
              "height": 133,
              "width": 317,
              "size": "Thumb",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7936/renditions/9820",
                  "templated": false
                }
              }
            },
            {
              "id": 9821,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Standard/7936_160_9EA7.jpg",
              "height": 273,
              "width": 650,
              "size": "Standard",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7936/renditions/9821",
                  "templated": false
                }
              }
            },
            {
              "id": 9822,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Large/7936_160_5219.jpg",
              "height": 546,
              "width": 1300,
              "size": "Large",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7936/renditions/9822",
                  "templated": false
                }
              }
            }
          ]
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/7936",
            "templated": false
          },
          "renditions": {
            "href": "https://api.amctheatres.com/v2/media/images/7936/renditions",
            "templated": false
          }
        }
      },
      {
        "id": 7937,
        "isActive": true,
        "contentType": "Interior",
        "name": "133",
        "sortOrder": 0,
        "_embedded": {
          "renditions": [
            {
              "id": 9823,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Thumb/7937_133_4684.jpg",
              "height": 133,
              "width": 317,
              "size": "Thumb",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7937/renditions/9823",
                  "templated": false
                }
              }
            },
            {
              "id": 9824,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Standard/7937_133_7660.jpg",
              "height": 273,
              "width": 650,
              "size": "Standard",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7937/renditions/9824",
                  "templated": false
                }
              }
            },
            {
              "id": 9825,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Large/7937_133_108F.jpg",
              "height": 546,
              "width": 1300,
              "size": "Large",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7937/renditions/9825",
                  "templated": false
                }
              }
            }
          ]
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/7937",
            "templated": false
          },
          "renditions": {
            "href": "https://api.amctheatres.com/v2/media/images/7937/renditions",
            "templated": false
          }
        }
      },
      {
        "id": 7938,
        "isActive": true,
        "contentType": "Exterior",
        "name": "143",
        "sortOrder": 0,
        "_embedded": {
          "renditions": [
            {
              "id": 9826,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Thumb/7938_143_54FF.jpg",
              "height": 133,
              "width": 317,
              "size": "Thumb",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7938/renditions/9826",
                  "templated": false
                }
              }
            },
            {
              "id": 9827,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Standard/7938_143_DE39.jpg",
              "height": 273,
              "width": 650,
              "size": "Standard",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7938/renditions/9827",
                  "templated": false
                }
              }
            },
            {
              "id": 9828,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Exterior/Large/7938_143_F154.jpg",
              "height": 546,
              "width": 1300,
              "size": "Large",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7938/renditions/9828",
                  "templated": false
                }
              }
            }
          ]
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/7938",
            "templated": false
          },
          "renditions": {
            "href": "https://api.amctheatres.com/v2/media/images/7938/renditions",
            "templated": false
          }
        }
      },
      {
        "id": 7939,
        "isActive": true,
        "contentType": "Interior",
        "name": "145",
        "sortOrder": 0,
        "_embedded": {
          "renditions": [
            {
              "id": 9829,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Thumb/7939_145_C53B.jpg",
              "height": 133,
              "width": 317,
              "size": "Thumb",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7939/renditions/9829",
                  "templated": false
                }
              }
            },
            {
              "id": 9830,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Standard/7939_145_0532.jpg",
              "height": 273,
              "width": 650,
              "size": "Standard",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7939/renditions/9830",
                  "templated": false
                }
              }
            },
            {
              "id": 9831,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/theatres/images/Interior/Large/7939_145_FF85.jpg",
              "height": 546,
              "width": 1300,
              "size": "Large",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/7939/renditions/9831",
                  "templated": false
                }
              }
            }
          ]
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/7939",
            "templated": false
          },
          "renditions": {
            "href": "https://api.amctheatres.com/v2/media/images/7939/renditions",
            "templated": false
          }
        }
      }
    ]
  }
}
Gets all videos for a movie.
GET  /v2/media/movies/41961/videos

Request

/v2/media/movies/41961/videos

Response

{
  "pageSize": 10,
  "pageNumber": 1,
  "count": 1,
  "_links": {
    "self": {
      "href": "https://api.amctheatres.com/v2/media/movies/41961/videos?page-number=1&page-size=10",
      "templated": false
    }
  },
  "_embedded": {
    "media": [
      {
        "id": 8154,
        "isActive": true,
        "contentType": "Trailer",
        "externalId": "2440355956001",
        "longDescription": "",
        "name": "Anchorman 2 Trailer",
        "relatedLinkDisplayText": "",
        "relatedLinkUrl": "",
        "shortDescription": "Trailer video for Anchorman 2",
        "sortOrder": 0,
        "stillImageUrl": "http://amcentertain.brightcove.com.edgesuite.net/pd/1655482053001/201306/3127/1655482053001_2440395820001_vs-51b0d48ee4b09c0410307973-767904718001.jpg?pubId=1655482053001",
        "tags": "",
        "resourceId": "41961",
        "thumbnailUrl": "http://amcentertain.brightcove.com.edgesuite.net/pd/1655482053001/201306/2127/1655482053001_2440395821001_th-51b0d48ee4b09c0410307973-767904718001.jpg?pubId=1655482053001",
        "videoUrl": "http://amcentertain.brightcove.com.edgesuite.net/rtmp/1655482053001/201306/1001/1655482053001_2440413112001_137462-hd.mp4",
        "_embedded": {
          "renditions": [
            {
              "id": 20575,
              "isActive": true,
              "url": "http://amcentertain.brightcove.com.edgesuite.net/rtmp/1655482053001/201306/1001/1655482053001_2440413112001_137462-hd.mp4",
              "height": 268,
              "width": 480,
              "bytes": 2752585,
              "bitRate": 317044,
              "duration": 71030,
              "externalId": "2440413112001",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/videos/8154/renditions/20575",
                  "templated": false
                }
              }
            },
            {
              "id": 20576,
              "isActive": true,
              "url": "http://amcentertain.brightcove.com.edgesuite.net/rtmp/1655482053001/201306/1095/1655482053001_2440408142001_137462-hd.mp4",
              "height": 720,
              "width": 1280,
              "bytes": 15889538,
              "bitRate": 1795672,
              "duration": 71030,
              "externalId": "2440408142001",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/videos/8154/renditions/20576",
                  "templated": false
                }
              }
            },
            {
              "id": 20577,
              "isActive": true,
              "url": "http://amcentertain.brightcove.com.edgesuite.net/rtmp/1655482053001/201306/1383/1655482053001_2440411946001_137462-hd.mp4",
              "height": 404,
              "width": 720,
              "bytes": 10897837,
              "bitRate": 1223672,
              "duration": 71030,
              "externalId": "2440411946001",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/videos/8154/renditions/20577",
                  "templated": false
                }
              }
            },
            {
              "id": 20578,
              "isActive": true,
              "url": "http://amcentertain.brightcove.com.edgesuite.net/rtmp/1655482053001/201306/1127/1655482053001_2440395818001_137462-hd.mp4",
              "height": 360,
              "width": 640,
              "bytes": 7994111,
              "bitRate": 896794,
              "duration": 71030,
              "externalId": "2440395818001",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/videos/8154/renditions/20578",
                  "templated": false
                }
              }
            },
            {
              "id": 20579,
              "isActive": true,
              "url": "http://amcentertain.brightcove.com.edgesuite.net/rtmp/1655482053001/201306/3953/1655482053001_2440410989001_137462-hd.mp4",
              "height": 268,
              "width": 480,
              "bytes": 5333561,
              "bitRate": 596794,
              "duration": 71030,
              "externalId": "2440410989001",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/videos/8154/renditions/20579",
                  "templated": false
                }
              }
            },
            {
              "id": 20580,
              "isActive": true,
              "url": "http://amcentertain.brightcove.com.edgesuite.net/rtmp/1655482053001/201306/3295/1655482053001_2440413071001_137462-hd.mp4",
              "height": 720,
              "width": 1280,
              "bytes": 23163420,
              "bitRate": 2623672,
              "duration": 71030,
              "externalId": "2440413071001",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/videos/8154/renditions/20580",
                  "templated": false
                }
              }
            }
          ]
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/videos/8154",
            "templated": false
          },
          "renditions": {
            "href": "https://api.amctheatres.com/v2/media/videos/8154/renditions",
            "templated": false
          },
          "streamRendition": {
            "href": "https://api.amctheatres.com/v2/media/videos/8154/stream-rendition",
            "templated": false
          }
        }
      }
    ]
  }
}
Gets all images for attribute 'animated'.
GET  /v2/media/attributes/animated/images

Request

/v2/media/attributes/animated/images

Response

{
  "pageSize": 10,
  "pageNumber": 1,
  "count": 1,
  "_links": {
    "self": {
      "href": "https://api.amctheatres.com/v2/media/attributes/animated/images?page-number=1&page-size=10",
      "templated": false
    }
  },
  "_embedded": {
    "media": [
      {
        "id": 1253,
        "isActive": true,
        "contentType": "Poster",
        "creationDateUtc": "2014-06-25T21:13:22.06Z",
        "name": "original_transformers",
        "sortOrder": 0,
        "resourceId": "12",
        "_embedded": {
          "renditions": [
            {
              "id": 3052,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/titles/images/Poster/Thumb/1253_original-transformers_A03F.jpg",
              "height": 150,
              "width": 100,
              "size": "Thumb",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/1253/renditions/3052",
                  "templated": false
                }
              }
            },
            {
              "id": 3053,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/titles/images/Poster/Standard/1253_original-transformers_A675.jpg",
              "height": 300,
              "width": 200,
              "size": "Standard",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/1253/renditions/3053",
                  "templated": false
                }
              }
            },
            {
              "id": 3054,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/titles/images/Poster/Large/1253_original-transformers_4EA0.jpg",
              "height": 600,
              "width": 400,
              "size": "Large",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/1253/renditions/3054",
                  "templated": false
                }
              }
            }
          ]
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/1253",
            "templated": false
          },
          "renditions": {
            "href": "https://api.amctheatres.com/v2/media/images/1253/renditions",
            "templated": false
          }
        }
      }
    ]
  }
}
Gets all images for person J.J. Abrams.
GET  /v2/media/person/14702/images

Request

/v2/media/person/14702/images

Response

{
  "pageSize": 10,
  "pageNumber": 1,
  "count": 1,
  "_links": {
    "self": {
      "href": "https://api.amctheatres.com/v2/media/people/14702/images?page-number=1&page-size=10",
      "templated": false
    }
  },
  "_embedded": {
    "media": [
      {
        "id": 109,
        "isActive": true,
        "contentType": "Poster",
        "creationDateUtc": "2013-04-27T15:46:54.367Z",
        "name": "star-trek-into-darkness",
        "sortOrder": 0,
        "resourceId": "14702",
        "_embedded": {
          "renditions": [
            {
              "id": 361,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/titles/images/Poster/Thumb/109_star-trek-into-darkness_6A03.jpg",
              "height": 150,
              "width": 100,
              "size": "Thumb",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/109/renditions/361",
                  "templated": false
                }
              }
            },
            {
              "id": 362,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/titles/images/Poster/Standard/109_star-trek-into-darkness_B481.jpg",
              "height": 300,
              "width": 200,
              "size": "Standard",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/109/renditions/362",
                  "templated": false
                }
              }
            },
            {
              "id": 363,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/titles/images/Poster/Large/109_star-trek-into-darkness_02AE.jpg",
              "height": 600,
              "width": 400,
              "size": "Large",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/109/renditions/363",
                  "templated": false
                }
              }
            }
          ]
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/109",
            "templated": false
          },
          "renditions": {
            "href": "https://api.amctheatres.com/v2/media/images/109/renditions",
            "templated": false
          }
        }
      }
    ]
  }
}
Gets all images for a specific product.
GET  /v2/media/products/8081604/images

Request

/v2/media/products/8081604/images

Response

{
  "pageSize": 10,
  "pageNumber": 1,
  "count": 1,
  "_links": {
    "self": {
      "href": "https://api.amctheatres.com/v2/media/images?page-number=1&page-size=10",
      "templated": false
    },
    "next": {
      "href": "https://api.amctheatres.com/v2/media/images?page-number=2&page-size=10",
      "templated": false
    }
  },
  "_embedded": {
    "media": [
      {
        "id": 41315,
        "isActive": true,
        "contentType": "Poster",
        "creationDateUtc": "2018-04-11T20:31:21.343Z",
        "effectiveStartDate": "2018-04-11T00:00:00Z",
        "imageUrl": "http://linkUrl",
        "longDescription": "Product Image",
        "name": "Product Image",
        "relatedLinkDisplayText": "display text",
        "relatedLinkUrl": "http://linkUrl",
        "shortDescription": "Product Image",
        "sortOrder": 0,
        "resourceId": "8081604",
        "tags": "image, jpg",
        "_embedded": {
          "renditions": [
            {
              "id": 57891,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/products/8081604/41315.jpg",
              "height": 0,
              "width": 0,
              "size": "Standard",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/41315/renditions/57891",
                  "templated": false
                }
              }
            }
          ]
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/41315",
            "templated": false
          },
          "renditions": {
            "href": "https://api.amctheatres.com/v2/media/images/41315/renditions",
            "templated": false
          },
          "streamRendition": {
            "href": "https://api.amctheatres.com/v2/media/images/41315/products/8081604/stream-rendition",
            "templated": false
          }
        }
      }
    ]
  }
}
Gets all images for a specific product category.
GET  /v2/media/product-categories/3/images

Request

/v2/media/product-categories/3/images

Response

{
  "pageSize": 10,
  "pageNumber": 1,
  "count": 1,
  "_links": {
    "self": {
      "href": "https://api.amctheatres.com/v2/media/images?page-number=1&page-size=10",
      "templated": false
    },
    "next": {
      "href": "https://api.amctheatres.com/v2/media/images?page-number=2&page-size=10",
      "templated": false
    }
  },
  "_embedded": {
    "media": [
      {
        "id": 41316,
        "isActive": true,
        "contentType": "Poster",
        "creationDateUtc": "2018-04-11T20:31:21.343Z",
        "effectiveStartDate": "2018-04-11T00:00:00Z",
        "imageUrl": "http://linkUrl",
        "longDescription": "Product Category Image",
        "name": "Product Category Image",
        "relatedLinkDisplayText": "display text",
        "relatedLinkUrl": "http://linkUrl",
        "shortDescription": "Product Category Image",
        "sortOrder": 0,
        "resourceId": "3",
        "tags": "image, jpg",
        "_embedded": {
          "renditions": [
            {
              "id": 57892,
              "isActive": true,
              "url": "http://cdn.amctheatres.com/product-categories/3/41316.jpg",
              "height": 0,
              "width": 0,
              "size": "Standard",
              "_links": {
                "self": {
                  "href": "https://api.amctheatres.com/v2/media/images/41316/renditions/57892",
                  "templated": false
                }
              }
            }
          ]
        },
        "_links": {
          "self": {
            "href": "https://api.amctheatres.com/v2/media/images/41316",
            "templated": false
          },
          "renditions": {
            "href": "https://api.amctheatres.com/v2/media/images/41316/renditions",
            "templated": false
          },
          "streamRendition": {
            "href": "https://api.amctheatres.com/v2/media/images/41316/product-categories/3/stream-rendition",
            "templated": false
          }
        }
      }
    ]
  }
}