diff --git a/codegen.ts b/codegen.ts index 80b9eb6..9993ce7 100644 --- a/codegen.ts +++ b/codegen.ts @@ -12,6 +12,7 @@ const config: CodegenConfig = { plugins: ['introspection'], }, }, + require: ['tsconfig-paths/register'], }; export default config; diff --git a/package-lock.json b/package-lock.json index 07b98af..0395b21 100644 --- a/package-lock.json +++ b/package-lock.json @@ -42,6 +42,7 @@ "serverless-tscpaths": "^0.0.8", "ts-jest": "29.0.5", "ts-node": "10.9.1", + "tsconfig-paths": "^4.2.0", "typescript": "4.9.4" } }, @@ -12268,6 +12269,15 @@ "node": "*" } }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/minipass": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", @@ -15225,6 +15235,29 @@ } } }, + "node_modules/tsconfig-paths": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-4.2.0.tgz", + "integrity": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==", + "dev": true, + "dependencies": { + "json5": "^2.2.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/tslib": { "version": "2.6.2", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", diff --git a/package.json b/package.json index 4547fb9..0f69d3e 100644 --- a/package.json +++ b/package.json @@ -1,63 +1,64 @@ { - "name": "movies-api", - "version": "0.1.0", - "description": "Serverless Framework, Apollo Server, and Contentful CMS", - "main": "src/handlers/graphql.ts", - "scripts": { - "dev": "sls offline start", - "test": "npm run codegen && jest", - "lint": "eslint . --ext .ts", - "deploy": "sls deploy", - "format": "prettier --write \"**/*.{ts,js,json,md}\"", - "ts:check": "tsc --noEmit", - "codegen": "graphql-codegen --config codegen.ts", - "db:seed": "npm run codegen && ts-node ./scripts/seedData.ts" - }, - "keywords": [ - "serverless", - "apollo-server", - "contentful", - "jest", - "typescript", - "redis", - "aws-sqs" - ], - "author": "This Dot Labs", - "license": "MIT", - "dependencies": { - "@apollo/server": "4.3.0", - "@as-integrations/aws-lambda": "1.2.1", - "aws-sdk": "2.1306.0", - "contentful": "^10.6.9", - "contentful-management": "10.26.0", - "graphql": "16.6.0", - "graphql-tag": "2.12.6", - "lodash": "^4.17.21", - "serverless": "3.26.0" - }, - "devDependencies": { - "@aws-sdk/types": "3.267.0", - "@graphql-codegen/cli": "2.16.4", - "@graphql-codegen/introspection": "2.2.3", - "@graphql-codegen/typescript": "2.8.7", - "@graphql-codegen/typescript-resolvers": "2.7.12", - "@graphql-tools/executor": "0.0.12", - "@graphql-tools/merge": "8.3.15", - "@types/aws-lambda": "8.10.109", - "@types/jest": "29.2.5", - "@types/node": "18.11.18", - "@typescript-eslint/eslint-plugin": "5.48.2", - "@typescript-eslint/parser": "5.48.2", - "dotenv": "16.0.3", - "eslint": "8.32.0", - "jest": "29.3.1", - "prettier": "2.8.3", - "serverless-dotenv-plugin": "4.0.2", - "serverless-offline": "12.0.4", - "serverless-plugin-typescript": "^2.1.5", - "serverless-tscpaths": "^0.0.8", - "ts-jest": "29.0.5", - "ts-node": "10.9.1", - "typescript": "4.9.4" - } + "name": "movies-api", + "version": "0.1.0", + "description": "Serverless Framework, Apollo Server, and Contentful CMS", + "main": "src/handlers/graphql.ts", + "scripts": { + "dev": "sls offline start", + "test": "npm run codegen && jest", + "lint": "eslint . --ext .ts", + "deploy": "sls deploy", + "format": "prettier --write \"**/*.{ts,js,json,md}\"", + "ts:check": "tsc --noEmit", + "codegen": "graphql-codegen --config codegen.ts", + "db:seed": "npm run codegen && ts-node -r tsconfig-paths/register ./scripts/seedData.ts" + }, + "keywords": [ + "serverless", + "apollo-server", + "contentful", + "jest", + "typescript", + "redis", + "aws-sqs" + ], + "author": "This Dot Labs", + "license": "MIT", + "dependencies": { + "@apollo/server": "4.3.0", + "@as-integrations/aws-lambda": "1.2.1", + "aws-sdk": "2.1306.0", + "contentful": "^10.6.9", + "contentful-management": "10.26.0", + "graphql": "16.6.0", + "graphql-tag": "2.12.6", + "lodash": "^4.17.21", + "serverless": "3.26.0" + }, + "devDependencies": { + "@aws-sdk/types": "3.267.0", + "@graphql-codegen/cli": "2.16.4", + "@graphql-codegen/introspection": "2.2.3", + "@graphql-codegen/typescript": "2.8.7", + "@graphql-codegen/typescript-resolvers": "2.7.12", + "@graphql-tools/executor": "0.0.12", + "@graphql-tools/merge": "8.3.15", + "@types/aws-lambda": "8.10.109", + "@types/jest": "29.2.5", + "@types/node": "18.11.18", + "@typescript-eslint/eslint-plugin": "5.48.2", + "@typescript-eslint/parser": "5.48.2", + "dotenv": "16.0.3", + "eslint": "8.32.0", + "jest": "29.3.1", + "prettier": "2.8.3", + "serverless-dotenv-plugin": "4.0.2", + "serverless-offline": "12.0.4", + "serverless-plugin-typescript": "^2.1.5", + "serverless-tscpaths": "^0.0.8", + "ts-jest": "29.0.5", + "ts-node": "10.9.1", + "tsconfig-paths": "^4.2.0", + "typescript": "4.9.4" + } } diff --git a/scripts/seedData.json b/scripts/seedData.json index 953d24f..9009a7a 100644 --- a/scripts/seedData.json +++ b/scripts/seedData.json @@ -1,10 +1,10 @@ [ { "title": "Inside Out", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOTgxMDQwMDk0OF5BMl5BanBnXkFtZTgwNjU5OTg2NDE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOTgxMDQwMDk0OF5BMl5BanBnXkFtZTgwNjU5OTg2NDE@._V1_.jpg", "summary": "After young Riley is uprooted from her Midwest life and moved to San Francisco, her emotions - Joy, Fear, Anger, Disgust, and Sadness - conflict on how best to navigate a new city, house, and school.", "duration": "PT1H35M", - "director": [ + "directors": [ "Pete Docter", "Ronnie Del Carmen" ], @@ -19,7 +19,7 @@ "Comedy" ], "datePublished": "2015-06-19", - "rating": "PG", + "rating": "G", "ratingValue": 8.1, "bestRating": 10, "worstRating": 1, @@ -31,10 +31,10 @@ }, { "title": "Coco", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYjQ5NjM0Y2YtNjZkNC00ZDhkLWJjMWItN2QyNzFkMDE3ZjAxXkEyXkFqcGdeQXVyODIxMzk5NjA@._V1_.jpg", - "summary": "Aspiring musician Miguel, confronted with his family's ancestral ban on music, enters the Land of the Dead to find his great-great-grandfather, a legendary singer.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYjQ5NjM0Y2YtNjZkNC00ZDhkLWJjMWItN2QyNzFkMDE3ZjAxXkEyXkFqcGdeQXVyODIxMzk5NjA@._V1_.jpg", + "summary": "Aspiring musician Miguel, confronted with his family's ancestral ban on music, enters the Land of the Dead to find his great-great-grandfather, a legendary singer.", "duration": "PT1H45M", - "director": [ + "directors": [ "Lee Unkrich", "Adrian Molina" ], @@ -61,10 +61,10 @@ }, { "title": "Incredibles 2", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTEzNzY0OTg0NTdeQTJeQWpwZ15BbWU4MDU3OTg3MjUz._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTEzNzY0OTg0NTdeQTJeQWpwZ15BbWU4MDU3OTg3MjUz._V1_.jpg", "summary": "The Incredibles family takes on a new mission which involves a change in family roles: Bob Parr (Mr. Incredible) must manage the house while his wife Helen (Elastigirl) goes out to save the world.", "duration": "PT1H58M", - "director": [ + "directors": [ "Brad Bird" ], "mainActors": [ @@ -88,10 +88,10 @@ }, { "title": "Snow White and the Seven Dwarfs", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTQwMzE2Mzc4M15BMl5BanBnXkFtZTcwMTE4NTc1Nw@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTQwMzE2Mzc4M15BMl5BanBnXkFtZTcwMTE4NTc1Nw@@._V1_.jpg", "summary": "Exiled into the dangerous forest by her wicked stepmother, a princess is rescued by seven dwarf miners who make her part of their household.", "duration": "PT1H23M", - "director": [ + "directors": [ "William Cottrell", "David Hand", "Wilfred Jackson" @@ -107,7 +107,7 @@ "Family" ], "datePublished": "1938-02-04", - "rating": "Approved", + "rating": "G", "ratingValue": 7.6, "bestRating": 10, "worstRating": 1, @@ -119,10 +119,10 @@ }, { "title": "Zootopia", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOTMyMjEyNzIzMV5BMl5BanBnXkFtZTgwNzIyNjU0NzE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOTMyMjEyNzIzMV5BMl5BanBnXkFtZTgwNzIyNjU0NzE@._V1_.jpg", "summary": "In a city of anthropomorphic animals, a rookie bunny cop and a cynical con artist fox must work together to uncover a conspiracy.", "duration": "PT1H48M", - "director": [ + "directors": [ "Byron Howard", "Rich Moore", "Jared Bush" @@ -138,7 +138,7 @@ "Comedy" ], "datePublished": "2016-03-04", - "rating": "PG", + "rating": "G", "ratingValue": 8, "bestRating": 10, "worstRating": 1, @@ -150,10 +150,10 @@ }, { "title": "Toy Story 2", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMWM5ZDcxMTYtNTEyNS00MDRkLWI3YTItNThmMGExMWY4NDIwXkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMWM5ZDcxMTYtNTEyNS00MDRkLWI3YTItNThmMGExMWY4NDIwXkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_.jpg", "summary": "When Woody is stolen by a toy collector, Buzz and his friends set out on a rescue mission to save Woody before he becomes a museum toy property with his roundup gang Jessie, Prospector, and Bullseye.", "duration": "PT1H32M", - "director": [ + "directors": [ "John Lasseter", "Ash Brannon", "Lee Unkrich" @@ -181,10 +181,10 @@ }, { "title": "Up", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYjBkM2RjMzItM2M3Ni00N2NjLWE3NzMtMGY4MzE4MDAzMTRiXkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYjBkM2RjMzItM2M3Ni00N2NjLWE3NzMtMGY4MzE4MDAzMTRiXkEyXkFqcGdeQXVyNDUzOTQ5MjY@._V1_.jpg", "summary": "78-year-old Carl Fredricksen travels to Paradise Falls in his house equipped with balloons, inadvertently taking a young stowaway.", "duration": "PT1H36M", - "director": [ + "directors": [ "Pete Docter", "Bob Peterson" ], @@ -199,7 +199,7 @@ "Comedy" ], "datePublished": "2009-05-29", - "rating": "PG", + "rating": "G", "ratingValue": 8.3, "bestRating": 10, "worstRating": 1, @@ -211,10 +211,10 @@ }, { "title": "Toy Story 3", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTgxOTY4Mjc0MF5BMl5BanBnXkFtZTcwNTA4MDQyMw@@._V1_.jpg", - "summary": "The toys are mistakenly delivered to a day-care center instead of the attic right before Andy leaves for college, and it's up to Woody to convince the other toys that they weren't abandoned and to return home.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTgxOTY4Mjc0MF5BMl5BanBnXkFtZTcwNTA4MDQyMw@@._V1_.jpg", + "summary": "The toys are mistakenly delivered to a day-care center instead of the attic right before Andy leaves for college, and it's up to Woody to convince the other toys that they weren't abandoned and to return home.", "duration": "PT1H43M", - "director": [ + "directors": [ "Lee Unkrich" ], "mainActors": [ @@ -240,10 +240,10 @@ }, { "title": "Finding Nemo", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZmYxZjg3OWEtNzg5Yi00M2YzLWI1YzYtYTQ0NTgwNzhjN2E1XkEyXkFqcGdeQXVyNDUyOTg3Njg@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZmYxZjg3OWEtNzg5Yi00M2YzLWI1YzYtYTQ0NTgwNzhjN2E1XkEyXkFqcGdeQXVyNDUyOTg3Njg@._V1_.jpg", "summary": "After his son is captured in the Great Barrier Reef and taken to Sydney, a timid clownfish sets out on a journey to bring him home.", "duration": "PT1H40M", - "director": [ + "directors": [ "Andrew Stanton", "Lee Unkrich" ], @@ -270,17 +270,17 @@ }, { "title": "Finding Dory", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYWVmYTcwZDYtYzNmNC00M2U2LWFjZWYtOWRlY2NiNjc5ZjdiXkEyXkFqcGdeQXVyNjY5Mjg5MjA@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYWVmYTcwZDYtYzNmNC00M2U2LWFjZWYtOWRlY2NiNjc5ZjdiXkEyXkFqcGdeQXVyNjY5Mjg5MjA@._V1_.jpg", "summary": "Friendly but forgetful blue tang Dory begins a search for her long-lost parents and everyone learns a few things about the real meaning of family along the way.", "duration": "PT1H37M", - "director": [ + "directors": [ "Andrew Stanton", "Angus MacLane" ], "mainActors": [ "Ellen DeGeneres", "Albert Brooks", - "Ed O'Neill" + "Ed O'Neill" ], "genres": [ "Animation", @@ -288,7 +288,7 @@ "Comedy" ], "datePublished": "2016-06-17", - "rating": "PG", + "rating": "G", "ratingValue": 7.2, "bestRating": 10, "worstRating": 1, @@ -299,10 +299,10 @@ }, { "title": "Pinocchio", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTU4Mzk3ODIyOF5BMl5BanBnXkFtZTgwODgyNzk2NjE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTU4Mzk3ODIyOF5BMl5BanBnXkFtZTgwODgyNzk2NjE@._V1_.jpg", "summary": "A living puppet, with the help of a cricket as his conscience, must prove himself worthy to become a real boy.", "duration": "PT1H28M", - "director": [ + "directors": [ "Norman Ferguson", "T. Hee", "Wilfred Jackson" @@ -317,7 +317,7 @@ "Adventure", "Comedy" ], - "datePublished": "1940-02-23", + "datePublished": "1940-06-22", "rating": "G", "ratingValue": 7.5, "bestRating": 10, @@ -330,16 +330,16 @@ }, { "title": "Moana", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjI4MzU5NTExNF5BMl5BanBnXkFtZTgwNzY1MTEwMDI@._V1_.jpg", - "summary": "In Ancient Polynesia, when a terrible curse incurred by the Demigod Maui reaches Moana's island, she answers the Ocean's call to seek out the Demigod to set things right.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjI4MzU5NTExNF5BMl5BanBnXkFtZTgwNzY1MTEwMDI@._V1_.jpg", + "summary": "In Ancient Polynesia, when a terrible curse incurred by the Demigod Maui reaches Moana's island, she answers the Ocean's call to seek out the Demigod to set things right.", "duration": "PT1H47M", - "director": [ + "directors": [ "Ron Clements", "John Musker", "Don Hall" ], "mainActors": [ - "Auli'i Cravalho", + "Auli'i Cravalho", "Dwayne Johnson", "Rachel House" ], @@ -349,7 +349,7 @@ "Comedy" ], "datePublished": "2016-11-23", - "rating": "PG", + "rating": "G", "ratingValue": 7.6, "bestRating": 10, "worstRating": 1, @@ -361,10 +361,10 @@ }, { "title": "Toy Story", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMDU2ZWJlMjktMTRhMy00ZTA5LWEzNDgtYmNmZTEwZTViZWJkXkEyXkFqcGdeQXVyNDQ2OTk4MzI@._V1_.jpg", - "summary": "A cowboy doll is profoundly threatened and jealous when a new spaceman action figure supplants him as top toy in a boy's bedroom.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMDU2ZWJlMjktMTRhMy00ZTA5LWEzNDgtYmNmZTEwZTViZWJkXkEyXkFqcGdeQXVyNDQ2OTk4MzI@._V1_.jpg", + "summary": "A cowboy doll is profoundly threatened and jealous when a new spaceman action figure supplants him as top toy in a boy's bedroom.", "duration": "PT1H21M", - "director": [ + "directors": [ "John Lasseter" ], "mainActors": [ @@ -390,10 +390,10 @@ }, { "title": "Kubo and the Two Strings", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjA2Mzg2NDMzNl5BMl5BanBnXkFtZTgwMjcwODUzOTE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjA2Mzg2NDMzNl5BMl5BanBnXkFtZTgwMjcwODUzOTE@._V1_.jpg", "summary": "A young boy named Kubo must locate a magical suit of armour worn by his late father in order to defeat a vengeful spirit from the past.", "duration": "PT1H41M", - "director": [ + "directors": [ "Travis Knight" ], "mainActors": [ @@ -419,10 +419,10 @@ }, { "title": "How to Train Your Dragon", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjA5NDQyMjc2NF5BMl5BanBnXkFtZTcwMjg5ODcyMw@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjA5NDQyMjc2NF5BMl5BanBnXkFtZTcwMjg5ODcyMw@@._V1_.jpg", "summary": "A hapless young Viking who aspires to hunt dragons becomes the unlikely friend of a young dragon himself, and learns there may be more to the creatures than he assumed.", "duration": "PT1H38M", - "director": [ + "directors": [ "Dean DeBlois", "Chris Sanders" ], @@ -449,10 +449,10 @@ }, { "title": "Shaun the Sheep Movie", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOTc1ODY5MTQ1Nl5BMl5BanBnXkFtZTgwMDM5ODI1NjE@._V1_.jpg", - "summary": "When Shaun decides to take the day off and have some fun, he gets a little more action than he bargained for. A mix up with the Farmer, a caravan and a very steep hill lead them all to the Big City and it's up to Shaun and the flo...", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOTc1ODY5MTQ1Nl5BMl5BanBnXkFtZTgwMDM5ODI1NjE@._V1_.jpg", + "summary": "When Shaun decides to take the day off and have some fun, he gets a little more action than he bargained for. A mix up with the Farmer, a caravan and a very steep hill lead them all to the Big City and it's up to Shaun and the flo...", "duration": "PT1H25M", - "director": [ + "directors": [ "Mark Burton", "Richard Starzak" ], @@ -467,7 +467,7 @@ "Comedy" ], "datePublished": "2015-08-05", - "rating": "PG", + "rating": "G", "ratingValue": 7.3, "bestRating": 10, "worstRating": 1, @@ -479,10 +479,10 @@ }, { "title": "Isle of Dogs", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZDQwOWQ2NmUtZThjZi00MGM0LTkzNDctMzcyMjcyOGI1OGRkXkEyXkFqcGdeQXVyMTA3MDk2NDg2._V1_.jpg", - "summary": "Set in Japan, Isle of Dogs follows a boy's odyssey in search of his lost dog.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZDQwOWQ2NmUtZThjZi00MGM0LTkzNDctMzcyMjcyOGI1OGRkXkEyXkFqcGdeQXVyMTA3MDk2NDg2._V1_.jpg", + "summary": "Set in Japan, Isle of Dogs follows a boy's odyssey in search of his lost dog.", "duration": "PT1H41M", - "director": [ + "directors": [ "Wes Anderson" ], "mainActors": [ @@ -495,8 +495,8 @@ "Adventure", "Comedy" ], - "datePublished": "2018-04-13", - "rating": "PG-13", + "datePublished": "2018-03-30", + "rating": "PG", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -508,10 +508,10 @@ }, { "title": "Dumbo", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMmU1NjQ3YjktZGMxYS00N2IwLTllZWQtOGNjYWE4MzgxNzk2XkEyXkFqcGdeQXVyODU2MDg1NzU@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMmU1NjQ3YjktZGMxYS00N2IwLTllZWQtOGNjYWE4MzgxNzk2XkEyXkFqcGdeQXVyODU2MDg1NzU@._V1_.jpg", "summary": "Ridiculed because of his enormous ears, a young circus elephant is assisted by a mouse to achieve his full potential.", "duration": "PT1H4M", - "director": [ + "directors": [ "Samuel Armstrong", "Norman Ferguson", "Wilfred Jackson" @@ -526,7 +526,7 @@ "Adventure", "Drama" ], - "datePublished": "1941-10-31", + "datePublished": "1942-03-31", "rating": "G", "ratingValue": 7.2, "bestRating": 10, @@ -539,10 +539,10 @@ }, { "title": "WALL·E", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjExMTg5OTU0NF5BMl5BanBnXkFtZTcwMjMxMzMzMw@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjExMTg5OTU0NF5BMl5BanBnXkFtZTcwMjMxMzMzMw@@._V1_.jpg", "summary": "In the distant future, a small waste-collecting robot inadvertently embarks on a space journey that will ultimately decide the fate of mankind.", "duration": "PT1H38M", - "director": [ + "directors": [ "Andrew Stanton" ], "mainActors": [ @@ -568,10 +568,10 @@ }, { "title": "The Lego Movie", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTg4MDk1ODExN15BMl5BanBnXkFtZTgwNzIyNjg3MDE@._V1_.jpg", - "summary": "An ordinary LEGO construction worker, thought to be the prophesied as "special", is recruited to join a quest to stop an evil tyrant from gluing the LEGO universe into eternal stasis.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTg4MDk1ODExN15BMl5BanBnXkFtZTgwNzIyNjg3MDE@._V1_.jpg", + "summary": "An ordinary LEGO construction worker, thought to be the prophesied as \"special\", is recruited to join a quest to stop an evil tyrant from gluing the LEGO universe into eternal stasis.", "duration": "PT1H40M", - "director": [ + "directors": [ "Phil Lord", "Christopher Miller" ], @@ -586,7 +586,7 @@ "Adventure" ], "datePublished": "2014-02-07", - "rating": "PG", + "rating": "G", "ratingValue": 7.7, "bestRating": 10, "worstRating": 1, @@ -598,10 +598,10 @@ }, { "title": "Ratatouille", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTMzODU0NTkxMF5BMl5BanBnXkFtZTcwMjQ4MzMzMw@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjRiNzIyNjYtMDdhZS00Yjc5LWFlZGEtZjE1NTFjMDdlNDcyXkEyXkFqcGdeQXVyMTEzNjc3MDQ5._V1_.jpg", "summary": "A rat who can cook makes an unusual alliance with a young kitchen worker at a famous Paris restaurant.", "duration": "PT1H51M", - "director": [ + "directors": [ "Brad Bird", "Jan Pinkava" ], @@ -615,7 +615,7 @@ "Adventure", "Comedy" ], - "datePublished": "2007-06-27", + "datePublished": "2007-06-29", "rating": "G", "ratingValue": 8.1, "bestRating": 10, @@ -628,10 +628,10 @@ }, { "title": "The Incredibles", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTY5OTU0OTc2NV5BMl5BanBnXkFtZTcwMzU4MDcyMQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTY5OTU0OTc2NV5BMl5BanBnXkFtZTcwMzU4MDcyMQ@@._V1_.jpg", "summary": "While trying to lead a quiet suburban life, a family of undercover superheroes are forced into action to save the world.", "duration": "PT1H55M", - "director": [ + "directors": [ "Brad Bird" ], "mainActors": [ @@ -645,7 +645,7 @@ "Adventure" ], "datePublished": "2004-11-05", - "rating": "PG", + "rating": "G", "ratingValue": 8, "bestRating": 10, "worstRating": 1, @@ -655,10 +655,10 @@ }, { "title": "Omohide poro poro", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTY5NjI2MjQxMl5BMl5BanBnXkFtZTgwMDA2MzM2NzE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTY5NjI2MjQxMl5BMl5BanBnXkFtZTgwMDA2MzM2NzE@._V1_.jpg", "summary": "A twenty-seven-year-old office worker travels to the countryside while reminiscing about her childhood in Tokyo.", "duration": "PT1H59M", - "director": [ + "directors": [ "Isao Takahata" ], "mainActors": [ @@ -671,7 +671,7 @@ "Drama", "Romance" ], - "datePublished": "2016-02-26", + "datePublished": "1991-07-20", "rating": "PG", "ratingValue": 7.6, "bestRating": 10, @@ -684,10 +684,10 @@ }, { "title": "Yellow Submarine", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMGExODFmMjQtZTgxOC00ZDE0LWJmM2MtOTQzM2YzNDZlMzNmL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMGExODFmMjQtZTgxOC00ZDE0LWJmM2MtOTQzM2YzNDZlMzNmL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", "summary": "The Beatles agree to accompany Captain Fred in his yellow submarine and go to Pepperland to free it from the music-hating Blue Meanies.", - "duration": "PT1H25M", - "director": [ + "duration": "PT1H28M", + "directors": [ "George Dunning" ], "mainActors": [ @@ -700,7 +700,7 @@ "Adventure", "Comedy" ], - "datePublished": "1968-11-13", + "datePublished": "1968-07-17", "rating": "G", "ratingValue": 7.4, "bestRating": 10, @@ -713,15 +713,15 @@ }, { "title": "Beauty and the Beast", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMzE5MDM1NDktY2I0OC00YWI5LTk2NzUtYjczNDczOWQxYjM0XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", - "summary": "A prince cursed to spend his days as a hideous monster sets out to regain his humanity by earning a young woman's love.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMzE5MDM1NDktY2I0OC00YWI5LTk2NzUtYjczNDczOWQxYjM0XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "summary": "A prince cursed to spend his days as a hideous monster sets out to regain his humanity by earning a young woman's love.", "duration": "PT1H24M", - "director": [ + "directors": [ "Gary Trousdale", "Kirk Wise" ], "mainActors": [ - "Paige O'Hara", + "Paige O'Hara", "Robby Benson", "Jesse Corti" ], @@ -743,10 +743,10 @@ }, { "title": "Chicken Run", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNDgxNjZlZDYtZGJmZC00Mjg0LWEwYzctYWQ0MWFjNTM3ZmM4XkEyXkFqcGdeQXVyNTM5NzI0NDY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNDgxNjZlZDYtZGJmZC00Mjg0LWEwYzctYWQ0MWFjNTM3ZmM4XkEyXkFqcGdeQXVyNTM5NzI0NDY@._V1_.jpg", "summary": "When a cockerel apparently flies into a chicken farm, the chickens see him as an opportunity to escape their evil owners.", "duration": "PT1H24M", - "director": [ + "directors": [ "Peter Lord", "Nick Park" ], @@ -773,10 +773,10 @@ }, { "title": "The Lego Batman Movie", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTcyNTEyOTY0M15BMl5BanBnXkFtZTgwOTAyNzU3MDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTcyNTEyOTY0M15BMl5BanBnXkFtZTgwOTAyNzU3MDI@._V1_.jpg", "summary": "A cooler-than-ever Bruce Wayne must deal with the usual suspects as they plan to rule Gotham City, while discovering that he has accidentally adopted a teenage orphan who wishes to become his sidekick.", "duration": "PT1H44M", - "director": [ + "directors": [ "Chris McKay" ], "mainActors": [ @@ -790,7 +790,7 @@ "Adventure" ], "datePublished": "2017-02-10", - "rating": "PG", + "rating": "G", "ratingValue": 7.3, "bestRating": 10, "worstRating": 1, @@ -802,16 +802,16 @@ }, { "title": "The Nightmare Before Christmas", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNWE4OTNiM2ItMjY4Ni00ZTViLWFiZmEtZGEyNGY2ZmNlMzIyXkEyXkFqcGdeQXVyMDU5NDcxNw@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNWE4OTNiM2ItMjY4Ni00ZTViLWFiZmEtZGEyNGY2ZmNlMzIyXkEyXkFqcGdeQXVyMDU5NDcxNw@@._V1_.jpg", "summary": "Jack Skellington, king of Halloween Town, discovers Christmas Town, but his attempts to bring Christmas to his home causes confusion.", "duration": "PT1H16M", - "director": [ + "directors": [ "Henry Selick" ], "mainActors": [ "Danny Elfman", "Chris Sarandon", - "Catherine O'Hara" + "Catherine O'Hara" ], "genres": [ "Animation", @@ -831,10 +831,10 @@ }, { "title": "Monsters, Inc.", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTY1NTI0ODUyOF5BMl5BanBnXkFtZTgwNTEyNjQ0MDE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTY1NTI0ODUyOF5BMl5BanBnXkFtZTgwNTEyNjQ0MDE@._V1_.jpg", "summary": "In order to power the city, monsters have to scare children so that they scream. However, the children are toxic to the monsters, and after a child gets through, two monsters realize things may not be what they think.", "duration": "PT1H32M", - "director": [ + "directors": [ "Pete Docter", "David Silverman", "Lee Unkrich" @@ -862,10 +862,10 @@ }, { "title": "The Iron Giant", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYzBjZTNkMzQtZmNkOC00Yzk0LTljMjktZjk3YWVlZjY3NTk2XkEyXkFqcGdeQXVyMTUzMDUzNTI3._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYzBjZTNkMzQtZmNkOC00Yzk0LTljMjktZjk3YWVlZjY3NTk2XkEyXkFqcGdeQXVyMTUzMDUzNTI3._V1_.jpg", "summary": "A young boy befriends a giant robot from outer space that a paranoid government agent wants to destroy.", "duration": "PT1H26M", - "director": [ + "directors": [ "Brad Bird" ], "mainActors": [ @@ -891,10 +891,10 @@ }, { "title": "Tower", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNjI1Nzg3NTgyOV5BMl5BanBnXkFtZTgwNzIwMjIxMDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BODMxMGYzZTAtMjhhZS00OWZhLTgzOGQtMDMxOGI0MTI2ZTE1XkEyXkFqcGdeQXVyMTA4NjE0NjEy._V1_.jpg", "summary": "Animation, testimony, and archival footage combine to relate the events of August 1, 1966 when a gunman opened fire from the University of Texas clock tower, killing 16 people.", "duration": "PT1H22M", - "director": [ + "directors": [ "Keith Maitland" ], "mainActors": [ @@ -918,10 +918,10 @@ }, { "title": "Anomalisa", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTkyMzI2MzQ1N15BMl5BanBnXkFtZTgwNDg0MzQxNzE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTkyMzI2MzQ1N15BMl5BanBnXkFtZTgwNDg0MzQxNzE@._V1_.jpg", "summary": "A man crippled by the mundanity of his life experiences something out of the ordinary.", "duration": "PT1H30M", - "director": [ + "directors": [ "Duke Johnson", "Charlie Kaufman" ], @@ -936,7 +936,7 @@ "Drama" ], "datePublished": "2016-03-11", - "rating": "R", + "rating": "14A", "ratingValue": 7.3, "bestRating": 10, "worstRating": 1, @@ -946,10 +946,10 @@ }, { "title": "Song of the Sea", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTQ2MDMwNjEwNV5BMl5BanBnXkFtZTgwOTkxMzI0MzE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTQ2MDMwNjEwNV5BMl5BanBnXkFtZTgwOTkxMzI0MzE@._V1_.jpg", "summary": "Ben, a young Irish boy, and his little sister Saoirse, a girl who can turn into a seal, go on an adventure to free the fairies and save the spirit world.", "duration": "PT1H33M", - "director": [ + "directors": [ "Tomm Moore" ], "mainActors": [ @@ -962,8 +962,8 @@ "Adventure", "Drama" ], - "datePublished": "2015-11-20", - "rating": "PG", + "datePublished": "2014-12-10", + "rating": "G", "ratingValue": 8, "bestRating": 10, "worstRating": 1, @@ -974,10 +974,10 @@ }, { "title": "The Lion King", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYTYxNGMyZTYtMjE3MS00MzNjLWFjNmYtMDk3N2FmM2JiM2M1XkEyXkFqcGdeQXVyNjY5NDU4NzI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYTYxNGMyZTYtMjE3MS00MzNjLWFjNmYtMDk3N2FmM2JiM2M1XkEyXkFqcGdeQXVyNjY5NDU4NzI@._V1_.jpg", "summary": "Lion prince Simba and his father are targeted by his bitter uncle, who wants to ascend the throne himself.", "duration": "PT1H28M", - "director": [ + "directors": [ "Roger Allers", "Rob Minkoff" ], @@ -1004,10 +1004,10 @@ }, { "title": "Who Framed Roger Rabbit", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMDhiOTM2OTctODk3Ny00NWI4LThhZDgtNGQ4NjRiYjFkZGQzXkEyXkFqcGdeQXVyMTA0MjU0Ng@@._V1_.jpg", - "summary": "A toon-hating detective is a cartoon rabbit's only hope to prove his innocence when he is accused of murder.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMDhiOTM2OTctODk3Ny00NWI4LThhZDgtNGQ4NjRiYjFkZGQzXkEyXkFqcGdeQXVyMTA0MjU0Ng@@._V1_.jpg", + "summary": "A toon-hating detective is a cartoon rabbit's only hope to prove his innocence when he is accused of murder.", "duration": "PT1H44M", - "director": [ + "directors": [ "Robert Zemeckis" ], "mainActors": [ @@ -1033,10 +1033,10 @@ }, { "title": "Vals Im Bashir", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNjM2OTI3NzQyNl5BMl5BanBnXkFtZTcwNjkzNzQ5MQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNjM2OTI3NzQyNl5BMl5BanBnXkFtZTcwNjkzNzQ5MQ@@._V1_.jpg", "summary": "An Israeli film director interviews fellow veterans of the 1982 invasion of Lebanon to reconstruct his own memories of his term of service in that conflict.", "duration": "PT1H30M", - "director": [ + "directors": [ "Ari Folman" ], "mainActors": [ @@ -1060,10 +1060,10 @@ }, { "title": "Persepolis", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMGRkZThmYzEtYjQxZC00OWEzLThjYjAtYzFkMjY0NGZkZWI4XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMGRkZThmYzEtYjQxZC00OWEzLThjYjAtYzFkMjY0NGZkZWI4XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", "summary": "A precocious and outspoken Iranian girl grows up during the Islamic Revolution.", "duration": "PT1H36M", - "director": [ + "directors": [ "Vincent Paronnaud", "Marjane Satrapi" ], @@ -1077,8 +1077,8 @@ "Biography", "Drama" ], - "datePublished": "2008-02-22", - "rating": "PG-13", + "datePublished": "2007-06-27", + "rating": "14A", "ratingValue": 8, "bestRating": 10, "worstRating": 1, @@ -1089,10 +1089,10 @@ }, { "title": "The Curse of the Were-Rabbit", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZmExY2Y3NGQtMzg5ZC00MGY1LTk3ZjktNWYyYzYwMTA1MTUwXkEyXkFqcGdeQXVyNjk1Njg5NTA@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZmExY2Y3NGQtMzg5ZC00MGY1LTk3ZjktNWYyYzYwMTA1MTUwXkEyXkFqcGdeQXVyNjk1Njg5NTA@._V1_.jpg", "summary": "Wallace and his loyal dog, Gromit, set out to discover the mystery behind the garden sabotage that plagues their village and threatens the annual giant vegetable growing contest.", "duration": "PT1H25M", - "director": [ + "directors": [ "Steve Box", "Nick Park" ], @@ -1119,10 +1119,10 @@ }, { "title": "Fantasia", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYjhlYzNkOGEtZjNkZC00OTQ4LWJiMzEtMTM3YzBiM2FkMDUxXkEyXkFqcGdeQXVyNzY1NDgwNjQ@._V1_.jpg", - "summary": "A series of eight famous pieces of classical music, conducted by Leopold Stokowski and interpreted in animation by Walt Disney's team of artists.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYjhlYzNkOGEtZjNkZC00OTQ4LWJiMzEtMTM3YzBiM2FkMDUxXkEyXkFqcGdeQXVyNzY1NDgwNjQ@._V1_.jpg", + "summary": "A series of eight famous pieces of classical music, conducted by Leopold Stokowski and interpreted in animation by Walt Disney's team of artists.", "duration": "PT2H4M", - "director": [ + "directors": [ "James Algar", "Samuel Armstrong", "Ford Beebe Jr." @@ -1137,7 +1137,7 @@ "Family", "Fantasy" ], - "datePublished": "1941-09-19", + "datePublished": "1946-08-01", "rating": "G", "ratingValue": 7.7, "bestRating": 10, @@ -1150,10 +1150,10 @@ }, { "title": "Fantastic Mr. Fox", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOGUwYTU4NGEtNDM4MS00NDRjLTkwNmQtOTkwMWMyMjhmMjdlXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_.jpg", - "summary": "An urbane fox cannot resist returning to his farm raiding ways and then must help his community survive the farmers' retaliation.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOGUwYTU4NGEtNDM4MS00NDRjLTkwNmQtOTkwMWMyMjhmMjdlXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_.jpg", + "summary": "An urbane fox cannot resist returning to his farm raiding ways and then must help his community survive the farmers' retaliation.", "duration": "PT1H27M", - "director": [ + "directors": [ "Wes Anderson" ], "mainActors": [ @@ -1179,10 +1179,10 @@ }, { "title": "Aladdin", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZTg5ZTVmM2EtZjdhZC00MzBjLWEwZTYtNWIwZDczYzZkMzA4XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZTg5ZTVmM2EtZjdhZC00MzBjLWEwZTYtNWIwZDczYzZkMzA4XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", "summary": "A kind-hearted street urchin and a power-hungry Grand Vizier vie for a magic lamp that has the power to make their deepest wishes come true.", "duration": "PT1H30M", - "director": [ + "directors": [ "Ron Clements", "John Musker" ], @@ -1196,7 +1196,7 @@ "Adventure", "Comedy" ], - "datePublished": "1992-11-25", + "datePublished": "1992-12-25", "rating": "G", "ratingValue": 8, "bestRating": 10, @@ -1209,10 +1209,10 @@ }, { "title": "Frozen", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTQ1MjQwMTE5OF5BMl5BanBnXkFtZTgwNjk3MTcyMDE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTQ1MjQwMTE5OF5BMl5BanBnXkFtZTgwNjk3MTcyMDE@._V1_.jpg", "summary": "When the newly crowned Queen Elsa accidentally uses her power to turn things into ice to curse her home in infinite winter, her sister Anna teams up with a mountain man, his playful reindeer, and a snowman to change the weather co...", "duration": "PT1H42M", - "director": [ + "directors": [ "Chris Buck", "Jennifer Lee" ], @@ -1227,7 +1227,7 @@ "Comedy" ], "datePublished": "2013-11-27", - "rating": "PG", + "rating": "G", "ratingValue": 7.4, "bestRating": 10, "worstRating": 1, @@ -1239,10 +1239,10 @@ }, { "title": "How to Train Your Dragon 2", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMzMwMTAwODczN15BMl5BanBnXkFtZTgwMDk2NDA4MTE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMzMwMTAwODczN15BMl5BanBnXkFtZTgwMDk2NDA4MTE@._V1_.jpg", "summary": "When Hiccup and Toothless discover an ice cave that is home to hundreds of new wild dragons and the mysterious Dragon Rider, the two friends find themselves at the center of a battle to protect the peace.", "duration": "PT1H42M", - "director": [ + "directors": [ "Dean DeBlois" ], "mainActors": [ @@ -1267,10 +1267,10 @@ }, { "title": "The Breadwinner", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMWM2MzQ4YTAtMTBkZS00ODA1LWFmNTEtMjEwNzk3ZGJiZDc3XkEyXkFqcGdeQXVyMjM4NTM5NDY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMWM2MzQ4YTAtMTBkZS00ODA1LWFmNTEtMjEwNzk3ZGJiZDc3XkEyXkFqcGdeQXVyMjM4NTM5NDY@._V1_.jpg", "summary": "In 2001, Afghanistan is under the control of the Taliban. When her father is captured, a determined young girl disguises herself as a boy in order to provide for her family.", "duration": "PT1H34M", - "director": [ + "directors": [ "Nora Twomey" ], "mainActors": [ @@ -1283,8 +1283,8 @@ "Drama", "Family" ], - "datePublished": "2017-11-17", - "rating": "PG-13", + "datePublished": "2017-12-08", + "rating": "PG", "ratingValue": 7.7, "bestRating": 10, "worstRating": 1, @@ -1295,10 +1295,10 @@ }, { "title": "Coraline", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMzQxNjM5NzkxNV5BMl5BanBnXkFtZTcwMzg5NDMwMg@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMzQxNjM5NzkxNV5BMl5BanBnXkFtZTcwMzg5NDMwMg@@._V1_.jpg", "summary": "An adventurous 11-year-old girl finds another world that is a strangely idealized version of her frustrating home, but it has sinister secrets.", "duration": "PT1H40M", - "director": [ + "directors": [ "Henry Selick" ], "mainActors": [ @@ -1323,10 +1323,10 @@ }, { "title": "The Little Mermaid", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOWUyNDA0ZmItMzg2My00YjJhLTk1N2QtYTAxYTc0NzMzNDI0XkEyXkFqcGdeQXVyMTI5NzUyMTIz._V1_.jpg", - "summary": "A mermaid princess makes a Faustian bargain in an attempt to become human and win a prince's love.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOWUyNDA0ZmItMzg2My00YjJhLTk1N2QtYTAxYTc0NzMzNDI0XkEyXkFqcGdeQXVyMTI5NzUyMTIz._V1_.jpg", + "summary": "A mermaid princess makes a Faustian bargain in an attempt to become human and win a prince's love.", "duration": "PT1H23M", - "director": [ + "directors": [ "Ron Clements", "John Musker" ], @@ -1353,10 +1353,10 @@ }, { "title": "Lady and the Tramp", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYTI1ZDc1OTItM2EzNS00ODMxLWIxYzctOTc5YWNiYzI3NGZiXkEyXkFqcGdeQXVyNDE5MTU2MDE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYTI1ZDc1OTItM2EzNS00ODMxLWIxYzctOTc5YWNiYzI3NGZiXkEyXkFqcGdeQXVyNDE5MTU2MDE@._V1_.jpg", "summary": "The romantic tale of a sheltered uptown Cocker Spaniel dog and a streetwise downtown Mutt.", "duration": "PT1H16M", - "director": [ + "directors": [ "Clyde Geronimi", "Wilfred Jackson", "Hamilton Luske" @@ -1371,7 +1371,7 @@ "Adventure", "Comedy" ], - "datePublished": "1955-06-22", + "datePublished": "1955-09-27", "rating": "G", "ratingValue": 7.3, "bestRating": 10, @@ -1384,10 +1384,10 @@ }, { "title": "Antz", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMzMzMDdlMDktODg4OC00Y2E5LTk1ZjMtNzM2MzIxZGQ0ZGI3XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZDQ4MTExNDMtNDg3Mi00NDZkLTgxODYtM2Q5MDE3NGNlZWMyXkEyXkFqcGdeQXVyNjc5NjEzNA@@._V1_.jpg", "summary": "A rather neurotic ant tries to break from his totalitarian society while trying to win the affection of the princess he loves.", "duration": "PT1H23M", - "director": [ + "directors": [ "Eric Darnell", "Tim Johnson" ], @@ -1402,7 +1402,7 @@ "Comedy" ], "datePublished": "1998-10-02", - "rating": "PG", + "rating": "G", "ratingValue": 6.5, "bestRating": 10, "worstRating": 1, @@ -1414,10 +1414,10 @@ }, { "title": "Les triplettes de Belleville", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMWIyMDk0NGQtODEwNi00N2UwLTgyYTYtZDYwNjYzZjY1OTcwXkEyXkFqcGdeQXVyMTUzMDUzNTI3._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMWIyMDk0NGQtODEwNi00N2UwLTgyYTYtZDYwNjYzZjY1OTcwXkEyXkFqcGdeQXVyMTUzMDUzNTI3._V1_.jpg", "summary": "When her grandson is kidnapped during the Tour de France, Madame Souza and her beloved pooch Bruno team up with the Belleville Sisters--an aged song-and-dance team from the days of Fred Astaire--to rescue him.", - "duration": "PT1H20M", - "director": [ + "duration": "PT1H18M", + "directors": [ "Sylvain Chomet" ], "mainActors": [ @@ -1430,8 +1430,8 @@ "Adventure", "Comedy" ], - "datePublished": "2004-02-13", - "rating": "PG-13", + "datePublished": "2003-06-11", + "rating": "PG", "ratingValue": 7.7, "bestRating": 10, "worstRating": 1, @@ -1441,10 +1441,10 @@ }, { "title": "Bambi", - "posterURL": "https://m.media-amazon.com/images/M/MV5BY2JhMTJmYjYtNTVkYi00OWE3LWJlMjEtOWI4MTFkMjJhMmQ3XkEyXkFqcGdeQXVyNzY1NDgwNjQ@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BY2JhMTJmYjYtNTVkYi00OWE3LWJlMjEtOWI4MTFkMjJhMmQ3XkEyXkFqcGdeQXVyNzY1NDgwNjQ@._V1_.jpg", "summary": "The story of a young deer growing up in the forest.", "duration": "PT1H9M", - "director": [ + "directors": [ "James Algar", "Samuel Armstrong", "David Hand" @@ -1459,7 +1459,7 @@ "Adventure", "Drama" ], - "datePublished": "1942-08-21", + "datePublished": "1945-07-24", "rating": "G", "ratingValue": 7.3, "bestRating": 10, @@ -1472,10 +1472,10 @@ }, { "title": "Tonari no Totoro", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYzJjMTYyMjQtZDI0My00ZjE2LTkyNGYtOTllNGQxNDMyZjE0XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYzJjMTYyMjQtZDI0My00ZjE2LTkyNGYtOTllNGQxNDMyZjE0XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_.jpg", "summary": "When two girls move to the country to be near their ailing mother, they have adventures with the wondrous forest spirits who live nearby.", "duration": "PT1H26M", - "director": [ + "directors": [ "Hayao Miyazaki" ], "mainActors": [ @@ -1488,7 +1488,7 @@ "Comedy", "Family" ], - "datePublished": "1990-07-13", + "datePublished": "1988-04-16", "rating": "G", "ratingValue": 8.1, "bestRating": 10, @@ -1499,10 +1499,10 @@ }, { "title": "Big Hero 6", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMDliOTIzNmUtOTllOC00NDU3LWFiNjYtMGM0NDc1YTMxNjYxXkEyXkFqcGdeQXVyNTM3NzExMDQ@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMDliOTIzNmUtOTllOC00NDU3LWFiNjYtMGM0NDc1YTMxNjYxXkEyXkFqcGdeQXVyNTM3NzExMDQ@._V1_.jpg", "summary": "A special bond develops between plus-sized inflatable robot Baymax and prodigy Hiro Hamada, who together team up with a group of friends to form a band of high-tech heroes.", "duration": "PT1H42M", - "director": [ + "directors": [ "Don Hall", "Chris Williams" ], @@ -1517,7 +1517,7 @@ "Adventure" ], "datePublished": "2014-11-07", - "rating": "PG", + "rating": "G", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -1529,10 +1529,10 @@ }, { "title": "Arthur Christmas", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNTczMjMwMTE2OV5BMl5BanBnXkFtZTcwNDU0NTAwNw@@._V1_.jpg", - "summary": "Santa's clumsy son Arthur sets out on a mission with Grandsanta to give out a present they misplaced to a young girl in less than two hours.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNTczMjMwMTE2OV5BMl5BanBnXkFtZTcwNDU0NTAwNw@@._V1_.jpg", + "summary": "Santa's clumsy son Arthur sets out on a mission with Grandsanta to give out a present they misplaced to a young girl in less than two hours.", "duration": "PT1H37M", - "director": [ + "directors": [ "Sarah Smith", "Barry Cook" ], @@ -1547,7 +1547,7 @@ "Comedy" ], "datePublished": "2011-11-23", - "rating": "PG", + "rating": "G", "ratingValue": 7.1, "bestRating": 10, "worstRating": 1, @@ -1557,11 +1557,11 @@ ] }, { - "title": "A Bug's Life", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNThmZGY4NzgtMTM4OC00NzNkLWEwNmEtMjdhMGY5YTc1NDE4XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", - "summary": "A misfit ant, looking for "warriors" to save his colony from greedy grasshoppers, recruits a group of bugs that turn out to be an inept circus troupe.", + "title": "A Bug's Life", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNThmZGY4NzgtMTM4OC00NzNkLWEwNmEtMjdhMGY5YTc1NDE4XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "summary": "A misfit ant, looking for \"warriors\" to save his colony from greedy grasshoppers, recruits a group of bugs that turn out to be an inept circus troupe.", "duration": "PT1H35M", - "director": [ + "directors": [ "John Lasseter", "Andrew Stanton" ], @@ -1588,10 +1588,10 @@ }, { "title": "Mary and Max.", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMDgzYjQwMDMtNGUzYi00MTRmLWIyMGMtNjE1OGZkNzY2YWIzL2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMDgzYjQwMDMtNGUzYi00MTRmLWIyMGMtNjE1OGZkNzY2YWIzL2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", "summary": "A tale of friendship between two unlikely pen pals: Mary, a lonely, eight-year-old girl living in the suburbs of Melbourne, and Max, a forty-four-year old, severely obese man living in New York.", "duration": "PT1H32M", - "director": [ + "directors": [ "Adam Elliot" ], "mainActors": [ @@ -1605,7 +1605,7 @@ "Drama" ], "datePublished": "2009-04-09", - "rating": "Not Rated", + "rating": "G", "ratingValue": 8.1, "bestRating": 10, "worstRating": 1, @@ -1615,10 +1615,10 @@ }, { "title": "Teen Titans Go! To the Movies", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOTZhMTIwZDUtYjZjZS00MmViLTg3NzEtNWE5NzI1NDUwNDJmXkEyXkFqcGdeQXVyODQxMTI4MjM@._V1_.jpg", - "summary": "A villain's maniacal plan for world domination sidetracks five teenage superheroes who dream of Hollywood stardom.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOTZhMTIwZDUtYjZjZS00MmViLTg3NzEtNWE5NzI1NDUwNDJmXkEyXkFqcGdeQXVyODQxMTI4MjM@._V1_.jpg", + "summary": "A villain's maniacal plan for world domination sidetracks five teenage superheroes who dream of Hollywood stardom.", "duration": "PT1H24M", - "director": [ + "directors": [ "Aaron Horvath", "Peter Rida Michail" ], @@ -1645,10 +1645,10 @@ }, { "title": "Bolt", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNDQyNDE5NjQ1N15BMl5BanBnXkFtZTcwMDExMTAwMg@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNDQyNDE5NjQ1N15BMl5BanBnXkFtZTcwMDExMTAwMg@@._V1_.jpg", "summary": "The canine star of a fictional sci-fi/action show that believes his powers are real embarks on a cross country trek to save his co-star from a threat he believes is just as real.", "duration": "PT1H36M", - "director": [ + "directors": [ "Byron Howard", "Chris Williams" ], @@ -1663,7 +1663,7 @@ "Comedy" ], "datePublished": "2008-11-21", - "rating": "PG", + "rating": "G", "ratingValue": 6.8, "bestRating": 10, "worstRating": 1, @@ -1674,10 +1674,10 @@ }, { "title": "Shrek 2", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMDJhMGRjN2QtNDUxYy00NGM3LThjNGQtMmZiZTRhNjM4YzUxL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", - "summary": "Shrek and Fiona travel to the Kingdom of Far Far Away, where Fiona's parents are King and Queen, to celebrate their marriage. When they arrive, they find they are not as welcome as they thought they would be.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMDJhMGRjN2QtNDUxYy00NGM3LThjNGQtMmZiZTRhNjM4YzUxL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "summary": "Shrek and Fiona travel to the Kingdom of Far Far Away, where Fiona's parents are King and Queen, to celebrate their marriage. When they arrive, they find they are not as welcome as they thought they would be.", "duration": "PT1H33M", - "director": [ + "directors": [ "Andrew Adamson", "Kelly Asbury", "Conrad Vernon" @@ -1693,7 +1693,7 @@ "Comedy" ], "datePublished": "2004-05-19", - "rating": "PG", + "rating": "G", "ratingValue": 7.3, "bestRating": 10, "worstRating": 1, @@ -1705,10 +1705,10 @@ }, { "title": "Tangled", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTAxNDYxMjg0MjNeQTJeQWpwZ15BbWU3MDcyNTk2OTM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTAxNDYxMjg0MjNeQTJeQWpwZ15BbWU3MDcyNTk2OTM@._V1_.jpg", "summary": "The magically long-haired Rapunzel has spent her entire life in a tower, but now that a runaway thief has stumbled upon her, she is about to discover the world for the first time, and who she really is.", "duration": "PT1H40M", - "director": [ + "directors": [ "Nathan Greno", "Byron Howard" ], @@ -1723,7 +1723,7 @@ "Comedy" ], "datePublished": "2010-11-24", - "rating": "PG", + "rating": "G", "ratingValue": 7.7, "bestRating": 10, "worstRating": 1, @@ -1735,10 +1735,10 @@ }, { "title": "The Simpsons Movie", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNjc4NmQyNGUtMDg4NS00ZTZkLWI3ODQtMGJmYThiYjQxNGRiXkEyXkFqcGdeQXVyMTA0MTM5NjI2._V1_.jpg", - "summary": "After Homer pollutes the town's water supply, Springfield is encased in a gigantic dome by the EPA and the Simpsons are declared fugitives.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNjc4NmQyNGUtMDg4NS00ZTZkLWI3ODQtMGJmYThiYjQxNGRiXkEyXkFqcGdeQXVyMTA0MTM5NjI2._V1_.jpg", + "summary": "After Homer pollutes the town's water supply, Springfield is encased in a gigantic dome by the EPA and the Simpsons are declared fugitives.", "duration": "PT1H27M", - "director": [ + "directors": [ "David Silverman" ], "mainActors": [ @@ -1752,7 +1752,7 @@ "Comedy" ], "datePublished": "2007-07-27", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.3, "bestRating": 10, "worstRating": 1, @@ -1764,10 +1764,10 @@ }, { "title": "James and the Giant Peach", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTNkNWIwNGUtNTJlOC00NDU3LTk0NWEtNjNjNDM4NzRiNThkXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTNkNWIwNGUtNTJlOC00NDU3LTk0NWEtNjNjNDM4NzRiNThkXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", "summary": "An orphan who lives with his two cruel aunts befriends anthropomorphic bugs who live inside a giant peach, and they embark on a journey to New York City.", "duration": "PT1H19M", - "director": [ + "directors": [ "Henry Selick" ], "mainActors": [ @@ -1781,7 +1781,7 @@ "Family" ], "datePublished": "1996-04-12", - "rating": "PG", + "rating": "G", "ratingValue": 6.7, "bestRating": 10, "worstRating": 1, @@ -1793,10 +1793,10 @@ }, { "title": "Shrek", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOGZhM2FhNTItODAzNi00YjA0LWEyN2UtNjJlYWQzYzU1MDg5L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOGZhM2FhNTItODAzNi00YjA0LWEyN2UtNjJlYWQzYzU1MDg5L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", "summary": "A mean lord exiles fairytale creatures to the swamp of a grumpy ogre, who must go on a quest and rescue a princess for the lord in order to get his land back.", "duration": "PT1H30M", - "director": [ + "directors": [ "Andrew Adamson", "Vicky Jenson" ], @@ -1810,7 +1810,7 @@ "Adventure", "Comedy" ], - "datePublished": "2001-05-18", + "datePublished": "2001-07-17", "rating": "PG", "ratingValue": 7.9, "bestRating": 10, @@ -1823,15 +1823,15 @@ }, { "title": "Frankenweenie", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjIxODY3MjEwNV5BMl5BanBnXkFtZTcwOTMzNjc4Nw@@._V1_.jpg", - "summary": "When a boy's beloved dog passes away suddenly, he attempts to bring the animal back to life through a powerful science experiment.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjIxODY3MjEwNV5BMl5BanBnXkFtZTcwOTMzNjc4Nw@@._V1_.jpg", + "summary": "When a boy's beloved dog passes away suddenly, he attempts to bring the animal back to life through a powerful science experiment.", "duration": "PT1H27M", - "director": [ + "directors": [ "Tim Burton" ], "mainActors": [ "Winona Ryder", - "Catherine O'Hara", + "Catherine O'Hara", "Martin Short" ], "genres": [ @@ -1852,10 +1852,10 @@ }, { "title": "Sleeping Beauty", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOTJmZjA3MjMtMWNmZS00YTliLWFhMWUtZDU2NGJhNTlmY2ZkL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOTJmZjA3MjMtMWNmZS00YTliLWFhMWUtZDU2NGJhNTlmY2ZkL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", "summary": "After being snubbed by the royal family, a malevolent fairy places a curse on a princess which only a prince can break, along with the help of three good fairies.", "duration": "PT1H15M", - "director": [ + "directors": [ "Les Clark", "Clyde Geronimi", "Eric Larson" @@ -1870,7 +1870,7 @@ "Adventure", "Family" ], - "datePublished": "1959-01-29", + "datePublished": "2019-11-12", "rating": "G", "ratingValue": 7.2, "bestRating": 10, @@ -1883,10 +1883,10 @@ }, { "title": "Rango", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTc4NjEyODE1OV5BMl5BanBnXkFtZTcwMjYzNTkxNA@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTc4NjEyODE1OV5BMl5BanBnXkFtZTcwMjYzNTkxNA@@._V1_.jpg", "summary": "Rango is an ordinary chameleon who accidentally winds up in the town of Dirt, a lawless outpost in the Wild West in desperate need of a new sheriff.", "duration": "PT1H47M", - "director": [ + "directors": [ "Gore Verbinski" ], "mainActors": [ @@ -1912,10 +1912,10 @@ }, { "title": "Winnie the Pooh", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYzBlYTJkMGQtYzQ4MS00Zjk3LTk4MmEtYTZiNTEzNmRlMjUxXkEyXkFqcGdeQXVyMzI0NDc4ODY@._V1_.jpg", - "summary": "While searching for honey, Pooh and his friends embark on an adventure to find Eeyore's missing tail and rescue Christopher Robin from an unknown monster called The Backson.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYzBlYTJkMGQtYzQ4MS00Zjk3LTk4MmEtYTZiNTEzNmRlMjUxXkEyXkFqcGdeQXVyMzI0NDc4ODY@._V1_.jpg", + "summary": "While searching for honey, Pooh and his friends embark on an adventure to find Eeyore's missing tail and rescue Christopher Robin from an unknown monster called The Backson.", "duration": "PT1H3M", - "director": [ + "directors": [ "Stephen J. Anderson", "Don Hall" ], @@ -1942,10 +1942,10 @@ }, { "title": "ParaNorman", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjA1OTU1NDM3N15BMl5BanBnXkFtZTcwMjYxNTg0Nw@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjA1OTU1NDM3N15BMl5BanBnXkFtZTcwMjYxNTg0Nw@@._V1_.jpg", "summary": "A misunderstood boy takes on ghosts, zombies and grown-ups to save his town from a centuries-old curse.", "duration": "PT1H32M", - "director": [ + "directors": [ "Chris Butler", "Sam Fell" ], @@ -1970,10 +1970,10 @@ }, { "title": "The Peanuts Movie", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNTE5NzMxNzkwNl5BMl5BanBnXkFtZTgwOTQ0Nzk5NzE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNTE5NzMxNzkwNl5BMl5BanBnXkFtZTgwOTQ0Nzk5NzE@._V1_.jpg", "summary": "Snoopy embarks upon his greatest mission as he and his team take to the skies to pursue their archnemesis, while his best pal Charlie Brown begins his own epic quest back home to win the love of his life.", "duration": "PT1H28M", - "director": [ + "directors": [ "Steve Martino" ], "mainActors": [ @@ -1999,10 +1999,10 @@ }, { "title": "Kung Fu Panda", - "posterURL": "https://m.media-amazon.com/images/M/MV5BODJkZTZhMWItMDI3Yy00ZWZlLTk4NjQtOTI1ZjU5NjBjZTVjXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_.jpg", - "summary": "To everyone's surprise, including his own, Po, an overweight, clumsy panda, is chosen as protector of the Valley of Peace. His suitability will soon be tested as the valley's arch-enemy is on his way.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BODJkZTZhMWItMDI3Yy00ZWZlLTk4NjQtOTI1ZjU5NjBjZTVjXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_.jpg", + "summary": "To everyone's surprise, including his own, Po, an overweight, clumsy panda, is chosen as protector of the Valley of Peace. His suitability will soon be tested as the valley's arch-enemy is on his way.", "duration": "PT1H32M", - "director": [ + "directors": [ "Mark Osborne", "John Stevenson" ], @@ -2017,7 +2017,7 @@ "Adventure" ], "datePublished": "2008-06-06", - "rating": "PG", + "rating": "G", "ratingValue": 7.6, "bestRating": 10, "worstRating": 1, @@ -2029,10 +2029,10 @@ }, { "title": "Tarzan", - "posterURL": "https://m.media-amazon.com/images/M/MV5BY2ZiYWUxN2ItYmQxZi00NDlkLWE2NDAtOTNmYTg1MDI0NDk1XkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BY2ZiYWUxN2ItYmQxZi00NDlkLWE2NDAtOTNmYTg1MDI0NDk1XkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_.jpg", "summary": "A man raised by gorillas must decide where he really belongs when he discovers he is a human.", "duration": "PT1H28M", - "director": [ + "directors": [ "Chris Buck", "Kevin Lima" ], @@ -2059,10 +2059,10 @@ }, { "title": "Wreck-It Ralph", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNzMxNTExOTkyMF5BMl5BanBnXkFtZTcwMzEyNDc0OA@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNzMxNTExOTkyMF5BMl5BanBnXkFtZTcwMzEyNDc0OA@@._V1_.jpg", "summary": "A video game villain wants to be a hero and sets out to fulfill his dream, but his quest brings havoc to the whole arcade where he lives.", "duration": "PT1H41M", - "director": [ + "directors": [ "Rich Moore" ], "mainActors": [ @@ -2088,10 +2088,10 @@ }, { "title": "Kung Fu Panda 3", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTUyNzgxNjg2M15BMl5BanBnXkFtZTgwMTY1NDI1NjE@._V1_.jpg", - "summary": "Continuing his "legendary adventures of awesomeness", Po must face two hugely epic, but different threats: one supernatural and the other a little closer to home.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTUyNzgxNjg2M15BMl5BanBnXkFtZTgwMTY1NDI1NjE@._V1_.jpg", + "summary": "Continuing his \"legendary adventures of awesomeness\", Po must face two hugely epic, but different threats: one supernatural and the other a little closer to home.", "duration": "PT1H35M", - "director": [ + "directors": [ "Alessandro Carloni", "Jennifer Yuh Nelson" ], @@ -2106,7 +2106,7 @@ "Adventure" ], "datePublished": "2016-01-29", - "rating": "PG", + "rating": "G", "ratingValue": 7.1, "bestRating": 10, "worstRating": 1, @@ -2118,10 +2118,10 @@ }, { "title": "Sausage Party", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjkxOTk1MzY4MF5BMl5BanBnXkFtZTgwODQzOTU5ODE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjkxOTk1MzY4MF5BMl5BanBnXkFtZTgwODQzOTU5ODE@._V1_.jpg", "summary": "A sausage strives to discover the truth about his existence.", "duration": "PT1H29M", - "director": [ + "directors": [ "Conrad Vernon", "Greg Tiernan" ], @@ -2136,7 +2136,7 @@ "Comedy" ], "datePublished": "2016-08-12", - "rating": "R", + "rating": "18A", "ratingValue": 6.1, "bestRating": 10, "worstRating": 1, @@ -2148,10 +2148,10 @@ }, { "title": "Akira", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNjFmNWYzZjMtYWIyZi00NDVmLWIxY2EtN2RiMjZiMDk4MzcyXkEyXkFqcGdeQXVyMTg2NjYzOA@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNjFmNWYzZjMtYWIyZi00NDVmLWIxY2EtN2RiMjZiMDk4MzcyXkEyXkFqcGdeQXVyMTg2NjYzOA@@._V1_.jpg", "summary": "A secret military project endangers Neo-Tokyo when it turns a biker gang member into a rampaging psychic psychopath who can only be stopped by a teenager, his gang of biker friends and a group of psychics.", "duration": "PT2H4M", - "director": [ + "directors": [ "Katsuhiro Ôtomo" ], "mainActors": [ @@ -2165,7 +2165,7 @@ "Drama" ], "datePublished": "1988-07-16", - "rating": "R", + "rating": "AA", "ratingValue": 8, "bestRating": 10, "worstRating": 1, @@ -2176,10 +2176,10 @@ }, { "title": "Tôkyô goddofâzâzu", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTkyNmU2ZjUtNzIwMy00MWRlLWE4ZWQtYzJhYjU0MmUxZjhiXkEyXkFqcGdeQXVyNDgyODgxNjE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZjgyYjBiZGYtMWUyZS00NDUwLWFlZDAtMGQ2NTQzZDExOTYzXkEyXkFqcGdeQXVyNjUxMDQ0MTg@._V1_.jpg", "summary": "On Christmas Eve, three homeless people living on the streets of Tokyo discover a newborn baby among the trash and set out to find its parents.", "duration": "PT1H32M", - "director": [ + "directors": [ "Satoshi Kon" ], "mainActors": [ @@ -2193,7 +2193,7 @@ "Comedy" ], "datePublished": "2003-11-08", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -2204,10 +2204,10 @@ }, { "title": "The Pirates! In an Adventure with Scientists!", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNDhkOGZkZWMtNGI4Mi00ZWI3LTgyYTgtMDU4ZDI3NTNjMWFiXkEyXkFqcGdeQXVyNjk1Njg5NTA@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNDhkOGZkZWMtNGI4Mi00ZWI3LTgyYTgtMDU4ZDI3NTNjMWFiXkEyXkFqcGdeQXVyNjk1Njg5NTA@._V1_.jpg", "summary": "Pirate Captain sets out on a mission to defeat his rivals Black Bellamy and Cutlass Liz for the Pirate of the year Award. The quest takes Captain and his crew from the shores of Blood Island to the foggy streets of Victorian London.", "duration": "PT1H28M", - "director": [ + "directors": [ "Peter Lord", "Jeff Newitt" ], @@ -2222,7 +2222,7 @@ "Comedy" ], "datePublished": "2012-04-27", - "rating": "PG", + "rating": "G", "ratingValue": 6.7, "bestRating": 10, "worstRating": 1, @@ -2232,10 +2232,10 @@ }, { "title": "The Princess and the Frog", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNmJkZjk1OTUtNzQ3NC00M2I1LTgzNTQtYzk4MmMyNDk0MTY3XkEyXkFqcGdeQXVyMTI5NzUyMTIz._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNmJkZjk1OTUtNzQ3NC00M2I1LTgzNTQtYzk4MmMyNDk0MTY3XkEyXkFqcGdeQXVyMTI5NzUyMTIz._V1_.jpg", "summary": "A waitress, desperate to fulfill her dreams as a restaurant owner, is set on a journey to turn a frog prince back into a human being, but she has to face the same problem after she kisses him.", "duration": "PT1H37M", - "director": [ + "directors": [ "Ron Clements", "John Musker" ], @@ -2262,10 +2262,10 @@ }, { "title": "The Wizard of Oz", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNjUyMTc4MDExMV5BMl5BanBnXkFtZTgwNDg0NDIwMjE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNjUyMTc4MDExMV5BMl5BanBnXkFtZTgwNDg0NDIwMjE@._V1_.jpg", "summary": "Young Dorothy Gale and her dog Toto are swept away by a tornado from their Kansas farm to the magical Land of Oz, and embark on a quest with three new friends to see the Wizard, who can return her to her home and fulfill the other...", "duration": "PT1H42M", - "director": [ + "directors": [ "Victor Fleming", "King Vidor" ], @@ -2279,7 +2279,7 @@ "Family", "Fantasy" ], - "datePublished": "1939-08-25", + "datePublished": "1939-08-21", "rating": "G", "ratingValue": 8.1, "bestRating": 10, @@ -2292,10 +2292,10 @@ }, { "title": "Citizen Kane", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYjBiOTYxZWItMzdiZi00NjlkLWIzZTYtYmFhZjhiMTljOTdkXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", - "summary": "Following the death of publishing tycoon Charles Foster Kane, reporters scramble to uncover the meaning of his final utterance: 'Rosebud.'", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYjBiOTYxZWItMzdiZi00NjlkLWIzZTYtYmFhZjhiMTljOTdkXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", + "summary": "Following the death of publishing tycoon Charles Foster Kane, reporters scramble to uncover the meaning of his final utterance: 'Rosebud.'", "duration": "PT1H59M", - "director": [ + "directors": [ "Orson Welles" ], "mainActors": [ @@ -2307,8 +2307,8 @@ "Drama", "Mystery" ], - "datePublished": "1941-09-05", - "rating": "PG", + "datePublished": "1941-10-01", + "rating": "G", "ratingValue": 8.3, "bestRating": 10, "worstRating": 1, @@ -2320,10 +2320,10 @@ }, { "title": "The Third Man", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYjE2OTdhMWUtOGJlMy00ZDViLWIzZjgtYjZkZGZmMDZjYmEyXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYjE2OTdhMWUtOGJlMy00ZDViLWIzZjgtYjZkZGZmMDZjYmEyXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", "summary": "Pulp novelist Holly Martins travels to shadowy, postwar Vienna, only to find himself investigating the mysterious death of an old friend, Harry Lime.", - "duration": "PT1H33M", - "director": [ + "duration": "PT1H44M", + "directors": [ "Carol Reed" ], "mainActors": [ @@ -2337,7 +2337,7 @@ "Thriller" ], "datePublished": "1949-09-03", - "rating": "Approved", + "rating": "PG", "ratingValue": 8.1, "bestRating": 10, "worstRating": 1, @@ -2349,10 +2349,10 @@ }, { "title": "It Happened One Night", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYzJmMWE5NjAtNWMyZS00NmFiLWIwMDgtZDE2NzczYWFhNzIzXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYzJmMWE5NjAtNWMyZS00NmFiLWIwMDgtZDE2NzczYWFhNzIzXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", "summary": "A renegade reporter trailing a young runaway heiress for a big story joins her on a bus heading from Florida to New York, and they end up stuck with each other when the bus leaves them behind at one of the stops.", "duration": "PT1H45M", - "director": [ + "directors": [ "Frank Capra" ], "mainActors": [ @@ -2364,8 +2364,8 @@ "Comedy", "Romance" ], - "datePublished": "1934-02-22", - "rating": "Passed", + "datePublished": "1934-02-27", + "rating": "PG", "ratingValue": 8.1, "bestRating": 10, "worstRating": 1, @@ -2376,10 +2376,10 @@ }, { "title": "Casablanca", - "posterURL": "https://m.media-amazon.com/images/M/MV5BY2IzZGY2YmEtYzljNS00NTM5LTgwMzUtMzM1NjQ4NGI0OTk0XkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BY2IzZGY2YmEtYzljNS00NTM5LTgwMzUtMzM1NjQ4NGI0OTk0XkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_.jpg", "summary": "A cynical expatriate American cafe owner struggles to decide whether or not to help his former lover and her fugitive husband escape the Nazis in French Morocco.", "duration": "PT1H42M", - "director": [ + "directors": [ "Michael Curtiz" ], "mainActors": [ @@ -2393,7 +2393,7 @@ "War" ], "datePublished": "1943-01-23", - "rating": "PG", + "rating": "G", "ratingValue": 8.5, "bestRating": 10, "worstRating": 1, @@ -2405,10 +2405,10 @@ }, { "title": "All About Eve", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYmE1M2Y3NTYtYTI0Mi00N2JlLTkzMzItOTY1MTlhNWNkMDgzXkEyXkFqcGdeQXVyMTUzMDUzNTI3._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYmE1M2Y3NTYtYTI0Mi00N2JlLTkzMzItOTY1MTlhNWNkMDgzXkEyXkFqcGdeQXVyMTUzMDUzNTI3._V1_.jpg", "summary": "A seemingly timid but secretly ruthless ingénue insinuates herself into the lives of an aging Broadway star and her circle of theater friends.", "duration": "PT2H18M", - "director": [ + "directors": [ "Joseph L. Mankiewicz" ], "mainActors": [ @@ -2419,8 +2419,8 @@ "genres": [ "Drama" ], - "datePublished": "1950-10-27", - "rating": "Passed", + "datePublished": "1950-11-03", + "rating": "PG", "ratingValue": 8.2, "bestRating": 10, "worstRating": 1, @@ -2431,10 +2431,10 @@ }, { "title": "Metropolis", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTg5YWIyMWUtZDY5My00Zjc1LTljOTctYmI0MWRmY2M2NmRkXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_.jpg", - "summary": "In a futuristic city sharply divided between the working class and the city planners, the son of the city's mastermind falls in love with a working-class prophet who predicts the coming of a savior to mediate their differences.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTg5YWIyMWUtZDY5My00Zjc1LTljOTctYmI0MWRmY2M2NmRkXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_.jpg", + "summary": "In a futuristic city sharply divided between the working class and the city planners, the son of the city's mastermind falls in love with a working-class prophet who predicts the coming of a savior to mediate their differences.", "duration": "PT2H33M", - "director": [ + "directors": [ "Fritz Lang" ], "mainActors": [ @@ -2446,8 +2446,8 @@ "Drama", "Sci-Fi" ], - "datePublished": "1927-03-13", - "rating": "Not Rated", + "datePublished": "1927-02-06", + "rating": "G", "ratingValue": 8.3, "bestRating": 10, "worstRating": 1, @@ -2458,10 +2458,10 @@ }, { "title": "Modern Times", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYjJiZjMzYzktNjU0NS00OTkxLWEwYzItYzdhYWJjN2QzMTRlL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYjJiZjMzYzktNjU0NS00OTkxLWEwYzItYzdhYWJjN2QzMTRlL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", "summary": "The Tramp struggles to live in modern industrial society with the help of a young homeless woman.", "duration": "PT1H27M", - "director": [ + "directors": [ "Charles Chaplin" ], "mainActors": [ @@ -2485,10 +2485,10 @@ }, { "title": "King Kong", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZTY3YjYxZGQtMTM2YS00ZmYwLWFlM2QtOWFlMTU1NTAyZDQ2XkEyXkFqcGdeQXVyNTgyNTA4MjM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZTY3YjYxZGQtMTM2YS00ZmYwLWFlM2QtOWFlMTU1NTAyZDQ2XkEyXkFqcGdeQXVyNTgyNTA4MjM@._V1_.jpg", "summary": "A film crew goes to a tropical island for a location shoot, where they capture a colossal ape who takes a shine to their blonde starlet, and bring him back to New York City.", "duration": "PT1H40M", - "director": [ + "directors": [ "Merian C. Cooper", "Ernest B. Schoedsack" ], @@ -2502,8 +2502,8 @@ "Horror", "Sci-Fi" ], - "datePublished": "1933-04-07", - "rating": "Passed", + "datePublished": "1933-04-13", + "rating": "PG", "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, @@ -2514,17 +2514,17 @@ ] }, { - "title": "Singin' in the Rain", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZDRjNGViMjQtOThlMi00MTA3LThkYzQtNzJkYjBkMGE0YzE1XkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_.jpg", + "title": "Singin' in the Rain", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZDRjNGViMjQtOThlMi00MTA3LThkYzQtNzJkYjBkMGE0YzE1XkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_.jpg", "summary": "A silent film star falls for a chorus girl just as he and his delusionally jealous screen partner are trying to make the difficult transition to talking pictures in 1920s Hollywood.", "duration": "PT1H43M", - "director": [ + "directors": [ "Stanley Donen", "Gene Kelly" ], "mainActors": [ "Gene Kelly", - "Donald O'Connor", + "Donald O'Connor", "Debbie Reynolds" ], "genres": [ @@ -2532,7 +2532,7 @@ "Musical", "Romance" ], - "datePublished": "1952-04-10", + "datePublished": "1952-04-11", "rating": "G", "ratingValue": 8.3, "bestRating": 10, @@ -2544,10 +2544,10 @@ }, { "title": "Psycho", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNTQwNDM1YzItNDAxZC00NWY2LTk0M2UtNDIwNWI5OGUyNWUxXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", - "summary": "A Phoenix secretary embezzles $40,000 from her employer's client, goes on the run and checks into a remote motel run by a young man under the domination of his mother.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNTQwNDM1YzItNDAxZC00NWY2LTk0M2UtNDIwNWI5OGUyNWUxXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", + "summary": "A Phoenix secretary embezzles $40,000 from her employer's client, goes on the run and checks into a remote motel run by a young man under the domination of his mother.", "duration": "PT1H49M", - "director": [ + "directors": [ "Alfred Hitchcock" ], "mainActors": [ @@ -2560,8 +2560,8 @@ "Mystery", "Thriller" ], - "datePublished": "1960-09-08", - "rating": "R", + "datePublished": "1960-08-17", + "rating": "14A", "ratingValue": 8.5, "bestRating": 10, "worstRating": 1, @@ -2572,10 +2572,10 @@ }, { "title": "Laura", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYjkxOGM5OTktNTRmZi00MjhlLWE2MDktNzY3NjY3NmRjNDUyXkEyXkFqcGdeQXVyNDY2MTk1ODk@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYjkxOGM5OTktNTRmZi00MjhlLWE2MDktNzY3NjY3NmRjNDUyXkEyXkFqcGdeQXVyNDY2MTk1ODk@._V1_.jpg", "summary": "A police detective falls in love with the woman whose murder he is investigating.", "duration": "PT1H28M", - "director": [ + "directors": [ "Otto Preminger" ], "mainActors": [ @@ -2588,7 +2588,8 @@ "Film-Noir", "Mystery" ], - "rating": "Passed", + "datePublished": "1944-12-14", + "rating": "PG", "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, @@ -2600,10 +2601,10 @@ }, { "title": "The Adventures of Robin Hood", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYjZjOTU3MTMtYTM5YS00YjZmLThmNmMtODcwOTM1NmRiMWM2XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", - "summary": "When Prince John and the Norman Lords begin oppressing the Saxon masses in King Richard's absence in 1190s England, a Saxon lord fights back as the outlaw leader of a resistance movement.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYjZjOTU3MTMtYTM5YS00YjZmLThmNmMtODcwOTM1NmRiMWM2XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "summary": "When Prince John and the Norman Lords begin oppressing the Saxon masses in King Richard's absence in 1190s England, a Saxon lord fights back as the outlaw leader of a resistance movement.", "duration": "PT1H42M", - "director": [ + "directors": [ "Michael Curtiz", "William Keighley" ], @@ -2618,7 +2619,7 @@ "Romance" ], "datePublished": "1938-05-14", - "rating": "PG", + "rating": "G", "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, @@ -2629,11 +2630,11 @@ ] }, { - "title": "A Hard Day's Night", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZjQyMGUwNzAtNTc2MC00Y2FjLThlM2ItZGRjNzM0OWVmZGYyXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", - "summary": "Over two "typical" days in the life of The Beatles, the boys struggle to keep themselves and Sir Paul McCartney's mischievous grandfather in check while preparing for a live TV performance.", + "title": "A Hard Day's Night", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZjQyMGUwNzAtNTc2MC00Y2FjLThlM2ItZGRjNzM0OWVmZGYyXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "summary": "Over two \"typical\" days in the life of The Beatles, the boys struggle to keep themselves and Sir Paul McCartney's mischievous grandfather in check while preparing for a live TV performance.", "duration": "PT1H27M", - "director": [ + "directors": [ "Richard Lester" ], "mainActors": [ @@ -2646,7 +2647,7 @@ "Musical" ], "datePublished": "1964-07-07", - "rating": "G", + "rating": "PG", "ratingValue": 7.5, "bestRating": 10, "worstRating": 1, @@ -2656,10 +2657,10 @@ }, { "title": "Repulsion", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMzdiZmRhNGItMGZkMC00ZWQyLTg0ZjYtYTkwYzRhZjAwZjMwXkEyXkFqcGdeQXVyMTUzMDUzNTI3._V1_.jpg", - "summary": "A sex-repulsed woman who disapproves of her sister's boyfriend sinks into depression and has horrific visions of rape and violence.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMzdiZmRhNGItMGZkMC00ZWQyLTg0ZjYtYTkwYzRhZjAwZjMwXkEyXkFqcGdeQXVyMTUzMDUzNTI3._V1_.jpg", + "summary": "A sex-repulsed woman who disapproves of her sister's boyfriend sinks into depression and has horrific visions of rape and violence.", "duration": "PT1H45M", - "director": [ + "directors": [ "Roman Polanski" ], "mainActors": [ @@ -2672,8 +2673,8 @@ "Horror", "Thriller" ], - "datePublished": "1965-10-03", - "rating": "Not Rated", + "datePublished": "1965-07-07", + "rating": "R", "ratingValue": 7.6, "bestRating": 10, "worstRating": 1, @@ -2685,10 +2686,10 @@ }, { "title": "North by Northwest", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZDA3NDExMTUtMDlhOC00MmQ5LWExZGUtYmI1NGVlZWI4OWNiXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZDA3NDExMTUtMDlhOC00MmQ5LWExZGUtYmI1NGVlZWI4OWNiXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", "summary": "A New York City advertising executive goes on the run after being mistaken for a government agent by a group of foreign spies, and falls for a woman whose loyalties he begins to doubt.", "duration": "PT2H16M", - "director": [ + "directors": [ "Alfred Hitchcock" ], "mainActors": [ @@ -2701,8 +2702,8 @@ "Adventure", "Mystery" ], - "datePublished": "1959-12-18", - "rating": "Approved", + "datePublished": "1959-09-11", + "rating": "18A", "ratingValue": 8.3, "bestRating": 10, "worstRating": 1, @@ -2712,10 +2713,10 @@ }, { "title": "Rear Window", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNGUxYWM3M2MtMGM3Mi00ZmRiLWE0NGQtZjE5ODI2OTJhNTU0XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNGUxYWM3M2MtMGM3Mi00ZmRiLWE0NGQtZjE5ODI2OTJhNTU0XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", "summary": "A photographer in a wheelchair spies on his neighbors from his Greenwich Village courtyard apartment window, and becomes convinced one of them has committed murder, despite the skepticism of his fashion-model girlfriend.", "duration": "PT1H52M", - "director": [ + "directors": [ "Alfred Hitchcock" ], "mainActors": [ @@ -2727,7 +2728,7 @@ "Mystery", "Thriller" ], - "datePublished": "1954-09-01", + "datePublished": "1954-09-11", "rating": "PG", "ratingValue": 8.5, "bestRating": 10, @@ -2739,10 +2740,10 @@ }, { "title": "The Philadelphia Story", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYjQ4ZDA4NGMtMTkwYi00NThiLThhZDUtZTEzNTAxOWYyY2E4XkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_.jpg", - "summary": "When a rich woman's ex-husband and a tabloid-type reporter turn up just before her planned remarriage, she begins to learn the truth about herself.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYjQ4ZDA4NGMtMTkwYi00NThiLThhZDUtZTEzNTAxOWYyY2E4XkEyXkFqcGdeQXVyMjUxODE0MDY@._V1_.jpg", + "summary": "When a rich woman's ex-husband and a tabloid-type reporter turn up just before her planned remarriage, she begins to learn the truth about herself.", "duration": "PT1H52M", - "director": [ + "directors": [ "George Cukor" ], "mainActors": [ @@ -2755,7 +2756,7 @@ "Romance" ], "datePublished": "1941-01-17", - "rating": "Not Rated", + "rating": "PG", "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, @@ -2767,10 +2768,10 @@ }, { "title": "Touch of Evil", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOTA1MjA3M2EtMmJjZS00OWViLTkwMTEtM2E5ZDk0NTAyNGJiXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOTA1MjA3M2EtMmJjZS00OWViLTkwMTEtM2E5ZDk0NTAyNGJiXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", "summary": "A stark, perverse story of murder, kidnapping and police corruption in a Mexican border town.", "duration": "PT1H35M", - "director": [ + "directors": [ "Orson Welles" ], "mainActors": [ @@ -2783,8 +2784,8 @@ "Drama", "Film-Noir" ], - "datePublished": "1958-04-23", - "rating": "PG-13", + "datePublished": "1958-05-09", + "rating": "A", "ratingValue": 8, "bestRating": 10, "worstRating": 1, @@ -2796,10 +2797,10 @@ }, { "title": "All Quiet on the Western Front", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMDdlMzRjM2MtNjcxNy00MjgyLTkyZmYtY2ExODM0OTBkMzI0XkEyXkFqcGdeQXVyMzg1ODEwNQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMDdlMzRjM2MtNjcxNy00MjgyLTkyZmYtY2ExODM0OTBkMzI0XkEyXkFqcGdeQXVyMzg1ODEwNQ@@._V1_.jpg", "summary": "A German youth eagerly enters World War I, but his enthusiasm wanes as he gets a firsthand view of the horror.", "duration": "PT2H32M", - "director": [ + "directors": [ "Lewis Milestone" ], "mainActors": [ @@ -2811,8 +2812,8 @@ "Drama", "War" ], - "datePublished": "1930-08-24", - "rating": "Passed", + "datePublished": "1930-06-21", + "rating": "PG", "ratingValue": 8.1, "bestRating": 10, "worstRating": 1, @@ -2824,10 +2825,10 @@ }, { "title": "Vertigo", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYTE4ODEwZDUtNDFjOC00NjAxLWEzYTQtYTI1NGVmZmFlNjdiL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYTE4ODEwZDUtNDFjOC00NjAxLWEzYTQtYTI1NGVmZmFlNjdiL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", "summary": "A former San Francisco police detective juggles wrestling with his personal demons and becoming obsessed with the hauntingly beautiful woman he has been hired to trail, who may be deeply disturbed.", "duration": "PT2H8M", - "director": [ + "directors": [ "Alfred Hitchcock" ], "mainActors": [ @@ -2840,8 +2841,8 @@ "Romance", "Thriller" ], - "datePublished": "1963-05-09", - "rating": "PG", + "datePublished": "1958-06-16", + "rating": "G", "ratingValue": 8.3, "bestRating": 10, "worstRating": 1, @@ -2853,10 +2854,10 @@ }, { "title": "Rebecca", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYTcxYWExOTMtMWFmYy00ZjgzLWI0YjktNWEzYzJkZTg0NDdmL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", - "summary": "A self-conscious woman juggles adjusting to her new role as an aristocrat's wife and avoiding being intimidated by his first wife's spectral presence.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYTcxYWExOTMtMWFmYy00ZjgzLWI0YjktNWEzYzJkZTg0NDdmL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "summary": "A self-conscious woman juggles adjusting to her new role as an aristocrat's wife and avoiding being intimidated by his first wife's spectral presence.", "duration": "PT2H10M", - "director": [ + "directors": [ "Alfred Hitchcock" ], "mainActors": [ @@ -2882,10 +2883,10 @@ }, { "title": "The Treasure of the Sierra Madre", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOTJlZWMxYzEtMjlkMS00ODE0LThlM2ItMDI3NGQ2YjhmMzkxXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOTJlZWMxYzEtMjlkMS00ODE0LThlM2ItMDI3NGQ2YjhmMzkxXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_.jpg", "summary": "Two down-on-their-luck Americans searching for work in 1920s Mexico convince an old prospector to help them mine for gold in the Sierra Madre Mountains.", "duration": "PT2H6M", - "director": [ + "directors": [ "John Huston" ], "mainActors": [ @@ -2898,8 +2899,8 @@ "Drama", "Western" ], - "datePublished": "1948-01-24", - "rating": "Passed", + "datePublished": "1948-01-07", + "rating": "PG", "ratingValue": 8.2, "bestRating": 10, "worstRating": 1, @@ -2910,14 +2911,14 @@ }, { "title": "Lawrence of Arabia", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYWY5ZjhjNGYtZmI2Ny00ODM0LWFkNzgtZmI1YzA2N2MxMzA0XkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYWY5ZjhjNGYtZmI2Ny00ODM0LWFkNzgtZmI1YzA2N2MxMzA0XkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_.jpg", "summary": "The story of T.E. Lawrence, the English officer who successfully united and led the diverse, often warring, Arab tribes during World War I in order to fight the Turks.", "duration": "PT3H38M", - "director": [ + "directors": [ "David Lean" ], "mainActors": [ - "Peter O'Toole", + "Peter O'Toole", "Alec Guinness", "Anthony Quinn" ], @@ -2926,8 +2927,8 @@ "Biography", "Drama" ], - "datePublished": "1962-12-11", - "rating": "Approved", + "datePublished": "1963-01-30", + "rating": "PG", "ratingValue": 8.3, "bestRating": 10, "worstRating": 1, @@ -2938,10 +2939,10 @@ }, { "title": "The Big Sleep", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNWE0NjE4NjUtNjY5Ni00ZWJhLTgyYmMtY2U0OWRkNTQ0OTVkXkEyXkFqcGdeQXVyNjc5NjEzNA@@._V1_.jpg", - "summary": "Private detective Philip Marlowe is hired by a wealthy family. Before the complex case is over, he's seen murder, blackmail and what might be love.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNWE0NjE4NjUtNjY5Ni00ZWJhLTgyYmMtY2U0OWRkNTQ0OTVkXkEyXkFqcGdeQXVyNjc5NjEzNA@@._V1_.jpg", + "summary": "Private detective Philip Marlowe is hired by a wealthy family. Before the complex case is over, he's seen murder, blackmail and what might be love.", "duration": "PT1H54M", - "director": [ + "directors": [ "Howard Hawks" ], "mainActors": [ @@ -2955,7 +2956,7 @@ "Mystery" ], "datePublished": "1946-08-31", - "rating": "Passed", + "rating": "14A", "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, @@ -2967,10 +2968,10 @@ }, { "title": "Frankenstein", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTQ0Njc1MjM0OF5BMl5BanBnXkFtZTgwNTY2NTUyMjE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTQ0Njc1MjM0OF5BMl5BanBnXkFtZTgwNTY2NTUyMjE@._V1_.jpg", "summary": "Dr Henry Frankenstein is obsessed with assembling a living being from parts of several exhumed corpses.", "duration": "PT1H10M", - "director": [ + "directors": [ "James Whale" ], "mainActors": [ @@ -2983,8 +2984,8 @@ "Horror", "Sci-Fi" ], - "datePublished": "1931-11-21", - "rating": "Passed", + "datePublished": "1932-01-06", + "rating": "(Banned)", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -2996,10 +2997,10 @@ }, { "title": "A Streetcar Named Desire", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNzk2M2Y3MzYtNGMzMi00Y2FjLTkwODQtNmExYWU3ZWY3NzExXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNzk2M2Y3MzYtNGMzMi00Y2FjLTkwODQtNmExYWU3ZWY3NzExXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_.jpg", "summary": "Disturbed Blanche DuBois moves in with her sister in New Orleans and is tormented by her brutish brother-in-law while her reality crumbles around her.", "duration": "PT2H2M", - "director": [ + "directors": [ "Elia Kazan" ], "mainActors": [ @@ -3010,8 +3011,8 @@ "genres": [ "Drama" ], - "datePublished": "1951-09-19", - "rating": "M/PG", + "datePublished": "1951-10-19", + "rating": "14A", "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, @@ -3022,10 +3023,10 @@ }, { "title": "Kind Hearts and Coronets", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZjc1Yzc0ZmItMzU1OS00OWVlLThmYTctMWNlYmFlMjkxMzc0XkEyXkFqcGdeQXVyNTA1NjYyMDk@._V1_.jpg", - "summary": "A distant poor relative of the Duke D'Ascoyne plots to inherit the title by murdering the eight other heirs who stand ahead of him in the line of succession.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZjc1Yzc0ZmItMzU1OS00OWVlLThmYTctMWNlYmFlMjkxMzc0XkEyXkFqcGdeQXVyNTA1NjYyMDk@._V1_.jpg", + "summary": "A distant poor relative of the Duke D'Ascoyne plots to inherit the title by murdering the eight other heirs who stand ahead of him in the line of succession.", "duration": "PT1H46M", - "director": [ + "directors": [ "Robert Hamer" ], "mainActors": [ @@ -3037,7 +3038,7 @@ "Comedy", "Crime" ], - "datePublished": "1950-06-14", + "datePublished": "1950-01-20", "rating": "Not Rated", "ratingValue": 8, "bestRating": 10, @@ -3050,10 +3051,10 @@ }, { "title": "Chinatown", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjJkMDZhYzItZTFhMi00ZGI4LThlNTAtZDNlYmEwNjFkNDYzXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjJkMDZhYzItZTFhMi00ZGI4LThlNTAtZDNlYmEwNjFkNDYzXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", "summary": "A private detective hired to expose an adulterer in 1930s Los Angeles finds himself caught up in a web of deceit, corruption, and murder.", "duration": "PT2H10M", - "director": [ + "directors": [ "Roman Polanski" ], "mainActors": [ @@ -3066,8 +3067,8 @@ "Mystery", "Thriller" ], - "datePublished": "1974-06-20", - "rating": "R", + "datePublished": "1974-06-28", + "rating": "18A", "ratingValue": 8.2, "bestRating": 10, "worstRating": 1, @@ -3077,11 +3078,11 @@ ] }, { - "title": "Rosemary's Baby", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTA5NWQwMmYtZjEyYS00Nzc2LTgwZjAtNTQ4NmFmZjNkNjg4XkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "title": "Rosemary's Baby", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTA5NWQwMmYtZjEyYS00Nzc2LTgwZjAtNTQ4NmFmZjNkNjg4XkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", "summary": "A young couple trying for a baby moves into an aging, ornate apartment building on Central Park West, where they find themselves surrounded by peculiar neighbors.", "duration": "PT2H17M", - "director": [ + "directors": [ "Roman Polanski" ], "mainActors": [ @@ -3094,7 +3095,7 @@ "Horror" ], "datePublished": "1968-06-12", - "rating": "Approved", + "rating": "18+", "ratingValue": 8, "bestRating": 10, "worstRating": 1, @@ -3105,10 +3106,10 @@ }, { "title": "Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMWMxYjZkOWUtM2FjMi00MmI1LThkNzQtNTM5Y2E2ZGQ2NGFhXkEyXkFqcGdeQXVyMTA0MTM5NjI2._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMWMxYjZkOWUtM2FjMi00MmI1LThkNzQtNTM5Y2E2ZGQ2NGFhXkEyXkFqcGdeQXVyMTA0MTM5NjI2._V1_.jpg", "summary": "An insane American general orders a bombing attack on the Soviet Union, triggering a path to nuclear holocaust that a war room full of politicians and generals frantically tries to stop.", "duration": "PT1H35M", - "director": [ + "directors": [ "Stanley Kubrick" ], "mainActors": [ @@ -3133,10 +3134,10 @@ }, { "title": "The 39 Steps", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTY5ODAzMTcwOF5BMl5BanBnXkFtZTcwMzYxNDYyNA@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTY5ODAzMTcwOF5BMl5BanBnXkFtZTcwMzYxNDYyNA@@._V1_.jpg", "summary": "A man in London tries to help a counter-espionage agent, but when the agent is killed and the man stands accused, he must go on the run to save himself and stop a spy ring that is trying to steal top-secret information.", "duration": "PT1H26M", - "director": [ + "directors": [ "Alfred Hitchcock" ], "mainActors": [ @@ -3149,7 +3150,6 @@ "Mystery", "Thriller" ], - "datePublished": "1935-07-31", "rating": "Approved", "ratingValue": 7.6, "bestRating": 10, @@ -3162,10 +3162,10 @@ }, { "title": "On the Waterfront", - "posterURL": "https://m.media-amazon.com/images/M/MV5BY2I0MWFiZDMtNWQyYy00Njk5LTk3MDktZjZjNTNmZmVkYjkxXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", - "summary": "An ex-prize fighter turned New Jersey longshoreman struggles to stand up to his corrupt union bosses, including his older brother, as he starts to connect with the grieving sister of one of the syndicate's victims.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BY2I0MWFiZDMtNWQyYy00Njk5LTk3MDktZjZjNTNmZmVkYjkxXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "summary": "An ex-prize fighter turned New Jersey longshoreman struggles to stand up to his corrupt union bosses, including his older brother, as he starts to connect with the grieving sister of one of the syndicate's victims.", "duration": "PT1H48M", - "director": [ + "directors": [ "Elia Kazan" ], "mainActors": [ @@ -3179,7 +3179,7 @@ "Thriller" ], "datePublished": "1954-06-22", - "rating": "Approved", + "rating": "PG", "ratingValue": 8.1, "bestRating": 10, "worstRating": 1, @@ -3191,10 +3191,10 @@ }, { "title": "The Lady Vanishes", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNjk3YzFjYTktOGY0ZS00Y2EwLTk2NTctYTI1Nzc2OWNiN2I4XkEyXkFqcGdeQXVyNzM0MTUwNTY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNjk3YzFjYTktOGY0ZS00Y2EwLTk2NTctYTI1Nzc2OWNiN2I4XkEyXkFqcGdeQXVyNzM0MTUwNTY@._V1_.jpg", "summary": "While travelling in continental Europe, a rich young playgirl realizes that an elderly lady seems to have disappeared from the train.", "duration": "PT1H36M", - "director": [ + "directors": [ "Alfred Hitchcock" ], "mainActors": [ @@ -3206,8 +3206,8 @@ "Mystery", "Thriller" ], - "datePublished": "1938-11-01", - "rating": "Not Rated", + "datePublished": "1939-01-02", + "rating": "PG", "ratingValue": 7.7, "bestRating": 10, "worstRating": 1, @@ -3219,10 +3219,10 @@ }, { "title": "The Last Picture Show", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZTQ2ZjgzMTItMjk1Mi00NjdlLThmYzQtMDg1MDBmNzFhYmJlXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZTQ2ZjgzMTItMjk1Mi00NjdlLThmYzQtMDg1MDBmNzFhYmJlXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", "summary": "In 1951, a group of high schoolers come of age in a bleak, isolated, atrophied North Texas town that is slowly dying, both culturally and economically.", "duration": "PT1H58M", - "director": [ + "directors": [ "Peter Bogdanovich" ], "mainActors": [ @@ -3235,7 +3235,7 @@ "Romance" ], "datePublished": "1971-10-22", - "rating": "R", + "rating": "18+", "ratingValue": 8, "bestRating": 10, "worstRating": 1, @@ -3246,10 +3246,10 @@ }, { "title": "The Grapes of Wrath", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNzJiOGI2MjctYjUyMS00ZjkzLWE2ZmUtOTg4NTZkOTNhZDc1L2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNzJiOGI2MjctYjUyMS00ZjkzLWE2ZmUtOTg4NTZkOTNhZDc1L2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", "summary": "An Oklahoma family, driven off their farm by the poverty and hopelessness of the Dust Bowl, joins the westward migration to California, suffering the misfortunes of the homeless in the Great Depression.", "duration": "PT2H9M", - "director": [ + "directors": [ "John Ford" ], "mainActors": [ @@ -3260,8 +3260,8 @@ "genres": [ "Drama" ], - "datePublished": "1940-03-15", - "rating": "Passed", + "datePublished": "1940-03-01", + "rating": "PG", "ratingValue": 8.1, "bestRating": 10, "worstRating": 1, @@ -3272,10 +3272,10 @@ }, { "title": "Roman Holiday", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTE2MDM4MTMtZmNkZC00Y2QyLWE0YjUtMTAxZGJmODMxMDM0XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTE2MDM4MTMtZmNkZC00Y2QyLWE0YjUtMTAxZGJmODMxMDM0XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", "summary": "A bored and sheltered princess escapes her guardians and falls in love with an American newsman in Rome.", "duration": "PT1H58M", - "director": [ + "directors": [ "William Wyler" ], "mainActors": [ @@ -3288,7 +3288,7 @@ "Romance" ], "datePublished": "1953-09-02", - "rating": "Passed", + "rating": "G", "ratingValue": 8, "bestRating": 10, "worstRating": 1, @@ -3300,10 +3300,10 @@ }, { "title": "Cool Hand Luke", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNjcwNTQ3Y2EtMjdmZi00ODBhLWFhNzQtOTc3MWU5NTZlMDViXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNjcwNTQ3Y2EtMjdmZi00ODBhLWFhNzQtOTc3MWU5NTZlMDViXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", "summary": "A laid-back Southern man is sentenced to two years in a rural prison, but refuses to conform.", "duration": "PT2H7M", - "director": [ + "directors": [ "Stuart Rosenberg" ], "mainActors": [ @@ -3316,7 +3316,7 @@ "Drama" ], "datePublished": "1967-11-01", - "rating": "GP", + "rating": "A", "ratingValue": 8.1, "bestRating": 10, "worstRating": 1, @@ -3328,10 +3328,10 @@ }, { "title": "The Gold Rush", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZjEyOTE4MzMtNmMzMy00Mzc3LWJlOTQtOGJiNDE0ZmJiOTU4L2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZjEyOTE4MzMtNmMzMy00Mzc3LWJlOTQtOGJiNDE0ZmJiOTU4L2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", "summary": "A prospector goes to the Klondike during the 1890s gold rush in hopes of making his fortune, and is smitten with a girl he sees in a dance hall.", "duration": "PT1H35M", - "director": [ + "directors": [ "Charles Chaplin" ], "mainActors": [ @@ -3344,7 +3344,7 @@ "Comedy", "Drama" ], - "datePublished": "1925-07-13", + "datePublished": "1925-09-27", "rating": "Passed", "ratingValue": 8.1, "bestRating": 10, @@ -3355,10 +3355,10 @@ }, { "title": "Gone with the Wind", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYjUyZWZkM2UtMzYxYy00ZmQ3LWFmZTQtOGE2YjBkNjA3YWZlXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYjUyZWZkM2UtMzYxYy00ZmQ3LWFmZTQtOGE2YjBkNjA3YWZlXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", "summary": "A sheltered and manipulative Southern belle and a roguish profiteer face off in a turbulent romance as the society around them crumbles with the end of slavery and is rebuilt during the Civil War and Reconstruction periods.", "duration": "PT3H58M", - "director": [ + "directors": [ "Victor Fleming", "George Cukor", "Sam Wood" @@ -3374,7 +3374,7 @@ "War" ], "datePublished": "1940-01-17", - "rating": "Passed", + "rating": "G", "ratingValue": 8.2, "bestRating": 10, "worstRating": 1, @@ -3386,10 +3386,10 @@ }, { "title": "Il gattopardo", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYTc0ZTQxY2EtNTUyYS00MTM5LWIyOTQtYzQ0YTBiNzc2YjE0XkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYTc0ZTQxY2EtNTUyYS00MTM5LWIyOTQtYzQ0YTBiNzc2YjE0XkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", "summary": "The Prince of Salina, a noble aristocrat of impeccable integrity, tries to preserve his family and class amid the tumultuous social upheavals of 1860s Sicily.", "duration": "PT3H6M", - "director": [ + "directors": [ "Luchino Visconti" ], "mainActors": [ @@ -3403,21 +3403,21 @@ ], "datePublished": "1963-03-29", "rating": "PG", - "ratingValue": 8, + "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, "writers": [ "Giuseppe Tomasi di Lampedusa", - "Suso Cecchi D'Amico", + "Suso Cecchi D'Amico", "Pasquale Festa Campanile" ] }, { "title": "Bronenosets Potemkin", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZjJiN2RkODUtNTIxNC00N2Y4LTgxOWQtODIwYjU2MzRhZTAxXkEyXkFqcGdeQXVyNjc5NjEzNA@@._V1_.jpg", - "summary": "In the midst of the Russian Revolution of 1905, the crew of the battleship Potemkin mutiny against the brutal, tyrannical regime of the vessel's officers. The resulting street demonstration in Odessa brings on a police massacre.", - "duration": "PT1H6M", - "director": [ + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZjJiN2RkODUtNTIxNC00N2Y4LTgxOWQtODIwYjU2MzRhZTAxXkEyXkFqcGdeQXVyNjc5NjEzNA@@._V1_.jpg", + "summary": "In the midst of the Russian Revolution of 1905, the crew of the battleship Potemkin mutiny against the brutal, tyrannical regime of the vessel's officers. The resulting street demonstration in Odessa brings on a police massacre.", + "duration": "PT1H15M", + "directors": [ "Sergei Eisenstein" ], "mainActors": [ @@ -3431,7 +3431,7 @@ "Thriller" ], "datePublished": "1925-12-24", - "rating": "Not Rated", + "rating": "G", "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, @@ -3443,10 +3443,10 @@ }, { "title": "Anatomy of a Murder", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMzM0MzE2ZTAtZTBjZS00MTk5LTg5OTEtNjNmYmQ5NzU2OTUyXkEyXkFqcGdeQXVyNDY2MTk1ODk@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNzIzZTNlZmUtMWY0YS00MjY2LTg2NjUtNTZhMzQ0MTUyMDYxXkEyXkFqcGdeQXVyNjc5NjEzNA@@._V1_.jpg", "summary": "An upstate Michigan lawyer defends a soldier who claims he killed an innkeeper due to temporary insanity after the victim raped his wife. What is the truth, and will he win his case?", "duration": "PT2H41M", - "director": [ + "directors": [ "Otto Preminger" ], "mainActors": [ @@ -3459,7 +3459,7 @@ "Mystery" ], "datePublished": "1959-07-13", - "rating": "Not Rated", + "rating": "R", "ratingValue": 8, "bestRating": 10, "worstRating": 1, @@ -3469,11 +3469,11 @@ ] }, { - "title": "It's a Wonderful Life", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZjc4NDZhZWMtNGEzYS00ZWU2LThlM2ItNTA0YzQ0OTExMTE2XkEyXkFqcGdeQXVyNjUwMzI2NzU@._V1_.jpg", + "title": "It's a Wonderful Life", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZjc4NDZhZWMtNGEzYS00ZWU2LThlM2ItNTA0YzQ0OTExMTE2XkEyXkFqcGdeQXVyNjUwMzI2NzU@._V1_.jpg", "summary": "An angel is sent from Heaven to help a desperately frustrated businessman by showing him what life would have been like if he had never existed.", "duration": "PT2H10M", - "director": [ + "directors": [ "Frank Capra" ], "mainActors": [ @@ -3486,8 +3486,8 @@ "Family", "Fantasy" ], - "datePublished": "1947-01-07", - "rating": "PG", + "datePublished": "1947-04-17", + "rating": "G", "ratingValue": 8.6, "bestRating": 10, "worstRating": 1, @@ -3499,10 +3499,10 @@ }, { "title": "Invasion of the Body Snatchers", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYTExYjM3MDYtMzg4MC00MjU4LTljZjAtYzdlMTFmYTJmYTE4XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYTExYjM3MDYtMzg4MC00MjU4LTljZjAtYzdlMTFmYTJmYTE4XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", "summary": "A small-town doctor learns that the population of his community is being replaced by emotionless alien duplicates.", "duration": "PT1H20M", - "director": [ + "directors": [ "Don Siegel" ], "mainActors": [ @@ -3515,7 +3515,7 @@ "Horror", "Sci-Fi" ], - "datePublished": "1956-02-05", + "datePublished": "1956-04-09", "rating": "Approved", "ratingValue": 7.7, "bestRating": 10, @@ -3528,10 +3528,10 @@ }, { "title": "An American in Paris", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMzFkNGM0YTUtZjY5Ny00NzBkLWE1NTAtYzUxNjUyZmJlODMwL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMzFkNGM0YTUtZjY5Ny00NzBkLWE1NTAtYzUxNjUyZmJlODMwL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", "summary": "Three friends struggle to find work in Paris. Things become more complicated when two of them fall in love with the same woman.", "duration": "PT1H54M", - "director": [ + "directors": [ "Vincente Minnelli" ], "mainActors": [ @@ -3544,8 +3544,8 @@ "Musical", "Romance" ], - "datePublished": "1951-11-11", - "rating": "Passed", + "datePublished": "1951-12-21", + "rating": "G", "ratingValue": 7.2, "bestRating": 10, "worstRating": 1, @@ -3555,10 +3555,10 @@ }, { "title": "The Red Shoes", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNGY3NzRmMzQtYzljOC00NGZjLTk4NjQtMzc3YzMwOTVjYzE3XkEyXkFqcGdeQXVyNjc5NjEzNA@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNGY3NzRmMzQtYzljOC00NGZjLTk4NjQtMzc3YzMwOTVjYzE3XkEyXkFqcGdeQXVyNjc5NjEzNA@@._V1_.jpg", "summary": "A young ballet dancer is torn between the man she loves and her pursuit to become a prima ballerina.", "duration": "PT2H15M", - "director": [ + "directors": [ "Michael Powell", "Emeric Pressburger" ], @@ -3585,10 +3585,10 @@ }, { "title": "City Lights", - "posterURL": "https://m.media-amazon.com/images/M/MV5BY2I4MmM1N2EtM2YzOS00OWUzLTkzYzctNDc5NDg2N2IyODJmXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BY2I4MmM1N2EtM2YzOS00OWUzLTkzYzctNDc5NDg2N2IyODJmXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", "summary": "With the aid of a wealthy erratic tippler, a dewy-eyed tramp who has fallen in love with a sightless flower girl accumulates money to be able to help her medically.", "duration": "PT1H27M", - "director": [ + "directors": [ "Charles Chaplin" ], "mainActors": [ @@ -3601,7 +3601,7 @@ "Drama", "Romance" ], - "datePublished": "1931-03-07", + "datePublished": "1931-04-03", "rating": "G", "ratingValue": 8.5, "bestRating": 10, @@ -3614,10 +3614,10 @@ }, { "title": "Mary Poppins", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNmJkODczNjItNDI5Yy00MGI1LTkyOWItZDNmNjM4ZGI1ZDVlL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNmJkODczNjItNDI5Yy00MGI1LTkyOWItZDNmNjM4ZGI1ZDVlL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_.jpg", "summary": "In turn of the century London, a magical nanny employs music and adventure to help two neglected children become closer to their father.", "duration": "PT2H19M", - "director": [ + "directors": [ "Robert Stevenson" ], "mainActors": [ @@ -3630,7 +3630,7 @@ "Family", "Fantasy" ], - "datePublished": "1965-06-18", + "datePublished": "1965-01-15", "rating": "G", "ratingValue": 7.8, "bestRating": 10, @@ -3643,10 +3643,10 @@ }, { "title": "Rio Bravo", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZDVhMTk1NjUtYjc0OS00OTE1LTk1NTYtYWMzMDI5OTlmYzU2XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZDVhMTk1NjUtYjc0OS00OTE1LTk1NTYtYWMzMDI5OTlmYzU2XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", "summary": "A small-town sheriff in the American West enlists the help of a disabled man, a drunk, and a young gunfighter in his efforts to hold in jail the brother of the local bad guy.", "duration": "PT2H21M", - "director": [ + "directors": [ "Howard Hawks" ], "mainActors": [ @@ -3658,8 +3658,8 @@ "Drama", "Western" ], - "datePublished": "1959-04-04", - "rating": "Passed", + "datePublished": "1959-03-30", + "rating": "PG", "ratingValue": 8, "bestRating": 10, "worstRating": 1, @@ -3671,10 +3671,10 @@ }, { "title": "Sweet Smell of Success", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjE5NTU3YWYtOWIxNi00YWZhLTg2NzktYzVjZWY5MDQ4NzVlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", - "summary": "Powerful but unethical Broadway columnist J.J. Hunsecker coerces unscrupulous press agent Sidney Falco into breaking up his sister's romance with a jazz musician.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjE5NTU3YWYtOWIxNi00YWZhLTg2NzktYzVjZWY5MDQ4NzVlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "summary": "Powerful but unethical Broadway columnist J.J. Hunsecker coerces unscrupulous press agent Sidney Falco into breaking up his sister's romance with a jazz musician.", "duration": "PT1H36M", - "director": [ + "directors": [ "Alexander Mackendrick" ], "mainActors": [ @@ -3686,8 +3686,8 @@ "Drama", "Film-Noir" ], - "datePublished": "1957-07-04", - "rating": "Approved", + "datePublished": "1957-06-29", + "rating": "PG", "ratingValue": 8, "bestRating": 10, "worstRating": 1, @@ -3699,10 +3699,10 @@ }, { "title": "To Be or Not to Be", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYTIwNDcyMjktMTczMy00NDM5LTlhNDEtMmE3NGVjOTM2YjQ3XkEyXkFqcGdeQXVyNjc0MzMzNjA@._V1_.jpg", - "summary": "During the Nazi occupation of Poland, an acting troupe becomes embroiled in a Polish soldier's efforts to track down a German spy.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYTIwNDcyMjktMTczMy00NDM5LTlhNDEtMmE3NGVjOTM2YjQ3XkEyXkFqcGdeQXVyNjc0MzMzNjA@._V1_.jpg", + "summary": "During the Nazi occupation of Poland, an acting troupe becomes embroiled in a Polish soldier's efforts to track down a German spy.", "duration": "PT1H39M", - "director": [ + "directors": [ "Ernst Lubitsch" ], "mainActors": [ @@ -3715,8 +3715,8 @@ "Romance", "War" ], - "datePublished": "1942-03-06", - "rating": "Passed", + "datePublished": "1942-03-09", + "rating": "PG", "ratingValue": 8.2, "bestRating": 10, "worstRating": 1, @@ -3728,15 +3728,15 @@ }, { "title": "Miracle on 34th Street", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNjRkOGEwYTUtY2E5Yy00ODg4LTk2ZWItY2IyMzUxOGVhMTM1XkEyXkFqcGdeQXVyNDk0MDg4NDk@._V1_.jpg", - "summary": "After a divorced New York mother hires a nice old man to play Santa Claus at Macy's, she is startled by his claim to be the genuine article. When his sanity is questioned, a lawyer defends him in court by arguing that he's not mis...", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNjRkOGEwYTUtY2E5Yy00ODg4LTk2ZWItY2IyMzUxOGVhMTM1XkEyXkFqcGdeQXVyNDk0MDg4NDk@._V1_.jpg", + "summary": "After a divorced New York mother hires a nice old man to play Santa Claus at Macy's, she is startled by his claim to be the genuine article. When his sanity is questioned, a lawyer defends him in court by arguing that he's not mis...", "duration": "PT1H36M", - "director": [ + "directors": [ "George Seaton" ], "mainActors": [ "Edmund Gwenn", - "Maureen O'Hara", + "Maureen O'Hara", "John Payne" ], "genres": [ @@ -3745,7 +3745,7 @@ "Family" ], "datePublished": "1947-07-04", - "rating": "Not Rated", + "rating": "G", "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, @@ -3756,10 +3756,10 @@ }, { "title": "His Girl Friday", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZDVmZTZkYjMtNmViZC00ODEzLTgwNDAtNmQ3OGQwOWY5YjFmXkEyXkFqcGdeQXVyNDY2MTk1ODk@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZDVmZTZkYjMtNmViZC00ODEzLTgwNDAtNmQ3OGQwOWY5YjFmXkEyXkFqcGdeQXVyNDY2MTk1ODk@._V1_.jpg", "summary": "A newspaper editor uses every trick in the book to keep his ace reporter ex-wife from remarrying.", "duration": "PT1H32M", - "director": [ + "directors": [ "Howard Hawks" ], "mainActors": [ @@ -3773,7 +3773,7 @@ "Romance" ], "datePublished": "1940-01-18", - "rating": "Passed", + "rating": "PG", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -3785,10 +3785,10 @@ }, { "title": "The African Queen", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYzM3YjE2NGMtODY3Zi00NTY0LWE4Y2EtMTE5YzNmM2U1NTg2XkEyXkFqcGdeQXVyMTY5Nzc4MDY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTg4NDk5NzY4M15BMl5BanBnXkFtZTgwMzUwMTY3MjE@._V1_.jpg", "summary": "In WWI East Africa, a gin-swilling Canadian riverboat captain is persuaded by a strait-laced English missionary to undertake a trip up a treacherous river and use his boat to attack a German gunship.", "duration": "PT1H45M", - "director": [ + "directors": [ "John Huston" ], "mainActors": [ @@ -3801,8 +3801,8 @@ "Drama", "Romance" ], - "datePublished": "1952-03-21", - "rating": "PG", + "datePublished": "1952-04-24", + "rating": "G", "ratingValue": 7.7, "bestRating": 10, "worstRating": 1, @@ -3814,10 +3814,10 @@ }, { "title": "The French Connection", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOTZhY2E3NmItMGIwNi00OTA2LThkYmEtODFiZTM0NGI0ZWU5XkEyXkFqcGdeQXVyNTc1NTQxODI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOTZhY2E3NmItMGIwNi00OTA2LThkYmEtODFiZTM0NGI0ZWU5XkEyXkFqcGdeQXVyNTc1NTQxODI@._V1_.jpg", "summary": "A pair of NYPD detectives in the Narcotics Bureau stumble onto a heroin smuggling ring based in Marseilles, but stopping them and capturing their leaders proves an elusive goal.", "duration": "PT1H44M", - "director": [ + "directors": [ "William Friedkin" ], "mainActors": [ @@ -3843,10 +3843,10 @@ }, { "title": "Some Like It Hot", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNzAyOGIxYjAtMGY2NC00ZTgyLWIwMWEtYzY0OWQ4NDFjOTc5XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNzAyOGIxYjAtMGY2NC00ZTgyLWIwMWEtYzY0OWQ4NDFjOTc5XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", "summary": "After two male musicians witness a mob hit, they flee the state in an all-female band disguised as women, but further complications set in.", "duration": "PT2H1M", - "director": [ + "directors": [ "Billy Wilder" ], "mainActors": [ @@ -3859,8 +3859,8 @@ "Music", "Romance" ], - "datePublished": "1959-03-19", - "rating": "Passed", + "datePublished": "1959-05-14", + "rating": "PG", "ratingValue": 8.2, "bestRating": 10, "worstRating": 1, @@ -3872,10 +3872,10 @@ }, { "title": "Freaks", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjMyYjgyOTQtZDVlZS00NTQ0LWJiNDItNGRlZmM3Yzc0N2Y0XkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_.jpg", - "summary": "A circus' beautiful trapeze artist agrees to marry the leader of side-show performers, but his deformed friends discover she is only marrying him for his inheritance.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjMyYjgyOTQtZDVlZS00NTQ0LWJiNDItNGRlZmM3Yzc0N2Y0XkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_.jpg", + "summary": "A circus' beautiful trapeze artist agrees to marry the leader of side-show performers, but his deformed friends discover she is only marrying him for his inheritance.", "duration": "PT1H4M", - "director": [ + "directors": [ "Tod Browning" ], "mainActors": [ @@ -3887,28 +3887,28 @@ "Drama", "Horror" ], - "datePublished": "1932-02-20", - "rating": "Not Rated", + "datePublished": "1932-06-04", + "rating": "G", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, "writers": [ - "Clarence Aaron 'Tod' Robbins", + "Clarence Aaron 'Tod' Robbins", "Willis Goldbeck", "Leon Gordon" ] }, { "title": "Night of the Living Dead", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMzRmN2E1ZDUtZDc2ZC00ZmI3LTkwOTctNzE2ZDIzMGJiMTYzXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMzRmN2E1ZDUtZDc2ZC00ZmI3LTkwOTctNzE2ZDIzMGJiMTYzXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", "summary": "A ragtag group of survivors barricade themselves in an old farmhouse to remain safe from a horde of flesh-eating ghouls that are ravaging the Northeast portion of the United States.", "duration": "PT1H36M", - "director": [ + "directors": [ "George A. Romero" ], "mainActors": [ "Duane Jones", - "Judith O'Dea", + "Judith O'Dea", "Karl Hardman" ], "genres": [ @@ -3916,7 +3916,7 @@ "Thriller" ], "datePublished": "1968-10-04", - "rating": "Not Rated", + "rating": "R", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -3927,10 +3927,10 @@ }, { "title": "Gentlemen Prefer Blondes", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNTRhZDViOTYtOGY5OC00ODk4LWJkZWYtYjFkZWZkMzVmNjY2XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_.jpg", - "summary": "Showgirls Lorelei Lee and Dorothy Shaw travel to Paris, pursued by a private detective hired by the suspicious father of Lorelei's fiancé, as well as a rich, enamored old man and many other doting admirers.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNTRhZDViOTYtOGY5OC00ODk4LWJkZWYtYjFkZWZkMzVmNjY2XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_.jpg", + "summary": "Showgirls Lorelei Lee and Dorothy Shaw travel to Paris, pursued by a private detective hired by the suspicious father of Lorelei's fiancé, as well as a rich, enamored old man and many other doting admirers.", "duration": "PT1H31M", - "director": [ + "directors": [ "Howard Hawks" ], "mainActors": [ @@ -3943,7 +3943,8 @@ "Musical", "Romance" ], - "rating": "Approved", + "datePublished": "1953-09-04", + "rating": "PG", "ratingValue": 7.1, "bestRating": 10, "worstRating": 1, @@ -3954,11 +3955,11 @@ ] }, { - "title": "Don't Look Now", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNDZmYzJmMDQtM2NkNi00NjU0LTlmZGItNDFjZjVkZjhmNDcyXkEyXkFqcGdeQXVyMTA1NTM1NDI2._V1_.jpg", + "title": "Don't Look Now", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNDZmYzJmMDQtM2NkNi00NjU0LTlmZGItNDFjZjVkZjhmNDcyXkEyXkFqcGdeQXVyMTA1NTM1NDI2._V1_.jpg", "summary": "A married couple grieving the recent death of their young daughter are in Venice when they encounter two elderly sisters, one of whom is psychic and brings a warning from beyond.", "duration": "PT1H50M", - "director": [ + "directors": [ "Nicolas Roeg" ], "mainActors": [ @@ -3971,7 +3972,8 @@ "Horror", "Mystery" ], - "rating": "R", + "datePublished": "1974-01-18", + "rating": "18A", "ratingValue": 7.1, "bestRating": 10, "worstRating": 1, @@ -3983,10 +3985,10 @@ }, { "title": "The Best Years of Our Lives", - "posterURL": "https://m.media-amazon.com/images/M/MV5BY2RmNTRjYzctODI4Ni00MzQyLWEyNTAtNjU0N2JkMTNhNjJkXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BY2RmNTRjYzctODI4Ni00MzQyLWEyNTAtNjU0N2JkMTNhNjJkXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", "summary": "Three World War II veterans, two of them traumatized or disabled, return home to the American midwest to discover that they and their families have been irreparably changed.", "duration": "PT2H50M", - "director": [ + "directors": [ "William Wyler" ], "mainActors": [ @@ -3999,8 +4001,8 @@ "Romance", "War" ], - "datePublished": "1947-05-29", - "rating": "Approved", + "datePublished": "1948-04-05", + "rating": "PG", "ratingValue": 8.1, "bestRating": 10, "worstRating": 1, @@ -4011,10 +4013,10 @@ }, { "title": "Kumonosu-jô", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNGYxZjA2M2ItYTRmNS00NzRmLWJkYzgtYTdiNGFlZDI5ZjNmXkEyXkFqcGdeQXVyNDE5MTU2MDE@._V1_.jpg", - "summary": "A war-hardened general, egged on by his ambitious wife, works to fulfill a prophecy that he would become lord of Spider's Web Castle.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNGYxZjA2M2ItYTRmNS00NzRmLWJkYzgtYTdiNGFlZDI5ZjNmXkEyXkFqcGdeQXVyNDE5MTU2MDE@._V1_.jpg", + "summary": "A war-hardened general, egged on by his ambitious wife, works to fulfill a prophecy that he would become lord of Spider's Web Castle.", "duration": "PT1H50M", - "director": [ + "directors": [ "Akira Kurosawa" ], "mainActors": [ @@ -4025,8 +4027,8 @@ "genres": [ "Drama" ], - "datePublished": "1961-11-22", - "rating": "Not Rated", + "datePublished": "1957-01-15", + "rating": "13+", "ratingValue": 8.1, "bestRating": 10, "worstRating": 1, @@ -4038,10 +4040,10 @@ }, { "title": "The Manchurian Candidate", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOTY0ZTA1ZjUtN2MyNi00ZGRmLWExYmMtOTkyNzI1NGQ2Y2RlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOTY0ZTA1ZjUtN2MyNi00ZGRmLWExYmMtOTkyNzI1NGQ2Y2RlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", "summary": "An American POW in the Korean War is brainwashed as an unwitting assassin for an international Communist conspiracy.", "duration": "PT2H6M", - "director": [ + "directors": [ "John Frankenheimer" ], "mainActors": [ @@ -4053,8 +4055,7 @@ "Drama", "Thriller" ], - "datePublished": "1962-10-24", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, @@ -4066,10 +4067,10 @@ }, { "title": "The Searchers", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYWQ3YWJiMDEtMDBhNS00YjY1LTkzNmEtY2U4Njg4MjQ3YWE3XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", - "summary": "An American Civil War veteran embarks on a years-long journey to rescue his niece from the Comanches after the rest of his brother's family is massacred in a raid on their Texas farm.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYWQ3YWJiMDEtMDBhNS00YjY1LTkzNmEtY2U4Njg4MjQ3YWE3XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", + "summary": "An American Civil War veteran embarks on a years-long journey to rescue his niece from the Comanches after the rest of his brother's family is massacred in a raid on their Texas farm.", "duration": "PT1H59M", - "director": [ + "directors": [ "John Ford" ], "mainActors": [ @@ -4083,7 +4084,7 @@ "Western" ], "datePublished": "1956-05-26", - "rating": "Passed", + "rating": "G", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -4094,10 +4095,10 @@ }, { "title": "Spartacus", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjc4MTUxN2UtMmU1NC00MjQyLTk3YTYtZTQ0YzEzZDc0Njc0XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjc4MTUxN2UtMmU1NC00MjQyLTk3YTYtZTQ0YzEzZDc0Njc0XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", "summary": "The slave Spartacus survives brutal training as a gladiator and leads a violent revolt against the decadent Roman Republic, as the ambitious Crassus seeks to gain power by crushing the uprising.", "duration": "PT3H17M", - "director": [ + "directors": [ "Stanley Kubrick", "Anthony Mann" ], @@ -4124,10 +4125,10 @@ }, { "title": "Forbidden Planet", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOTdmODZkNmQtYjU4Mi00MTcyLTg5YmEtNmVjMWU1M2Y5NzgyXkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_.jpg", - "summary": "A starship crew in the 23rd century goes to investigate the silence of a distant planet's colony, only to find just two survivors, a powerful robot, and the deadly secret of a lost civilization.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOTdmODZkNmQtYjU4Mi00MTcyLTg5YmEtNmVjMWU1M2Y5NzgyXkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_.jpg", + "summary": "A starship crew in the 23rd century goes to investigate the silence of a distant planet's colony, only to find just two survivors, a powerful robot, and the deadly secret of a lost civilization.", "duration": "PT1H38M", - "director": [ + "directors": [ "Fred M. Wilcox" ], "mainActors": [ @@ -4139,8 +4140,8 @@ "Adventure", "Sci-Fi" ], - "datePublished": "1958-06-13", - "rating": "G", + "datePublished": "1956-04-28", + "rating": "PG", "ratingValue": 7.5, "bestRating": 10, "worstRating": 1, @@ -4152,10 +4153,10 @@ }, { "title": "The Birth of a Nation", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYTM4ZDhiYTQtYzExNC00YjVlLTg2YWYtYTk3NTAzMzcwNTExXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", - "summary": "The Stoneman family finds its friendship with the Camerons affected by the Civil War, both fighting in opposite armies. The development of the war in their lives plays through to Lincoln's assassination and the birth of the Ku Klu...", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYTM4ZDhiYTQtYzExNC00YjVlLTg2YWYtYTk3NTAzMzcwNTExXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", + "summary": "The Stoneman family finds its friendship with the Camerons affected by the Civil War, both fighting in opposite armies. The development of the war in their lives plays through to Lincoln's assassination and the birth of the Ku Klu...", "duration": "PT3H15M", - "director": [ + "directors": [ "D.W. Griffith" ], "mainActors": [ @@ -4169,7 +4170,7 @@ "War" ], "datePublished": "1915-03-21", - "rating": "TV-PG", + "rating": "PG", "ratingValue": 6.2, "bestRating": 10, "worstRating": 1, @@ -4181,10 +4182,10 @@ }, { "title": "The Bridge on the River Kwai", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOGY5NmNlMmQtYzRlYy00NGQ5LWFkYjYtNzExZmQyMTg0ZDA0XkEyXkFqcGdeQXVyNDIzMzcwNjc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOGY5NmNlMmQtYzRlYy00NGQ5LWFkYjYtNzExZmQyMTg0ZDA0XkEyXkFqcGdeQXVyNDIzMzcwNjc@._V1_.jpg", "summary": "British POWs are forced to build a railway bridge across the river Kwai for their Japanese captors in occupied Burma, not knowing that the allied forces are planning a daring commando raid through the jungle to destroy it.", "duration": "PT2H41M", - "director": [ + "directors": [ "David Lean" ], "mainActors": [ @@ -4197,7 +4198,6 @@ "Drama", "War" ], - "datePublished": "1957-12-14", "rating": "PG", "ratingValue": 8.1, "bestRating": 10, @@ -4210,10 +4210,10 @@ }, { "title": "Goldfinger", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTQ2MzE0OTU3NV5BMl5BanBnXkFtZTcwNjQxNTgzNA@@._V1_.jpg", - "summary": "While investigating a gold magnate's smuggling, James Bond uncovers a plot to contaminate the Fort Knox gold reserve.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTQ2MzE0OTU3NV5BMl5BanBnXkFtZTcwNjQxNTgzNA@@._V1_.jpg", + "summary": "While investigating a gold magnate's smuggling, James Bond uncovers a plot to contaminate the Fort Knox gold reserve.", "duration": "PT1H50M", - "director": [ + "directors": [ "Guy Hamilton" ], "mainActors": [ @@ -4226,8 +4226,8 @@ "Adventure", "Thriller" ], - "datePublished": "1965-01-09", - "rating": "PG", + "datePublished": "1964-09-20", + "rating": "13+", "ratingValue": 7.7, "bestRating": 10, "worstRating": 1, @@ -4239,10 +4239,10 @@ }, { "title": "Paths of Glory", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOTI5Nzc0OTMtYzBkMS00NjkxLThmM2UtNjM2ODgxN2M5NjNkXkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOTI5Nzc0OTMtYzBkMS00NjkxLThmM2UtNjM2ODgxN2M5NjNkXkEyXkFqcGdeQXVyNjQ2MjQ5NzM@._V1_.jpg", "summary": "After refusing to attack an enemy position, a general accuses the soldiers of cowardice and their commanding officer must defend them.", "duration": "PT1H28M", - "director": [ + "directors": [ "Stanley Kubrick" ], "mainActors": [ @@ -4254,8 +4254,8 @@ "Drama", "War" ], - "datePublished": "1957-12-25", - "rating": "Approved", + "datePublished": "1958-03-09", + "rating": "PG", "ratingValue": 8.4, "bestRating": 10, "worstRating": 1, @@ -4267,10 +4267,10 @@ }, { "title": "Peeping Tom", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYWU1ZDc0YjMtNjFhYS00NGZiLTk2MzgtNmU0Mzk3ZjdkMTA2XkEyXkFqcGdeQXVyNDE0OTU3NDY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYWU1ZDc0YjMtNjFhYS00NGZiLTk2MzgtNmU0Mzk3ZjdkMTA2XkEyXkFqcGdeQXVyNDE0OTU3NDY@._V1_.jpg", "summary": "A young man murders women, using a movie camera to film their dying expressions of terror.", "duration": "PT1H41M", - "director": [ + "directors": [ "Michael Powell" ], "mainActors": [ @@ -4283,7 +4283,7 @@ "Horror", "Thriller" ], - "datePublished": "1960-05-16", + "datePublished": "1961-06-30", "rating": "Not Rated", "ratingValue": 7.6, "bestRating": 10, @@ -4294,10 +4294,10 @@ }, { "title": "The Day the Earth Stood Still", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZGJjN2UwMGYtMDMxZC00YzFlLWFhMTMtZjY4Nzg5ZGQ0YTE5XkEyXkFqcGdeQXVyMzg1ODEwNQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZGJjN2UwMGYtMDMxZC00YzFlLWFhMTMtZjY4Nzg5ZGQ0YTE5XkEyXkFqcGdeQXVyMzg1ODEwNQ@@._V1_.jpg", "summary": "An alien lands in Washington, D.C. and tells the people of Earth that they must live peacefully or be destroyed as a danger to other planets.", "duration": "PT1H32M", - "director": [ + "directors": [ "Robert Wise" ], "mainActors": [ @@ -4309,7 +4309,6 @@ "Drama", "Sci-Fi" ], - "datePublished": "1951-09-20", "rating": "G", "ratingValue": 7.8, "bestRating": 10, @@ -4321,10 +4320,10 @@ }, { "title": "The Apartment", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNzkwODFjNzItMmMwNi00MTU5LWE2MzktM2M4ZDczZGM1MmViXkEyXkFqcGdeQXVyNDY2MTk1ODk@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNzkwODFjNzItMmMwNi00MTU5LWE2MzktM2M4ZDczZGM1MmViXkEyXkFqcGdeQXVyNDY2MTk1ODk@._V1_.jpg", "summary": "A Manhattan insurance clerk tries to rise in his company by letting its executives use his apartment for trysts, but complications and a romance of his own ensue.", "duration": "PT2H5M", - "director": [ + "directors": [ "Billy Wilder" ], "mainActors": [ @@ -4338,7 +4337,7 @@ "Romance" ], "datePublished": "1960-06-29", - "rating": "Approved", + "rating": "PG", "ratingValue": 8.3, "bestRating": 10, "worstRating": 1, @@ -4349,10 +4348,10 @@ }, { "title": "Ran", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMmU1NGYwZWYtOWExNi00ZTEyLTgwMmUtM2ZlMDVjNWM4YjVlXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMmU1NGYwZWYtOWExNi00ZTEyLTgwMmUtM2ZlMDVjNWM4YjVlXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", "summary": "In Medieval Japan, an elderly warlord retires, handing over his empire to his three sons. However, he vastly underestimates how the new-found power will corrupt them and cause them to turn on each other...and him.", "duration": "PT2H40M", - "director": [ + "directors": [ "Akira Kurosawa" ], "mainActors": [ @@ -4366,7 +4365,7 @@ "War" ], "datePublished": "1985-06-01", - "rating": "R", + "rating": "PG", "ratingValue": 8.2, "bestRating": 10, "worstRating": 1, @@ -4378,10 +4377,10 @@ }, { "title": "The Lord of the Rings: The Two Towers", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZGMxZTdjZmYtMmE2Ni00ZTdkLWI5NTgtNjlmMjBiNzU2MmI5XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", - "summary": "While Frodo and Sam edge closer to Mordor with the help of the shifty Gollum, the divided fellowship makes a stand against Sauron's new ally, Saruman, and his hordes of Isengard.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZGMxZTdjZmYtMmE2Ni00ZTdkLWI5NTgtNjlmMjBiNzU2MmI5XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", + "summary": "While Frodo and Sam edge closer to Mordor with the help of the shifty Gollum, the divided fellowship makes a stand against Sauron's new ally, Saruman, and his hordes of Isengard.", "duration": "PT2H59M", - "director": [ + "directors": [ "Peter Jackson" ], "mainActors": [ @@ -4395,7 +4394,7 @@ "Drama" ], "datePublished": "2002-12-18", - "rating": "PG-13", + "rating": "PA", "ratingValue": 8.8, "bestRating": 10, "worstRating": 1, @@ -4407,10 +4406,10 @@ }, { "title": "Rebel Without a Cause", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYzk2ZDU3MmMtMDBmMi00YWIyLTkxM2YtZjg3MzgyOTAzZjg0XkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYzk2ZDU3MmMtMDBmMi00YWIyLTkxM2YtZjg3MzgyOTAzZjg0XkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", "summary": "A rebellious young man with a troubled past comes to a new town, finding friends and enemies.", "duration": "PT1H51M", - "director": [ + "directors": [ "Nicholas Ray" ], "mainActors": [ @@ -4421,8 +4420,8 @@ "genres": [ "Drama" ], - "datePublished": "1955-10-27", - "rating": "PG-13", + "datePublished": "1955-11-24", + "rating": "14A", "ratingValue": 7.6, "bestRating": 10, "worstRating": 1, @@ -4434,10 +4433,10 @@ }, { "title": "The Birds", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTAxNDA1ODc5MDleQTJeQWpwZ15BbWU4MDg2MDA4OTEx._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTAxNDA1ODc5MDleQTJeQWpwZ15BbWU4MDg2MDA4OTEx._V1_.jpg", "summary": "A wealthy San Francisco socialite pursues a potential boyfriend to a small Northern California town that slowly takes a turn for the bizarre when birds of all kinds suddenly begin to attack people.", "duration": "PT1H59M", - "director": [ + "directors": [ "Alfred Hitchcock" ], "mainActors": [ @@ -4450,8 +4449,8 @@ "Horror", "Mystery" ], - "datePublished": "1963-03-29", - "rating": "PG-13", + "datePublished": "1963-03-28", + "rating": "PG", "ratingValue": 7.6, "bestRating": 10, "worstRating": 1, @@ -4462,10 +4461,10 @@ }, { "title": "Duck Soup", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYmYxZGU2NWYtNzQxZS00NmEyLWIzN2YtMDk5MWM0ODc5ZTE4XkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_.jpg", - "summary": "Rufus T. Firefly is named the dictator of bankrupt Freedonia and declares war on neighboring Sylvania over the love of his wealthy backer Mrs. Teasdale, contending with two inept spies who can't seem to keep straight which side th...", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYmYxZGU2NWYtNzQxZS00NmEyLWIzN2YtMDk5MWM0ODc5ZTE4XkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_.jpg", + "summary": "Rufus T. Firefly is named the dictator of bankrupt Freedonia and declares war on neighboring Sylvania over the love of his wealthy backer Mrs. Teasdale, contending with two inept spies who can't seem to keep straight which side th...", "duration": "PT1H9M", - "director": [ + "directors": [ "Leo McCarey" ], "mainActors": [ @@ -4477,7 +4476,7 @@ "Comedy", "Musical" ], - "datePublished": "1933-11-17", + "datePublished": "1933-12-24", "rating": "Not Rated", "ratingValue": 7.8, "bestRating": 10, @@ -4489,11 +4488,11 @@ ] }, { - "title": "One Flew Over the Cuckoo's Nest", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZjA0OWVhOTAtYWQxNi00YzNhLWI4ZjYtNjFjZTEyYjJlNDVlL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "title": "One Flew Over the Cuckoo's Nest", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZjA0OWVhOTAtYWQxNi00YzNhLWI4ZjYtNjFjZTEyYjJlNDVlL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", "summary": "In the Fall of 1963, a Korean War veteran and criminal pleads insanity and is admitted to a mental institution, where he rallies up the scared patients against the tyrannical nurse.", "duration": "PT2H13M", - "director": [ + "directors": [ "Milos Forman" ], "mainActors": [ @@ -4505,7 +4504,7 @@ "Drama" ], "datePublished": "1975-11-19", - "rating": "R", + "rating": "13+", "ratingValue": 8.7, "bestRating": 10, "worstRating": 1, @@ -4517,10 +4516,10 @@ }, { "title": "Patton", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMmNhZmJhMmYtNjlkMC00MjhjLTk1NzMtMTNlMzYzNjZlMjNiXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMmNhZmJhMmYtNjlkMC00MjhjLTk1NzMtMTNlMzYzNjZlMjNiXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", "summary": "The World War II phase of the career of controversial American general George S. Patton.", "duration": "PT2H52M", - "director": [ + "directors": [ "Franklin J. Schaffner" ], "mainActors": [ @@ -4534,7 +4533,7 @@ "War" ], "datePublished": "1970-04-02", - "rating": "PG", + "rating": "14A", "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, @@ -4546,10 +4545,10 @@ }, { "title": "Mean Streets", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMWNmNGY3ZGMtYWQ3OC00Zjg4LWFiN2EtZjM2MDI1YzRiNjg3XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", - "summary": "A small-time hood tries to keep the peace between his friend Johnny and Johnny's creditors.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMWNmNGY3ZGMtYWQ3OC00Zjg4LWFiN2EtZjM2MDI1YzRiNjg3XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "summary": "A small-time hood tries to keep the peace between his friend Johnny and Johnny's creditors.", "duration": "PT1H52M", - "director": [ + "directors": [ "Martin Scorsese" ], "mainActors": [ @@ -4562,8 +4561,8 @@ "Drama", "Thriller" ], - "datePublished": "1973-10-14", - "rating": "R", + "datePublished": "1974-03-08", + "rating": "18+", "ratingValue": 7.2, "bestRating": 10, "worstRating": 1, @@ -4574,10 +4573,10 @@ }, { "title": "Dr. No", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNWNjNGU5ZjUtMzc0MC00MWY5LTkxMGUtMjcxZmM2MDYzYzQ4XkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNWNjNGU5ZjUtMzc0MC00MWY5LTkxMGUtMjcxZmM2MDYzYzQ4XkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", "summary": "A resourceful British government agent seeks answers in a case involving the disappearance of a colleague and the disruption of the American space program.", "duration": "PT1H50M", - "director": [ + "directors": [ "Terence Young" ], "mainActors": [ @@ -4603,10 +4602,10 @@ }, { "title": "Lady Bird", - "posterURL": "https://m.media-amazon.com/images/M/MV5BODhkZGE0NDQtZDc0Zi00YmQ4LWJiNmUtYTY1OGM1ODRmNGVkXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BODhkZGE0NDQtZDc0Zi00YmQ4LWJiNmUtYTY1OGM1ODRmNGVkXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_.jpg", "summary": "In 2002, an artistically inclined 17-year-old girl comes of age in Sacramento, California.", "duration": "PT1H34M", - "director": [ + "directors": [ "Greta Gerwig" ], "mainActors": [ @@ -4619,7 +4618,7 @@ "Drama" ], "datePublished": "2017-12-01", - "rating": "R", + "rating": "14A", "ratingValue": 7.4, "bestRating": 10, "worstRating": 1, @@ -4629,10 +4628,10 @@ }, { "title": "BlacKkKlansman", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjUyOTE1NjI0OF5BMl5BanBnXkFtZTgwMTM4ODQ5NTM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjUyOTE1NjI0OF5BMl5BanBnXkFtZTgwMTM4ODQ5NTM@._V1_.jpg", "summary": "Ron Stallworth, an African American police officer from Colorado Springs, Colorado, successfully infiltrates the local Ku Klux Klan branch aided by a Jewish surrogate who eventually becomes its leader. Based on actual events.", "duration": "PT2H15M", - "director": [ + "directors": [ "Spike Lee" ], "mainActors": [ @@ -4646,7 +4645,7 @@ "Crime" ], "datePublished": "2018-08-10", - "rating": "R", + "rating": "14A", "ratingValue": 7.5, "bestRating": 10, "worstRating": 1, @@ -4658,10 +4657,10 @@ }, { "title": "Eighth Grade", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMzVlYzgxYjAtYzhhZi00MDc1LTlkZDMtMTRhZWI0MTg5YTRjXkEyXkFqcGdeQXVyNTAzMTY4MDA@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMzVlYzgxYjAtYzhhZi00MDc1LTlkZDMtMTRhZWI0MTg5YTRjXkEyXkFqcGdeQXVyNTAzMTY4MDA@._V1_.jpg", "summary": "An introverted teenage girl tries to survive the last week of her disastrous eighth grade year before leaving to start high school.", "duration": "PT1H33M", - "director": [ + "directors": [ "Bo Burnham" ], "mainActors": [ @@ -4674,7 +4673,7 @@ "Drama" ], "datePublished": "2018-08-03", - "rating": "R", + "rating": "14A", "ratingValue": 7.4, "bestRating": 10, "worstRating": 1, @@ -4684,10 +4683,10 @@ }, { "title": "The Big Sick", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZjc1YzExMzYtNzVkZC00ODc3LTkxNzktMDI5YWZmMDQ2NTQ2XkEyXkFqcGdeQXVyMTA4NjE0NjEy._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BN2ExMTU2MmEtZTJiMS00MDg1LTljZmEtNGMzODc5OWM5ZGU4XkEyXkFqcGdeQXVyMjI0Mjg2NzE@._V1_.jpg", "summary": "Pakistan-born comedian Kumail Nanjiani and grad student Emily Gardner fall in love but struggle as their cultures clash. When Emily contracts a mysterious illness, Kumail finds himself forced to face her feisty parents, his family...", "duration": "PT2H", - "director": [ + "directors": [ "Michael Showalter" ], "mainActors": [ @@ -4701,7 +4700,7 @@ "Romance" ], "datePublished": "2017-07-14", - "rating": "R", + "rating": "16+", "ratingValue": 7.5, "bestRating": 10, "worstRating": 1, @@ -4712,10 +4711,10 @@ }, { "title": "La La Land", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMzUzNDM2NzM2MV5BMl5BanBnXkFtZTgwNTM3NTg4OTE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMzUzNDM2NzM2MV5BMl5BanBnXkFtZTgwNTM3NTg4OTE@._V1_.jpg", "summary": "While navigating their careers in Los Angeles, a pianist and an actress fall in love while attempting to reconcile their aspirations for the future.", "duration": "PT2H8M", - "director": [ + "directors": [ "Damien Chazelle" ], "mainActors": [ @@ -4729,7 +4728,7 @@ "Music" ], "datePublished": "2016-12-25", - "rating": "PG-13", + "rating": "PG", "ratingValue": 8, "bestRating": 10, "worstRating": 1, @@ -4739,10 +4738,10 @@ }, { "title": "Three Billboards Outside Ebbing, Missouri", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjI0ODcxNzM1N15BMl5BanBnXkFtZTgwMzIwMTEwNDI@._V1_.jpg", - "summary": "A mother personally challenges the local authorities to solve her daughter's murder when they fail to catch the culprit.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjI0ODcxNzM1N15BMl5BanBnXkFtZTgwMzIwMTEwNDI@._V1_.jpg", + "summary": "A mother personally challenges the local authorities to solve her daughter's murder when they fail to catch the culprit.", "duration": "PT1H55M", - "director": [ + "directors": [ "Martin McDonagh" ], "mainActors": [ @@ -4756,7 +4755,7 @@ "Drama" ], "datePublished": "2017-12-01", - "rating": "R", + "rating": "14A", "ratingValue": 8.1, "bestRating": 10, "worstRating": 1, @@ -4766,7 +4765,7 @@ }, { "title": "The Death of Stalin: Dictators, Murderers and Comrades... Oh My!", - "director": null, + "directors": null, "mainActors": [ "Simon Russell Beale", "Paul Chahidi", @@ -4784,10 +4783,10 @@ }, { "title": "Ant-Man and the Wasp", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYjcyYTk0N2YtMzc4ZC00Y2E0LWFkNDgtNjE1MzZmMGE1YjY1XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYjcyYTk0N2YtMzc4ZC00Y2E0LWFkNDgtNjE1MzZmMGE1YjY1XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_.jpg", "summary": "As Scott Lang balances being both a superhero and a father, Hope van Dyne and Dr. Hank Pym present an urgent new mission that finds the Ant-Man fighting alongside The Wasp to uncover secrets from their past.", "duration": "PT1H58M", - "director": [ + "directors": [ "Peyton Reed" ], "mainActors": [ @@ -4801,7 +4800,7 @@ "Comedy" ], "datePublished": "2018-07-06", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7, "bestRating": 10, "worstRating": 1, @@ -4813,10 +4812,10 @@ }, { "title": "Crazy Rich Asians", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTYxNDMyOTAxN15BMl5BanBnXkFtZTgwMDg1ODYzNTM@._V1_.jpg", - "summary": "This contemporary romantic comedy based on a global bestseller follows native New Yorker Rachel Chu to Singapore to meet her boyfriend's family.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTYxNDMyOTAxN15BMl5BanBnXkFtZTgwMDg1ODYzNTM@._V1_.jpg", + "summary": "This contemporary romantic comedy based on a global bestseller follows native New Yorker Rachel Chu to Singapore to meet her boyfriend's family.", "duration": "PT2H", - "director": [ + "directors": [ "Jon M. Chu" ], "mainActors": [ @@ -4830,7 +4829,7 @@ "Romance" ], "datePublished": "2018-08-15", - "rating": "PG-13", + "rating": "PG", "ratingValue": 6.9, "bestRating": 10, "worstRating": 1, @@ -4842,10 +4841,10 @@ }, { "title": "Paterson", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTUzODA4Nzk0OF5BMl5BanBnXkFtZTgwNzE1MDIwMDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTUzODA4Nzk0OF5BMl5BanBnXkFtZTgwNzE1MDIwMDI@._V1_.jpg", "summary": "A quiet observation of the triumphs and defeats of daily life, along with the poetry evident in its smallest details.", "duration": "PT1H58M", - "director": [ + "directors": [ "Jim Jarmusch" ], "mainActors": [ @@ -4858,8 +4857,8 @@ "Drama", "Romance" ], - "datePublished": "2016-12-28", - "rating": "R", + "datePublished": "2016-11-17", + "rating": "PG", "ratingValue": 7.3, "bestRating": 10, "worstRating": 1, @@ -4871,10 +4870,10 @@ }, { "title": "Sorry to Bother You", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNjgwMmI4YzUtZGI2Mi00M2MwLWIyMmMtZWYzMWZmNzAyNmYwXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNjgwMmI4YzUtZGI2Mi00M2MwLWIyMmMtZWYzMWZmNzAyNmYwXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_.jpg", "summary": "In an alternate present-day version of Oakland, telemarketer Cassius Green discovers a magical key to professional success, propelling him into a universe of greed.", "duration": "PT1H52M", - "director": [ + "directors": [ "Boots Riley" ], "mainActors": [ @@ -4888,7 +4887,7 @@ "Fantasy" ], "datePublished": "2018-07-13", - "rating": "R", + "rating": "14A", "ratingValue": 6.9, "bestRating": 10, "worstRating": 1, @@ -4898,10 +4897,10 @@ }, { "title": "Monty Python and the Holy Grail", - "posterURL": "https://m.media-amazon.com/images/M/MV5BN2IyNTE4YzUtZWU0Mi00MGIwLTgyMmQtMzQ4YzQxYWNlYWE2XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BN2IyNTE4YzUtZWU0Mi00MGIwLTgyMmQtMzQ4YzQxYWNlYWE2XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", "summary": "King Arthur and his Knights of the Round Table embark on a surreal, low-budget search for the Holy Grail, encountering many, very silly obstacles.", "duration": "PT1H31M", - "director": [ + "directors": [ "Terry Gilliam", "Terry Jones" ], @@ -4928,10 +4927,10 @@ }, { "title": "The Disaster Artist", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOGNkMzliMGMtMDI5Ni00OTZkLTgyMTYtNzk5ZTY1NjVhYjVmXkEyXkFqcGdeQXVyNTAzMTY4MDA@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOGNkMzliMGMtMDI5Ni00OTZkLTgyMTYtNzk5ZTY1NjVhYjVmXkEyXkFqcGdeQXVyNTAzMTY4MDA@._V1_.jpg", "summary": "When aspiring actor Greg Sestero meets the weird and mysterious Tommy Wiseau in an acting class, they form a unique friendship and travel to Hollywood to make their dreams come true.", "duration": "PT1H44M", - "director": [ + "directors": [ "James Franco" ], "mainActors": [ @@ -4945,7 +4944,7 @@ "Drama" ], "datePublished": "2017-12-08", - "rating": "R", + "rating": "14A", "ratingValue": 7.3, "bestRating": 10, "worstRating": 1, @@ -4957,10 +4956,10 @@ }, { "title": "La dolce vita", - "posterURL": "https://m.media-amazon.com/images/M/MV5BODQ0NzY5NGEtYTc5NC00Yjg4LTg4Y2QtZjE2MTkyYTNmNmU2L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BODQ0NzY5NGEtYTc5NC00Yjg4LTg4Y2QtZjE2MTkyYTNmNmU2L2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", "summary": "A series of stories following a week in the life of a philandering tabloid journalist living in Rome.", "duration": "PT2H54M", - "director": [ + "directors": [ "Federico Fellini" ], "mainActors": [ @@ -4972,8 +4971,8 @@ "Comedy", "Drama" ], - "datePublished": "1961-04-19", - "rating": "Not Rated", + "datePublished": "1961-07-19", + "rating": "14+", "ratingValue": 8, "bestRating": 10, "worstRating": 1, @@ -4985,10 +4984,10 @@ }, { "title": "The Artist", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNzYxMjBkNzAtY2M2YS00YjRhLTgzOTYtY2FiOGM2OTBlZjdiXkEyXkFqcGdeQXVyMTU3NDU4MDg2._V1_.jpg", - "summary": "An egomaniacal film star develops a relationship with a young dancer against the backdrop of Hollywood's silent era.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNzYxMjBkNzAtY2M2YS00YjRhLTgzOTYtY2FiOGM2OTBlZjdiXkEyXkFqcGdeQXVyMTU3NDU4MDg2._V1_.jpg", + "summary": "An egomaniacal film star develops a relationship with a young dancer against the backdrop of Hollywood's silent era.", "duration": "PT1H40M", - "director": [ + "directors": [ "Michel Hazanavicius" ], "mainActors": [ @@ -5001,8 +5000,8 @@ "Drama", "Romance" ], - "datePublished": "2012-01-20", - "rating": "PG-13", + "datePublished": "2011-10-12", + "rating": "PG", "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, @@ -5012,10 +5011,10 @@ }, { "title": "The Nice Guys", - "posterURL": "https://m.media-amazon.com/images/M/MV5BODNlNmU4MGItMzQwZi00NGQyLWEyZWItYjFkNmI0NWI4NjBhXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BODNlNmU4MGItMzQwZi00NGQyLWEyZWItYjFkNmI0NWI4NjBhXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_.jpg", "summary": "In 1970s Los Angeles, a mismatched pair of private eyes investigate a missing girl and the mysterious death of a porn star.", "duration": "PT1H56M", - "director": [ + "directors": [ "Shane Black" ], "mainActors": [ @@ -5029,7 +5028,7 @@ "Crime" ], "datePublished": "2016-05-20", - "rating": "R", + "rating": "14A", "ratingValue": 7.4, "bestRating": 10, "worstRating": 1, @@ -5039,11 +5038,11 @@ ] }, { - "title": "Love & Friendship", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTQ3NTQ2NjMwMV5BMl5BanBnXkFtZTgwOTk3Njk0ODE@._V1_.jpg", - "summary": "Lady Susan Vernon takes up temporary residence at her in-laws' estate and, while there, is determined to be a matchmaker for her daughter Frederica -- and herself too, naturally.", + "title": "Love & Friendship", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTQ3NTQ2NjMwMV5BMl5BanBnXkFtZTgwOTk3Njk0ODE@._V1_.jpg", + "summary": "Lady Susan Vernon takes up temporary residence at her in-laws' estate and, while there, is determined to be a matchmaker for her daughter Frederica -- and herself too, naturally.", "duration": "PT1H30M", - "director": [ + "directors": [ "Whit Stillman" ], "mainActors": [ @@ -5056,8 +5055,8 @@ "Drama", "Romance" ], - "datePublished": "2016-06-03", - "rating": "PG", + "datePublished": "2016-05-26", + "rating": "G", "ratingValue": 6.4, "bestRating": 10, "worstRating": 1, @@ -5068,10 +5067,10 @@ }, { "title": "Birdman", - "posterURL": "https://m.media-amazon.com/images/M/MV5BY2YwMWMyOGEtM2JhZi00MGE1LTg1NGMtZjMzYjY1N2M0Mjc5XkEyXkFqcGdeQXVyMTM1MjI0NTc2._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BY2YwMWMyOGEtM2JhZi00MGE1LTg1NGMtZjMzYjY1N2M0Mjc5XkEyXkFqcGdeQXVyMTM1MjI0NTc2._V1_.jpg", "summary": "A portrait of Robert, a troubled but poetic soul struggling with his purgatorial existence in a hackney scrapyard.", "duration": "PT13M", - "director": [ + "directors": [ "Guy Bolongaro" ], "mainActors": [ @@ -5088,10 +5087,10 @@ }, { "title": "Spy", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNjI5OTQ0MDQxM15BMl5BanBnXkFtZTgwMzcwNjMyNTE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNjI5OTQ0MDQxM15BMl5BanBnXkFtZTgwMzcwNjMyNTE@._V1_.jpg", "summary": "A desk-bound CIA analyst volunteers to go undercover to infiltrate the world of a deadly arms dealer and prevent diabolical global disaster.", "duration": "PT2H", - "director": [ + "directors": [ "Paul Feig" ], "mainActors": [ @@ -5104,7 +5103,7 @@ "Comedy" ], "datePublished": "2015-06-05", - "rating": "R", + "rating": "14A", "ratingValue": 7, "bestRating": 10, "worstRating": 1, @@ -5114,10 +5113,10 @@ }, { "title": "Annie Hall", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZDg1OGQ4YzgtM2Y2NS00NjA3LWFjYTctMDRlMDI3NWE1OTUyXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZDg1OGQ4YzgtM2Y2NS00NjA3LWFjYTctMDRlMDI3NWE1OTUyXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", "summary": "Alvy Singer, a divorced Jewish comedian, reflects on his relationship with ex-lover Annie Hall, an aspiring nightclub singer, which ended abruptly just like his previous marriages.", "duration": "PT1H33M", - "director": [ + "directors": [ "Woody Allen" ], "mainActors": [ @@ -5141,10 +5140,10 @@ }, { "title": "Tanpopo", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMGY4NTNkYjctNDBlYS00ODQ2LTlmZWQtNGZjMmZjMjI1NGQxXkEyXkFqcGdeQXVyMTA0MTM5NjI2._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMGY4NTNkYjctNDBlYS00ODQ2LTlmZWQtNGZjMmZjMjI1NGQxXkEyXkFqcGdeQXVyMTA0MTM5NjI2._V1_.jpg", "summary": "A truck driver stops at a small family-run noodle shop and decides to help its fledgling business. The story is intertwined with various vignettes about the relationship of love and food.", "duration": "PT1H54M", - "director": [ + "directors": [ "Jûzô Itami" ], "mainActors": [ @@ -5155,7 +5154,7 @@ "genres": [ "Comedy" ], - "rating": "Not Rated", + "rating": "14A", "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, @@ -5165,10 +5164,10 @@ }, { "title": "Sideways", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTU0Mjg3MzkxOV5BMl5BanBnXkFtZTYwNDU1OTY3._V1_.jpg", - "summary": "Two men reaching middle age with not much to show but disappointment embark on a week-long road trip through California's wine country, just as one is about to take a trip down the aisle.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTU0Mjg3MzkxOV5BMl5BanBnXkFtZTYwNDU1OTY3._V1_.jpg", + "summary": "Two men reaching middle age with not much to show but disappointment embark on a week-long road trip through California's wine country, just as one is about to take a trip down the aisle.", "duration": "PT2H7M", - "director": [ + "directors": [ "Alexander Payne" ], "mainActors": [ @@ -5181,8 +5180,8 @@ "Drama", "Romance" ], - "datePublished": "2004-10-22", - "rating": "R", + "datePublished": "2005-01-28", + "rating": "AA", "ratingValue": 7.5, "bestRating": 10, "worstRating": 1, @@ -5194,10 +5193,10 @@ }, { "title": "Logan Lucky", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTYyODg0NDU1OV5BMl5BanBnXkFtZTgwNjcxMzU0MjI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTYyODg0NDU1OV5BMl5BanBnXkFtZTgwNjcxMzU0MjI@._V1_.jpg", "summary": "Two brothers attempt to pull off a heist during a NASCAR race in North Carolina.", "duration": "PT1H58M", - "director": [ + "directors": [ "Steven Soderbergh" ], "mainActors": [ @@ -5211,7 +5210,7 @@ "Crime" ], "datePublished": "2017-08-18", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7, "bestRating": 10, "worstRating": 1, @@ -5221,10 +5220,10 @@ }, { "title": "Hunt for the Wilderpeople", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjI1MDQ2MDg5Ml5BMl5BanBnXkFtZTgwMjc2NjM5ODE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjI1MDQ2MDg5Ml5BMl5BanBnXkFtZTgwMjc2NjM5ODE@._V1_.jpg", "summary": "A national manhunt is ordered for a rebellious kid and his foster uncle who go missing in the wild New Zealand bush.", "duration": "PT1H41M", - "director": [ + "directors": [ "Taika Waititi" ], "mainActors": [ @@ -5237,8 +5236,8 @@ "Comedy", "Drama" ], - "datePublished": "2016-07-01", - "rating": "PG-13", + "datePublished": "2016-03-31", + "rating": "PG", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -5250,10 +5249,10 @@ }, { "title": "Airplane!", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZjA3YjdhMWEtYjc2Ni00YzVlLWI0MTUtMGZmNTJjNmU0Yzk2XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZjA3YjdhMWEtYjc2Ni00YzVlLWI0MTUtMGZmNTJjNmU0Yzk2XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", "summary": "After the crew becomes sick with food poisoning, a neurotic ex-fighter pilot must land a commercial airplane full of passengers safely.", "duration": "PT1H28M", - "director": [ + "directors": [ "Jim Abrahams", "David Zucker", "Jerry Zucker" @@ -5267,7 +5266,7 @@ "Comedy" ], "datePublished": "1980-07-02", - "rating": "PG", + "rating": "AA", "ratingValue": 7.7, "bestRating": 10, "worstRating": 1, @@ -5279,10 +5278,10 @@ }, { "title": "The Grand Budapest Hotel", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMzM5NjUxOTEyMl5BMl5BanBnXkFtZTgwNjEyMDM0MDE@._V1_.jpg", - "summary": "A writer encounters the owner of an aging high-class hotel, who tells him of his early years serving as a lobby boy in the hotel's glorious years under an exceptional concierge.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMzM5NjUxOTEyMl5BMl5BanBnXkFtZTgwNjEyMDM0MDE@._V1_.jpg", + "summary": "A writer encounters the owner of an aging high-class hotel, who tells him of his early years serving as a lobby boy in the hotel's glorious years under an exceptional concierge.", "duration": "PT1H39M", - "director": [ + "directors": [ "Wes Anderson" ], "mainActors": [ @@ -5295,8 +5294,8 @@ "Comedy", "Crime" ], - "datePublished": "2014-03-28", - "rating": "R", + "datePublished": "2014-03-06", + "rating": "14A", "ratingValue": 8.1, "bestRating": 10, "worstRating": 1, @@ -5307,11 +5306,11 @@ ] }, { - "title": "Don't Think Twice", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTkxMTkwODM2MF5BMl5BanBnXkFtZTgwNjYwNjY5ODE@._V1_.jpg", + "title": "Don't Think Twice", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTkxMTkwODM2MF5BMl5BanBnXkFtZTgwNjYwNjY5ODE@._V1_.jpg", "summary": "When a member of a popular New York City improv troupe gets a huge break, the rest of the group - all best friends - start to realize that not everyone is going to make it after all.", "duration": "PT1H32M", - "director": [ + "directors": [ "Mike Birbiglia" ], "mainActors": [ @@ -5324,7 +5323,7 @@ "Drama" ], "datePublished": "2016-07-22", - "rating": "R", + "rating": "14A", "ratingValue": 6.7, "bestRating": 10, "worstRating": 1, @@ -5334,10 +5333,10 @@ }, { "title": "Big", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMDQ1ODM5MTMtMjAwYi00ZGUxLTliNTMtN2ZhODAwMjVhMTRlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMDQ1ODM5MTMtMjAwYi00ZGUxLTliNTMtN2ZhODAwMjVhMTRlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", "summary": "After wishing to be made big, a teenage boy wakes the next morning to find himself mysteriously in the body of an adult.", "duration": "PT1H44M", - "director": [ + "directors": [ "Penny Marshall" ], "mainActors": [ @@ -5362,10 +5361,10 @@ }, { "title": "The Player", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjM5MDg0MjU3Ml5BMl5BanBnXkFtZTgwODQ0NjYxMTE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjM5MDg0MjU3Ml5BMl5BanBnXkFtZTgwODQ0NjYxMTE@._V1_.jpg", "summary": "A Hollywood studio executive is being sent death threats by a writer whose script he rejected, but which one?", "duration": "PT2H4M", - "director": [ + "directors": [ "Robert Altman" ], "mainActors": [ @@ -5378,8 +5377,8 @@ "Crime", "Drama" ], - "datePublished": "1992-05-08", - "rating": "R", + "datePublished": "1992-04-10", + "rating": "14A", "ratingValue": 7.5, "bestRating": 10, "worstRating": 1, @@ -5389,10 +5388,10 @@ }, { "title": "Groundhog Day", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZWIxNzM5YzQtY2FmMS00Yjc3LWI1ZjUtNGVjMjMzZTIxZTIxXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZWIxNzM5YzQtY2FmMS00Yjc3LWI1ZjUtNGVjMjMzZTIxZTIxXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", "summary": "A narcissistic, self-centered weatherman finds himself in a time loop on Groundhog Day.", "duration": "PT1H41M", - "director": [ + "directors": [ "Harold Ramis" ], "mainActors": [ @@ -5417,10 +5416,10 @@ }, { "title": "Back to the Future", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZmU0M2Y1OGUtZjIxNi00ZjBkLTg1MjgtOWIyNThiZWIwYjRiXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZmU0M2Y1OGUtZjIxNi00ZjBkLTg1MjgtOWIyNThiZWIwYjRiXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", "summary": "Marty McFly, a 17-year-old high school student, is accidentally sent 30 years into the past in a time-traveling DeLorean invented by his close friend, the maverick scientist Doc Brown.", "duration": "PT1H56M", - "director": [ + "directors": [ "Robert Zemeckis" ], "mainActors": [ @@ -5445,10 +5444,10 @@ }, { "title": "Moonrise Kingdom", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYTNjNjRhNjMtYTQyOS00MGIxLWJmZjktNGUxY2M2YTc4ZDYwXkEyXkFqcGdeQXVyMTA4NjE0NjEy._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYTNjNjRhNjMtYTQyOS00MGIxLWJmZjktNGUxY2M2YTc4ZDYwXkEyXkFqcGdeQXVyMTA4NjE0NjEy._V1_.jpg", "summary": "A pair of young lovers flee their New England town, which causes a local search party to fan out to find them.", "duration": "PT1H34M", - "director": [ + "directors": [ "Wes Anderson" ], "mainActors": [ @@ -5457,12 +5456,12 @@ "Bruce Willis" ], "genres": [ + "Adventure", "Comedy", - "Drama", - "Family" + "Drama" ], "datePublished": "2012-06-29", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -5473,10 +5472,10 @@ }, { "title": "Bull Durham", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMzMxMDEzMWUtZDk3NS00MWRiLWJjOGMtN2Q0ZjVhZjU3ODhkXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMzMxMDEzMWUtZDk3NS00MWRiLWJjOGMtN2Q0ZjVhZjU3ODhkXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", "summary": "A fan who has an affair with one minor-league baseball player each season meets an up-and-coming pitcher and the experienced catcher assigned to him.", "duration": "PT1H48M", - "director": [ + "directors": [ "Ron Shelton" ], "mainActors": [ @@ -5490,7 +5489,7 @@ "Sport" ], "datePublished": "1988-06-15", - "rating": "R", + "rating": "14", "ratingValue": 7.1, "bestRating": 10, "worstRating": 1, @@ -5500,10 +5499,10 @@ }, { "title": "Enough Said", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjI2MjIwMDk2Ml5BMl5BanBnXkFtZTcwNTQ1MzQ5OQ@@._V1_.jpg", - "summary": "A divorced woman who decides to pursue the man she's interested in learns he's her new friend's ex-husband.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjI2MjIwMDk2Ml5BMl5BanBnXkFtZTcwNTQ1MzQ5OQ@@._V1_.jpg", + "summary": "A divorced woman who decides to pursue the man she's interested in learns he's her new friend's ex-husband.", "duration": "PT1H33M", - "director": [ + "directors": [ "Nicole Holofcener" ], "mainActors": [ @@ -5517,7 +5516,7 @@ "Romance" ], "datePublished": "2013-10-11", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7, "bestRating": 10, "worstRating": 1, @@ -5527,10 +5526,10 @@ }, { "title": "The Muppets", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjE0MTM4NTc3NF5BMl5BanBnXkFtZTcwMjYzOTIxNg@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjE0MTM4NTc3NF5BMl5BanBnXkFtZTcwMjYzOTIxNg@@._V1_.jpg", "summary": "A Muppet fanatic with some help from his 2 human compatriots must regroup the Muppet gang to stop an avaricious oil mogul from taking down one of their precious life-longing treasures.", - "duration": "PT1H43M", - "director": [ + "duration": "PT2H", + "directors": [ "James Bobin" ], "mainActors": [ @@ -5544,7 +5543,7 @@ "Family" ], "datePublished": "2011-11-23", - "rating": "PG", + "rating": "G", "ratingValue": 7.1, "bestRating": 10, "worstRating": 1, @@ -5556,10 +5555,10 @@ }, { "title": "Lost in Translation", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTUxMzk0NDg1MV5BMl5BanBnXkFtZTgwNDg0NjkxMDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTUxMzk0NDg1MV5BMl5BanBnXkFtZTgwNDg0NjkxMDI@._V1_.jpg", "summary": "A faded movie star and a neglected young woman form an unlikely bond after crossing paths in Tokyo.", "duration": "PT1H42M", - "director": [ + "directors": [ "Sofia Coppola" ], "mainActors": [ @@ -5572,7 +5571,7 @@ "Drama" ], "datePublished": "2003-10-03", - "rating": "R", + "rating": "14A", "ratingValue": 7.7, "bestRating": 10, "worstRating": 1, @@ -5582,10 +5581,10 @@ }, { "title": "Broadcast News", - "posterURL": "https://m.media-amazon.com/images/M/MV5BN2E1ZmU5NDQtNjdlZC00Y2VhLTk2MWMtMmU0M2YyY2E3MTkyXkEyXkFqcGdeQXVyMTAwMzUyOTc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BN2E1ZmU5NDQtNjdlZC00Y2VhLTk2MWMtMmU0M2YyY2E3MTkyXkEyXkFqcGdeQXVyMTAwMzUyOTc@._V1_.jpg", "summary": "Take two rival television reporters: one handsome, one talented, both male. Add one producer, female. Mix well, and watch the sparks fly.", "duration": "PT2H13M", - "director": [ + "directors": [ "James L. Brooks" ], "mainActors": [ @@ -5598,8 +5597,8 @@ "Drama", "Romance" ], - "datePublished": "1987-12-25", - "rating": "R", + "datePublished": "1987-12-16", + "rating": "PG", "ratingValue": 7.2, "bestRating": 10, "worstRating": 1, @@ -5609,10 +5608,10 @@ }, { "title": "Bringing Up Baby", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMmVkOTRiYmItZjE4NS00MWNjLWE0ZmMtYzg5YzFjMjMyY2RkXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMmVkOTRiYmItZjE4NS00MWNjLWE0ZmMtYzg5YzFjMjMyY2RkXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", "summary": "While trying to secure a $1 million donation for his museum, a befuddled paleontologist is pursued by a flighty and often irritating heiress and her pet leopard, Baby.", "duration": "PT1H42M", - "director": [ + "directors": [ "Howard Hawks" ], "mainActors": [ @@ -5624,7 +5623,7 @@ "Comedy" ], "datePublished": "1938-02-18", - "rating": "Passed", + "rating": "PG", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -5635,10 +5634,10 @@ }, { "title": "The Edge of Seventeen", - "posterURL": "https://m.media-amazon.com/images/M/MV5BODE2NjE4NjYyMV5BMl5BanBnXkFtZTgwNzk3MjQ0OTE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BODE2NjE4NjYyMV5BMl5BanBnXkFtZTgwNzk3MjQ0OTE@._V1_.jpg", "summary": "High-school life gets even more unbearable for Nadine when her best friend, Krista, starts dating her older brother.", "duration": "PT1H44M", - "director": [ + "directors": [ "Kelly Fremon Craig" ], "mainActors": [ @@ -5651,7 +5650,7 @@ "Drama" ], "datePublished": "2016-11-18", - "rating": "R", + "rating": "14A", "ratingValue": 7.3, "bestRating": 10, "worstRating": 1, @@ -5661,10 +5660,10 @@ }, { "title": "Bikur Ha-Tizmoret", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNjFmMTMwZDAtNjg3NC00YzY1LWE5NDQtNjgzNjdkZTkzMWRkXkEyXkFqcGdeQXVyNjY0Nzc3MTA@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNjFmMTMwZDAtNjg3NC00YzY1LWE5NDQtNjgzNjdkZTkzMWRkXkEyXkFqcGdeQXVyNjY0Nzc3MTA@._V1_.jpg", "summary": "A band comprised of members of the Egyptian police force head to Israel to play at the inaugural ceremony of an Arab arts center, only to find themselves lost in the wrong town.", "duration": "PT1H27M", - "director": [ + "directors": [ "Eran Kolirin" ], "mainActors": [ @@ -5677,8 +5676,8 @@ "Drama", "Music" ], - "datePublished": "2008-03-21", - "rating": "PG-13", + "datePublished": "2007-09-13", + "rating": "PG", "ratingValue": 7.5, "bestRating": 10, "worstRating": 1, @@ -5688,10 +5687,10 @@ }, { "title": "Tangerine", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjEzNzY2NjYwOV5BMl5BanBnXkFtZTgwOTY1MDU1NTE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjEzNzY2NjYwOV5BMl5BanBnXkFtZTgwOTY1MDU1NTE@._V1_.jpg", "summary": "A hooker tears through Tinseltown on Christmas Eve searching for the pimp who broke her heart.", "duration": "PT1H28M", - "director": [ + "directors": [ "Sean Baker" ], "mainActors": [ @@ -5705,7 +5704,7 @@ "Drama" ], "datePublished": "2015-07-10", - "rating": "R", + "rating": "18A", "ratingValue": 7.1, "bestRating": 10, "worstRating": 1, @@ -5716,10 +5715,10 @@ }, { "title": "Le Havre", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTM1MDc2NDkxOV5BMl5BanBnXkFtZTcwNzE1NjM5Ng@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTM1MDc2NDkxOV5BMl5BanBnXkFtZTcwNzE1NjM5Ng@@._V1_.jpg", "summary": "When an African boy arrives by cargo ship in the port city of Le Havre, an aging shoe shiner takes pity on the child and welcomes him into his home.", "duration": "PT1H33M", - "director": [ + "directors": [ "Aki Kaurismäki" ], "mainActors": [ @@ -5732,7 +5731,7 @@ "Drama" ], "datePublished": "2011-09-08", - "rating": "Not Rated", + "rating": "PG", "ratingValue": 7.2, "bestRating": 10, "worstRating": 1, @@ -5742,10 +5741,10 @@ }, { "title": "Repo Man", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNzdkMzVhNTgtMjlhNC00M2JkLWI3MzktYzdkNzYxNTk1NjcwXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNzdkMzVhNTgtMjlhNC00M2JkLWI3MzktYzdkNzYxNTk1NjcwXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", "summary": "A young punk recruited by a car repossession agency finds himself in pursuit of a Chevrolet Malibu that is wanted for a $20,000 bounty - and has something otherworldly stashed in its trunk.", "duration": "PT1H32M", - "director": [ + "directors": [ "Alex Cox" ], "mainActors": [ @@ -5758,8 +5757,8 @@ "Comedy", "Crime" ], - "datePublished": "1984-03-02", - "rating": "R", + "datePublished": "2022-10-14", + "rating": "18+", "ratingValue": 6.9, "bestRating": 10, "worstRating": 1, @@ -5769,10 +5768,10 @@ }, { "title": "The Truman Show", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMDIzODcyY2EtMmY2MC00ZWVlLTgwMzAtMjQwOWUyNmJjNTYyXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMDIzODcyY2EtMmY2MC00ZWVlLTgwMzAtMjQwOWUyNmJjNTYyXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_.jpg", "summary": "An insurance salesman discovers his whole life is actually a reality TV show.", "duration": "PT1H43M", - "director": [ + "directors": [ "Peter Weir" ], "mainActors": [ @@ -5795,10 +5794,10 @@ }, { "title": "Say Anything...", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOTcyOWNhMzgtZjk2OC00ODcxLTg2MGQtOTZjM2ViNzUwNDViXkEyXkFqcGdeQXVyMTUzMDUzNTI3._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOTcyOWNhMzgtZjk2OC00ODcxLTg2MGQtOTZjM2ViNzUwNDViXkEyXkFqcGdeQXVyMTUzMDUzNTI3._V1_.jpg", "summary": "A noble underachiever and a beautiful valedictorian fall in love the summer before she goes off to college.", "duration": "PT1H40M", - "director": [ + "directors": [ "Cameron Crowe" ], "mainActors": [ @@ -5812,7 +5811,7 @@ "Romance" ], "datePublished": "1989-04-14", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.3, "bestRating": 10, "worstRating": 1, @@ -5822,10 +5821,10 @@ }, { "title": "Hannah Gadsby: Nanette", - "posterURL": "https://m.media-amazon.com/images/M/MV5BY2I3MThmYTctZTU4YS00YWNmLTg4YzktNDY0ZGE5MmQ3Y2Q3XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BY2I3MThmYTctZTU4YS00YWNmLTg4YzktNDY0ZGE5MmQ3Y2Q3XkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_.jpg", "summary": "Australian comic Hannah Gadsby reshapes standard stand-up by pairing punchlines with personal revelations on gender, sexuality and childhood turmoil.", "duration": "PT1H9M", - "director": [ + "directors": [ "Jon Olb", "Madeleine Parry" ], @@ -5847,10 +5846,10 @@ }, { "title": "Silver Linings Playbook", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTM2MTI5NzA3MF5BMl5BanBnXkFtZTcwODExNTc0OA@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTM2MTI5NzA3MF5BMl5BanBnXkFtZTcwODExNTc0OA@@._V1_.jpg", "summary": "After a stint in a mental institution, former teacher Pat Solitano moves back in with his parents and tries to reconcile with his ex-wife. Things get more challenging when Pat meets Tiffany, a mysterious girl with problems of her ...", "duration": "PT2H2M", - "director": [ + "directors": [ "David O. Russell" ], "mainActors": [ @@ -5863,8 +5862,8 @@ "Drama", "Romance" ], - "datePublished": "2012-12-25", - "rating": "R", + "datePublished": "2012-11-21", + "rating": "14A", "ratingValue": 7.7, "bestRating": 10, "worstRating": 1, @@ -5875,10 +5874,10 @@ }, { "title": "Juno", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTIwMDgwODc5Nl5BMl5BanBnXkFtZTYwMjQzMDM4._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTIwMDgwODc5Nl5BMl5BanBnXkFtZTYwMjQzMDM4._V1_.jpg", "summary": "Faced with an unplanned pregnancy, an offbeat young woman makes a selfless decision regarding the unborn child.", "duration": "PT1H36M", - "director": [ + "directors": [ "Jason Reitman" ], "mainActors": [ @@ -5891,7 +5890,7 @@ "Drama" ], "datePublished": "2007-12-25", - "rating": "PG-13", + "rating": "14A", "ratingValue": 7.5, "bestRating": 10, "worstRating": 1, @@ -5901,10 +5900,10 @@ }, { "title": "Hairspray", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNWU3MWFjMjUtZmU1ZC00NWY5LTk2OWEtNDk5ZjlmZmZlOWUwXkEyXkFqcGdeQXVyNjE5MjUyOTM@._V1_.jpg", - "summary": "A 'pleasantly plump' teenager teaches 1962 Baltimore a thing or two about integration after landing a spot on a local TV dance show.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNWU3MWFjMjUtZmU1ZC00NWY5LTk2OWEtNDk5ZjlmZmZlOWUwXkEyXkFqcGdeQXVyNjE5MjUyOTM@._V1_.jpg", + "summary": "A 'pleasantly plump' teenager teaches 1962 Baltimore a thing or two about integration after landing a spot on a local TV dance show.", "duration": "PT1H32M", - "director": [ + "directors": [ "John Waters" ], "mainActors": [ @@ -5928,10 +5927,10 @@ }, { "title": "Guardians of the Galaxy Vol. 2", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNjM0NTc0NzItM2FlYS00YzEwLWE0YmUtNTA2ZWIzODc2OTgxXkEyXkFqcGdeQXVyNTgwNzIyNzg@._V1_.jpg", - "summary": "The Guardians struggle to keep together as a team while dealing with their personal family issues, notably Star-Lord's encounter with his father, the ambitious celestial being Ego.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNjM0NTc0NzItM2FlYS00YzEwLWE0YmUtNTA2ZWIzODc2OTgxXkEyXkFqcGdeQXVyNTgwNzIyNzg@._V1_.jpg", + "summary": "The Guardians struggle to keep together as a team while dealing with their personal family issues, notably Star-Lord's encounter with his father, the ambitious celestial being Ego.", "duration": "PT2H16M", - "director": [ + "directors": [ "James Gunn" ], "mainActors": [ @@ -5945,7 +5944,7 @@ "Comedy" ], "datePublished": "2017-05-05", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.6, "bestRating": 10, "worstRating": 1, @@ -5957,10 +5956,10 @@ }, { "title": "Blindspotting", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNjgwYTQ4YmEtOTcwYy00NjBlLWI0ZjYtNDM0YmI1OGM0MWY0XkEyXkFqcGdeQXVyMjMxOTE0ODA@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNjgwYTQ4YmEtOTcwYy00NjBlLWI0ZjYtNDM0YmI1OGM0MWY0XkEyXkFqcGdeQXVyMjMxOTE0ODA@._V1_.jpg", "summary": "While on probation, a man begins to re-evaluate his relationship with his volatile best friend.", "duration": "PT1H35M", - "director": [ + "directors": [ "Carlos López Estrada" ], "mainActors": [ @@ -5974,7 +5973,7 @@ "Drama" ], "datePublished": "2018-07-27", - "rating": "R", + "rating": "14A", "ratingValue": 7.4, "bestRating": 10, "worstRating": 1, @@ -5985,16 +5984,16 @@ }, { "title": "Black Panther", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTg1MTY2MjYzNV5BMl5BanBnXkFtZTgwMTc4NTMwNDI@._V1_.jpg", - "summary": "T'Challa, heir to the hidden but advanced kingdom of Wakanda, must step forward to lead his people into a new future and must confront a challenger from his country's past.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTg1MTY2MjYzNV5BMl5BanBnXkFtZTgwMTc4NTMwNDI@._V1_.jpg", + "summary": "T'Challa, heir to the hidden but advanced kingdom of Wakanda, must step forward to lead his people into a new future and must confront a challenger from his country's past.", "duration": "PT2H14M", - "director": [ + "directors": [ "Ryan Coogler" ], "mainActors": [ "Chadwick Boseman", "Michael B. Jordan", - "Lupita Nyong'o" + "Lupita Nyong'o" ], "genres": [ "Action", @@ -6002,7 +6001,7 @@ "Sci-Fi" ], "datePublished": "2018-02-16", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.3, "bestRating": 10, "worstRating": 1, @@ -6014,10 +6013,10 @@ }, { "title": "Moonlight", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNzQxNTIyODAxMV5BMl5BanBnXkFtZTgwNzQyMDA3OTE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNzQxNTIyODAxMV5BMl5BanBnXkFtZTgwNzQyMDA3OTE@._V1_.jpg", "summary": "A young African-American man grapples with his identity and sexuality while experiencing the everyday struggles of childhood, adolescence, and burgeoning adulthood.", "duration": "PT1H51M", - "director": [ + "directors": [ "Barry Jenkins" ], "mainActors": [ @@ -6029,7 +6028,7 @@ "Drama" ], "datePublished": "2016-11-18", - "rating": "R", + "rating": "14A", "ratingValue": 7.4, "bestRating": 10, "worstRating": 1, @@ -6040,10 +6039,10 @@ }, { "title": "Wonder Woman", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTYzODQzYjQtNTczNC00MzZhLTg1ZWYtZDUxYmQ3ZTY4NzA1XkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZTcyNzhlNjQtYjdlOS00YzBmLTk2NmItOTY3NDM5MWUzYjRlXkEyXkFqcGdeQXVyNjMxMTE2Mjg@._V1_.jpg", "summary": "When a pilot crashes and tells of conflict in the outside world, Diana, an Amazonian warrior in training, leaves home to fight a war, discovering her full powers and true destiny.", "duration": "PT2H21M", - "director": [ + "directors": [ "Patty Jenkins" ], "mainActors": [ @@ -6057,7 +6056,7 @@ "Fantasy" ], "datePublished": "2017-06-02", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.4, "bestRating": 10, "worstRating": 1, @@ -6069,10 +6068,10 @@ }, { "title": "A Quiet Place", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjI0MDMzNTQ0M15BMl5BanBnXkFtZTgwMTM5NzM3NDM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjI0MDMzNTQ0M15BMl5BanBnXkFtZTgwMTM5NzM3NDM@._V1_.jpg", "summary": "A family struggles for survival in a world where most humans have been killed by blind but noise-sensitive creatures. They are forced to communicate in sign language to keep the creatures at bay.", "duration": "PT1H30M", - "director": [ + "directors": [ "John Krasinski" ], "mainActors": [ @@ -6086,7 +6085,7 @@ "Sci-Fi" ], "datePublished": "2018-04-06", - "rating": "PG-13", + "rating": "14A", "ratingValue": 7.5, "bestRating": 10, "worstRating": 1, @@ -6098,10 +6097,10 @@ }, { "title": "Dunkirk", - "posterURL": "https://m.media-amazon.com/images/M/MV5BN2YyZjQ0NTEtNzU5MS00NGZkLTg0MTEtYzJmMWY3MWRhZjM2XkEyXkFqcGdeQXVyMDA4NzMyOA@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BN2YyZjQ0NTEtNzU5MS00NGZkLTg0MTEtYzJmMWY3MWRhZjM2XkEyXkFqcGdeQXVyMDA4NzMyOA@@._V1_.jpg", "summary": "Allied soldiers from Belgium, the British Commonwealth and Empire, and France are surrounded by the German Army and evacuated during a fierce battle in World War II.", "duration": "PT1H46M", - "director": [ + "directors": [ "Christopher Nolan" ], "mainActors": [ @@ -6115,7 +6114,7 @@ "History" ], "datePublished": "2017-07-21", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -6125,10 +6124,10 @@ }, { "title": "Selma", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZGZkNzFkYTgtYTBkZC00M2MzLWJhNzUtMGE4YzRhYmU2Zjg0XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", - "summary": "A chronicle of Dr. Martin Luther King, Jr.'s campaign to secure equal voting rights via an epic march from Selma to Montgomery, Alabama, in 1965.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZGZkNzFkYTgtYTBkZC00M2MzLWJhNzUtMGE4YzRhYmU2Zjg0XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "summary": "A chronicle of Dr. Martin Luther King, Jr.'s campaign to secure equal voting rights via an epic march from Selma to Montgomery, Alabama, in 1965.", "duration": "PT2H8M", - "director": [ + "directors": [ "Ava DuVernay" ], "mainActors": [ @@ -6142,7 +6141,7 @@ "History" ], "datePublished": "2015-01-09", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.5, "bestRating": 10, "worstRating": 1, @@ -6152,10 +6151,10 @@ }, { "title": "Spotlight", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjIyOTM5OTIzNV5BMl5BanBnXkFtZTgwMDkzODE2NjE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjIyOTM5OTIzNV5BMl5BanBnXkFtZTgwMDkzODE2NjE@._V1_.jpg", "summary": "The true story of how the Boston Globe uncovered the massive scandal of child molestation and cover-up within the local Catholic Archdiocese, shaking the entire Catholic Church to its core.", "duration": "PT2H9M", - "director": [ + "directors": [ "Tom McCarthy" ], "mainActors": [ @@ -6169,7 +6168,7 @@ "Drama" ], "datePublished": "2015-11-20", - "rating": "R", + "rating": "14A", "ratingValue": 8.1, "bestRating": 10, "worstRating": 1, @@ -6180,10 +6179,10 @@ }, { "title": "Star Wars: Episode VIII - The Last Jedi", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjQ1MzcxNjg4N15BMl5BanBnXkFtZTgwNzgwMjY4MzI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjQ1MzcxNjg4N15BMl5BanBnXkFtZTgwNzgwMjY4MzI@._V1_.jpg", "summary": "The Star Wars saga continues as new heroes and galactic legends go on an epic adventure, unlocking mysteries of the Force and shocking revelations of the past.", "duration": "PT2H32M", - "director": [ + "directors": [ "Rian Johnson" ], "mainActors": [ @@ -6197,7 +6196,7 @@ "Fantasy" ], "datePublished": "2017-12-15", - "rating": "PG-13", + "rating": "PG", "ratingValue": 6.9, "bestRating": 10, "worstRating": 1, @@ -6208,10 +6207,10 @@ }, { "title": "The Shape of Water", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNGNiNWQ5M2MtNGI0OC00MDA2LWI5NzEtMmZiYjVjMDEyOWYzXkEyXkFqcGdeQXVyMjM4NTM5NDY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNGNiNWQ5M2MtNGI0OC00MDA2LWI5NzEtMmZiYjVjMDEyOWYzXkEyXkFqcGdeQXVyMjM4NTM5NDY@._V1_.jpg", "summary": "At a top secret research facility in the 1960s, a lonely janitor forms a unique relationship with an amphibious creature that is being held in captivity.", "duration": "PT2H3M", - "director": [ + "directors": [ "Guillermo del Toro" ], "mainActors": [ @@ -6224,8 +6223,8 @@ "Fantasy", "Romance" ], - "datePublished": "2017-12-22", - "rating": "R", + "datePublished": "2017-12-08", + "rating": "14A", "ratingValue": 7.3, "bestRating": 10, "worstRating": 1, @@ -6236,10 +6235,10 @@ }, { "title": "Logan", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYzc5MTU4N2EtYTkyMi00NjdhLTg3NWEtMTY4OTEyMzJhZTAzXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYzc5MTU4N2EtYTkyMi00NjdhLTg3NWEtMTY4OTEyMzJhZTAzXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", "summary": "In a future where mutants are nearly extinct, an elderly and weary Logan leads a quiet life. But when Laura, a mutant child pursued by scientists, comes to him for help, he must get her to safety.", "duration": "PT2H17M", - "director": [ + "directors": [ "James Mangold" ], "mainActors": [ @@ -6253,7 +6252,7 @@ "Sci-Fi" ], "datePublished": "2017-03-03", - "rating": "R", + "rating": "18A", "ratingValue": 8.1, "bestRating": 10, "worstRating": 1, @@ -6265,10 +6264,10 @@ }, { "title": "Arrival", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTExMzU0ODcxNDheQTJeQWpwZ15BbWU4MDE1OTI4MzAy._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTExMzU0ODcxNDheQTJeQWpwZ15BbWU4MDE1OTI4MzAy._V1_.jpg", "summary": "A linguist works with the military to communicate with alien lifeforms after twelve mysterious spacecraft appear around the world.", "duration": "PT1H56M", - "director": [ + "directors": [ "Denis Villeneuve" ], "mainActors": [ @@ -6282,7 +6281,7 @@ "Sci-Fi" ], "datePublished": "2016-11-11", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, @@ -6293,10 +6292,10 @@ }, { "title": "Thor: Ragnarok", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjMyNDkzMzI1OF5BMl5BanBnXkFtZTgwODcxODg5MjI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjMyNDkzMzI1OF5BMl5BanBnXkFtZTgwODcxODg5MjI@._V1_.jpg", "summary": "Imprisoned on the planet Sakaar, Thor must race against time to return to Asgard and stop Ragnarök, the destruction of his world, at the hands of the powerful and ruthless villain Hela.", "duration": "PT2H10M", - "director": [ + "directors": [ "Taika Waititi" ], "mainActors": [ @@ -6310,7 +6309,7 @@ "Comedy" ], "datePublished": "2017-11-03", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, @@ -6322,10 +6321,10 @@ }, { "title": "The Godfather", - "posterURL": "https://m.media-amazon.com/images/M/MV5BM2MyNjYxNmUtYTAwNi00MTYxLWJmNWYtYzZlODY3ZTk3OTFlXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BM2MyNjYxNmUtYTAwNi00MTYxLWJmNWYtYzZlODY3ZTk3OTFlXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", "summary": "Don Vito Corleone, head of a mafia family, decides to hand over his empire to his youngest son Michael. However, his decision unintentionally puts the lives of his loved ones in grave danger.", "duration": "PT2H55M", - "director": [ + "directors": [ "Francis Ford Coppola" ], "mainActors": [ @@ -6338,7 +6337,7 @@ "Drama" ], "datePublished": "1972-03-24", - "rating": "R", + "rating": "18A", "ratingValue": 9.2, "bestRating": 10, "worstRating": 1, @@ -6349,10 +6348,10 @@ }, { "title": "Gravity", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNjE5MzYwMzYxMF5BMl5BanBnXkFtZTcwOTk4MTk0OQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNjE5MzYwMzYxMF5BMl5BanBnXkFtZTcwOTk4MTk0OQ@@._V1_.jpg", "summary": "Two astronauts work together to survive after an accident leaves them stranded in space.", "duration": "PT1H31M", - "director": [ + "directors": [ "Alfonso Cuarón" ], "mainActors": [ @@ -6366,7 +6365,7 @@ "Thriller" ], "datePublished": "2013-10-04", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.7, "bestRating": 10, "worstRating": 1, @@ -6377,10 +6376,10 @@ }, { "title": "Leave No Trace", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjE3OTI1MTU0OV5BMl5BanBnXkFtZTgwNTg1MzkzNTM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjE3OTI1MTU0OV5BMl5BanBnXkFtZTgwNTg1MzkzNTM@._V1_.jpg", "summary": "A father and his seventeen-year-old daughter are living an ideal existence in a vast urban park in Portland, Oregon when a small mistake derails their lives forever.", "duration": "PT1H49M", - "director": [ + "directors": [ "Debra Granik" ], "mainActors": [ @@ -6405,10 +6404,10 @@ }, { "title": "Boyhood", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTYzNDc2MDc0N15BMl5BanBnXkFtZTgwOTcwMDQ5MTE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTYzNDc2MDc0N15BMl5BanBnXkFtZTgwOTcwMDQ5MTE@._V1_.jpg", "summary": "The life of Mason, from early childhood to his arrival at college.", "duration": "PT2H45M", - "director": [ + "directors": [ "Richard Linklater" ], "mainActors": [ @@ -6420,7 +6419,7 @@ "Drama" ], "datePublished": "2014-08-15", - "rating": "R", + "rating": "14A", "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, @@ -6430,10 +6429,10 @@ }, { "title": "12 Years a Slave", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjExMTEzODkyN15BMl5BanBnXkFtZTcwNTU4NTc4OQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjExMTEzODkyN15BMl5BanBnXkFtZTcwNTU4NTc4OQ@@._V1_.jpg", "summary": "In the antebellum United States, Solomon Northup, a free black man from upstate New York, is abducted and sold into slavery.", "duration": "PT2H14M", - "director": [ + "directors": [ "Steve McQueen" ], "mainActors": [ @@ -6447,7 +6446,7 @@ "History" ], "datePublished": "2013-11-08", - "rating": "R", + "rating": "14A", "ratingValue": 8.1, "bestRating": 10, "worstRating": 1, @@ -6458,10 +6457,10 @@ }, { "title": "The Maltese Falcon", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZjIwNGM1ZTUtOThjYS00NDdiLTk2ZDYtNGY5YjJkNzliM2JjL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZjIwNGM1ZTUtOThjYS00NDdiLTk2ZDYtNGY5YjJkNzliM2JjL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_.jpg", "summary": "San Francisco private detective Sam Spade takes on a case that involves him with three eccentric criminals, a gorgeous liar and their quest for a priceless statuette, with the stakes rising after his partner is murdered.", "duration": "PT1H40M", - "director": [ + "directors": [ "John Huston" ], "mainActors": [ @@ -6475,7 +6474,7 @@ "Mystery" ], "datePublished": "1941-10-18", - "rating": "Passed", + "rating": "PG", "ratingValue": 8, "bestRating": 10, "worstRating": 1, @@ -6486,10 +6485,10 @@ }, { "title": "Manchester by the Sea", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTYxMjk0NDg4Ml5BMl5BanBnXkFtZTgwODcyNjA5OTE@._V1_.jpg", - "summary": "A depressed uncle is asked to take care of his teenage nephew after the boy's father dies.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYzQ3ZjFjZjQtOGYwMS00NThmLWI4NWQtMDU4MWE3ZTkxODNhXkEyXkFqcGdeQXVyMTA4NjE0NjEy._V1_.jpg", + "summary": "A depressed uncle is asked to take care of his teenage nephew after the boy's father dies.", "duration": "PT2H17M", - "director": [ + "directors": [ "Kenneth Lonergan" ], "mainActors": [ @@ -6500,8 +6499,8 @@ "genres": [ "Drama" ], - "datePublished": "2016-12-16", - "rating": "R", + "datePublished": "2017-03-21", + "rating": "14A", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -6511,10 +6510,10 @@ }, { "title": "Argo", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNzljNjY3MDYtYzc0Ni00YjU0LWIyNDUtNTE0ZDRiMGExMjZlXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNzljNjY3MDYtYzc0Ni00YjU0LWIyNDUtNTE0ZDRiMGExMjZlXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_.jpg", "summary": "Acting under the cover of a Hollywood producer scouting a location for a science fiction film, a CIA agent launches a dangerous operation to rescue six Americans in Tehran during the U.S. hostage crisis in Iran in 1979.", "duration": "PT2H", - "director": [ + "directors": [ "Ben Affleck" ], "mainActors": [ @@ -6528,7 +6527,7 @@ "Thriller" ], "datePublished": "2012-10-12", - "rating": "R", + "rating": "14A", "ratingValue": 7.7, "bestRating": 10, "worstRating": 1, @@ -6540,10 +6539,10 @@ }, { "title": "Baby Driver", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjM3MjQ1MzkxNl5BMl5BanBnXkFtZTgwODk1ODgyMjI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjM3MjQ1MzkxNl5BMl5BanBnXkFtZTgwODk1ODgyMjI@._V1_.jpg", "summary": "After being coerced into working for a crime boss, a young getaway driver finds himself taking part in a heist doomed to fail.", "duration": "PT1H53M", - "director": [ + "directors": [ "Edgar Wright" ], "mainActors": [ @@ -6557,7 +6556,7 @@ "Drama" ], "datePublished": "2017-06-28", - "rating": "R", + "rating": "14A", "ratingValue": 7.6, "bestRating": 10, "worstRating": 1, @@ -6567,10 +6566,10 @@ }, { "title": "The Florida Project", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjg4ZmY1MmItMjFjOS00ZTg2LWJjNDYtNDM2YmM2NzhiNmZhXkEyXkFqcGdeQXVyNTAzMTY4MDA@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjg4ZmY1MmItMjFjOS00ZTg2LWJjNDYtNDM2YmM2NzhiNmZhXkEyXkFqcGdeQXVyNTAzMTY4MDA@._V1_.jpg", "summary": "Set over one summer, the film follows precocious six-year-old Moonee as she courts mischief and adventure with her ragtag playmates and bonds with her rebellious but caring mother, all while living in the shadows of Walt Disney Wo...", "duration": "PT1H51M", - "director": [ + "directors": [ "Sean Baker" ], "mainActors": [ @@ -6582,7 +6581,7 @@ "Drama" ], "datePublished": "2017-11-10", - "rating": "R", + "rating": "14A", "ratingValue": 7.6, "bestRating": 10, "worstRating": 1, @@ -6593,10 +6592,10 @@ }, { "title": "Spider-Man: Homecoming", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNTk4ODQ1MzgzNl5BMl5BanBnXkFtZTgwMTMyMzM4MTI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNTk4ODQ1MzgzNl5BMl5BanBnXkFtZTgwMTMyMzM4MTI@._V1_.jpg", "summary": "Peter Parker balances his life as an ordinary high school student in Queens with his superhero alter-ego Spider-Man, and finds himself on the trail of a new menace prowling the skies of New York City.", "duration": "PT2H13M", - "director": [ + "directors": [ "Jon Watts" ], "mainActors": [ @@ -6610,7 +6609,7 @@ "Sci-Fi" ], "datePublished": "2017-07-07", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.4, "bestRating": 10, "worstRating": 1, @@ -6622,10 +6621,10 @@ }, { "title": "The Night of the Hunter", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMDhjNzhmMTMtZTRkOC00NTdjLTg3N2ItZmQ1ZDU0NGY5OTk5XkEyXkFqcGdeQXVyNDY2MTk1ODk@._V1_.jpg", - "summary": "A self-proclaimed preacher marries a gullible widow whose young children are reluctant to tell him where their real dad hid the $10,000 he'd stolen in a robbery.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMDhjNzhmMTMtZTRkOC00NTdjLTg3N2ItZmQ1ZDU0NGY5OTk5XkEyXkFqcGdeQXVyNDY2MTk1ODk@._V1_.jpg", + "summary": "A self-proclaimed preacher marries a gullible widow whose young children are reluctant to tell him where their real dad hid the $10,000 he'd stolen in a robbery.", "duration": "PT1H32M", - "director": [ + "directors": [ "Charles Laughton" ], "mainActors": [ @@ -6638,7 +6637,6 @@ "Drama", "Film-Noir" ], - "datePublished": "1955-07-27", "rating": "Not Rated", "ratingValue": 8, "bestRating": 10, @@ -6651,10 +6649,10 @@ }, { "title": "Alien", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOGQzZTBjMjQtOTVmMS00NGE5LWEyYmMtOGQ1ZGZjNmRkYjFhXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOGQzZTBjMjQtOTVmMS00NGE5LWEyYmMtOGQ1ZGZjNmRkYjFhXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", "summary": "The crew of a commercial spacecraft encounters a deadly lifeform after investigating an unknown transmission.", "duration": "PT1H57M", - "director": [ + "directors": [ "Ridley Scott" ], "mainActors": [ @@ -6672,16 +6670,16 @@ "bestRating": 10, "worstRating": 1, "writers": [ - "Dan O'Bannon", + "Dan O'Bannon", "Ronald Shusett" ] }, { "title": "M - Eine Stadt sucht einen Mörder", - "posterURL": "https://m.media-amazon.com/images/M/MV5BODA4ODk3OTEzMF5BMl5BanBnXkFtZTgwMTQ2ODMwMzE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BODA4ODk3OTEzMF5BMl5BanBnXkFtZTgwMTQ2ODMwMzE@._V1_.jpg", "summary": "When the police in a German city are unable to catch a child-murderer, other criminals join in the manhunt.", - "duration": "PT1H39M", - "director": [ + "duration": "PT1H57M", + "directors": [ "Fritz Lang" ], "mainActors": [ @@ -6695,7 +6693,7 @@ "Thriller" ], "datePublished": "1931-08-31", - "rating": "Passed", + "rating": "G", "ratingValue": 8.3, "bestRating": 10, "worstRating": 1, @@ -6707,10 +6705,10 @@ }, { "title": "Taxi Driver", - "posterURL": "https://m.media-amazon.com/images/M/MV5BM2M1MmVhNDgtNmI0YS00ZDNmLTkyNjctNTJiYTQ2N2NmYzc2XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BM2M1MmVhNDgtNmI0YS00ZDNmLTkyNjctNTJiYTQ2N2NmYzc2XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", "summary": "A mentally unstable veteran works as a nighttime taxi driver in New York City, where the perceived decadence and sleaze fuels his urge for violent action.", "duration": "PT1H54M", - "director": [ + "directors": [ "Martin Scorsese" ], "mainActors": [ @@ -6722,8 +6720,8 @@ "Crime", "Drama" ], - "datePublished": "1976-02-09", - "rating": "R", + "datePublished": "1976-03-19", + "rating": "14+", "ratingValue": 8.2, "bestRating": 10, "worstRating": 1, @@ -6733,10 +6731,10 @@ }, { "title": "War for the Planet of the Apes", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNDNmYTQzMDEtMmY0MS00OTNjLTk4MjItMDZhMzkzOGI3MzA0XkEyXkFqcGdeQXVyNjk5NDA3OTk@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNDNmYTQzMDEtMmY0MS00OTNjLTk4MjItMDZhMzkzOGI3MzA0XkEyXkFqcGdeQXVyNjk5NDA3OTk@._V1_.jpg", "summary": "After the apes suffer unimaginable losses, Caesar wrestles with his darker instincts and begins his own mythic quest to avenge his kind.", "duration": "PT2H20M", - "director": [ + "directors": [ "Matt Reeves" ], "mainActors": [ @@ -6750,7 +6748,7 @@ "Drama" ], "datePublished": "2017-07-14", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.4, "bestRating": 10, "worstRating": 1, @@ -6762,10 +6760,10 @@ }, { "title": "Hell or High Water", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTg4NDA1OTA5NF5BMl5BanBnXkFtZTgwMDQ2MDM5ODE@._V1_.jpg", - "summary": "Toby is a divorced father who's trying to make a better life. His brother is an ex-con with a short temper and a loose trigger finger. Together, they plan a series of heists against the bank that's about to foreclose on their fami...", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTg4NDA1OTA5NF5BMl5BanBnXkFtZTgwMDQ2MDM5ODE@._V1_.jpg", + "summary": "Toby is a divorced father who's trying to make a better life. His brother is an ex-con with a short temper and a loose trigger finger. Together, they plan a series of heists against the bank that's about to foreclose on their fami...", "duration": "PT1H42M", - "director": [ + "directors": [ "David Mackenzie" ], "mainActors": [ @@ -6779,7 +6777,7 @@ "Thriller" ], "datePublished": "2016-08-26", - "rating": "R", + "rating": "14A", "ratingValue": 7.6, "bestRating": 10, "worstRating": 1, @@ -6789,10 +6787,10 @@ }, { "title": "Jaws", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMmVmODY1MzEtYTMwZC00MzNhLWFkNDMtZjAwM2EwODUxZTA5XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", - "summary": "When a killer shark unleashes chaos on a beach community off Cape Cod, it's up to a local sheriff, a marine biologist, and an old seafarer to hunt the beast down.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMmVmODY1MzEtYTMwZC00MzNhLWFkNDMtZjAwM2EwODUxZTA5XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", + "summary": "When a killer shark unleashes chaos on a beach community off Cape Cod, it's up to a local sheriff, a marine biologist, and an old seafarer to hunt the beast down.", "duration": "PT2H4M", - "director": [ + "directors": [ "Steven Spielberg" ], "mainActors": [ @@ -6806,7 +6804,7 @@ "Thriller" ], "datePublished": "1975-06-20", - "rating": "PG", + "rating": "R", "ratingValue": 8.1, "bestRating": 10, "worstRating": 1, @@ -6817,10 +6815,10 @@ }, { "title": "Brooklyn", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMzE4MDk5NzEyOV5BMl5BanBnXkFtZTgwNDM4NDA3NjE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMzE4MDk5NzEyOV5BMl5BanBnXkFtZTgwNDM4NDA3NjE@._V1_.jpg", "summary": "An Irish immigrant lands in 1950s Brooklyn, where she quickly falls into a romance with a local. When her past catches up with her, however, she must choose between two countries and the lives that exist within.", "duration": "PT1H57M", - "director": [ + "directors": [ "John Crowley" ], "mainActors": [ @@ -6832,8 +6830,8 @@ "Drama", "Romance" ], - "datePublished": "2015-11-25", - "rating": "PG-13", + "datePublished": "2015-11-06", + "rating": "PG", "ratingValue": 7.5, "bestRating": 10, "worstRating": 1, @@ -6844,10 +6842,10 @@ }, { "title": "The Dark Knight", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTMxNTMwODM0NF5BMl5BanBnXkFtZTcwODAyMTk2Mw@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTMxNTMwODM0NF5BMl5BanBnXkFtZTcwODAyMTk2Mw@@._V1_.jpg", "summary": "When the menace known as the Joker wreaks havoc and chaos on the people of Gotham, Batman must accept one of the greatest psychological and physical tests of his ability to fight injustice.", "duration": "PT2H32M", - "director": [ + "directors": [ "Christopher Nolan" ], "mainActors": [ @@ -6861,7 +6859,7 @@ "Drama" ], "datePublished": "2008-07-18", - "rating": "PG-13", + "rating": "PG", "ratingValue": 9, "bestRating": 10, "worstRating": 1, @@ -6873,10 +6871,10 @@ }, { "title": "The Babadook", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTk0NzMzODc2NF5BMl5BanBnXkFtZTgwOTYzNTM1MzE@._V1_.jpg", - "summary": "A single mother and her child fall into a deep well of paranoia when an eerie children's book titled "Mister Babadook" manifests in their home.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTk0NzMzODc2NF5BMl5BanBnXkFtZTgwOTYzNTM1MzE@._V1_.jpg", + "summary": "A single mother and her child fall into a deep well of paranoia when an eerie children's book titled \"Mister Babadook\" manifests in their home.", "duration": "PT1H34M", - "director": [ + "directors": [ "Jennifer Kent" ], "mainActors": [ @@ -6888,8 +6886,8 @@ "Horror", "Mystery" ], - "datePublished": "2014-11-28", - "rating": "Not Rated", + "datePublished": "2014-05-22", + "rating": "14A", "ratingValue": 6.8, "bestRating": 10, "worstRating": 1, @@ -6899,10 +6897,10 @@ }, { "title": "The Wrestler", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTc5MjYyOTg4MF5BMl5BanBnXkFtZTcwNDc2MzQwMg@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTc5MjYyOTg4MF5BMl5BanBnXkFtZTcwNDc2MzQwMg@@._V1_.jpg", "summary": "A faded professional wrestler must retire, but finds his quest for a new life outside the ring a dispiriting struggle.", "duration": "PT1H49M", - "director": [ + "directors": [ "Darren Aronofsky" ], "mainActors": [ @@ -6915,7 +6913,7 @@ "Sport" ], "datePublished": "2009-01-30", - "rating": "R", + "rating": "14A", "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, @@ -6925,10 +6923,10 @@ }, { "title": "Harry Potter and the Deathly Hallows - Part 2", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMGVmMWNiMDktYjQ0Mi00MWIxLTk0N2UtN2ZlYTdkN2IzNDNlXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_.jpg", - "summary": "Harry, Ron, and Hermione search for Voldemort's remaining Horcruxes in their effort to destroy the Dark Lord as the final battle rages on at Hogwarts.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMGVmMWNiMDktYjQ0Mi00MWIxLTk0N2UtN2ZlYTdkN2IzNDNlXkEyXkFqcGdeQXVyODE5NzE3OTE@._V1_.jpg", + "summary": "Harry, Ron, and Hermione search for Voldemort's remaining Horcruxes in their effort to destroy the Dark Lord as the final battle rages on at Hogwarts.", "duration": "PT2H10M", - "director": [ + "directors": [ "David Yates" ], "mainActors": [ @@ -6942,7 +6940,7 @@ "Fantasy" ], "datePublished": "2011-07-15", - "rating": "PG-13", + "rating": "PG", "ratingValue": 8.1, "bestRating": 10, "worstRating": 1, @@ -6953,10 +6951,10 @@ }, { "title": "Creed", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNmZkYjQzY2QtNjdkNC00YjkzLTk5NjUtY2MyNDNiYTBhN2M2XkEyXkFqcGdeQXVyMjMwNDgzNjc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNmZkYjQzY2QtNjdkNC00YjkzLTk5NjUtY2MyNDNiYTBhN2M2XkEyXkFqcGdeQXVyMjMwNDgzNjc@._V1_.jpg", "summary": "The former World Heavyweight Champion Rocky Balboa serves as a trainer and mentor to Adonis Johnson, the son of his late friend and former rival Apollo Creed.", "duration": "PT2H13M", - "director": [ + "directors": [ "Ryan Coogler" ], "mainActors": [ @@ -6970,7 +6968,7 @@ "Sport" ], "datePublished": "2015-11-25", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.6, "bestRating": 10, "worstRating": 1, @@ -6982,10 +6980,10 @@ }, { "title": "Le salaire de la peur", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZDdkNzMwZmUtY2Q5MS00ZmM2LWJhYjItYTBjMWY0MGM4MDRjXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZDdkNzMwZmUtY2Q5MS00ZmM2LWJhYjItYTBjMWY0MGM4MDRjXkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_.jpg", "summary": "In a decrepit South American village, four men are hired to transport an urgent nitroglycerine shipment without the equipment that would make it safe.", "duration": "PT2H11M", - "director": [ + "directors": [ "Henri-Georges Clouzot" ], "mainActors": [ @@ -6998,8 +6996,8 @@ "Drama", "Thriller" ], - "datePublished": "1955-02-16", - "rating": "Not Rated", + "datePublished": "1953-04-22", + "rating": "14+", "ratingValue": 8.2, "bestRating": 10, "worstRating": 1, @@ -7011,10 +7009,10 @@ }, { "title": "L.A. Confidential", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMDQ2YzEyZGItYWRhOS00MjBmLTkzMDUtMTdjYzkyMmQxZTJlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMDQ2YzEyZGItYWRhOS00MjBmLTkzMDUtMTdjYzkyMmQxZTJlXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", "summary": "As corruption grows in 1950s Los Angeles, three policemen - one strait-laced, one brutal, and one sleazy - investigate a series of murders with their own brand of justice.", "duration": "PT2H18M", - "director": [ + "directors": [ "Curtis Hanson" ], "mainActors": [ @@ -7028,7 +7026,7 @@ "Mystery" ], "datePublished": "1997-09-19", - "rating": "R", + "rating": "16+", "ratingValue": 8.2, "bestRating": 10, "worstRating": 1, @@ -7040,10 +7038,10 @@ }, { "title": "Double Indemnity", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOTdlNjgyZGUtOTczYi00MDdhLTljZmMtYTEwZmRiOWFkYjRhXkEyXkFqcGdeQXVyNDY2MTk1ODk@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOTdlNjgyZGUtOTczYi00MDdhLTljZmMtYTEwZmRiOWFkYjRhXkEyXkFqcGdeQXVyNDY2MTk1ODk@._V1_.jpg", "summary": "A Los Angeles insurance representative lets an alluring housewife seduce him into a scheme of insurance fraud and murder that arouses the suspicion of his colleague, an insurance investigator.", "duration": "PT1H47M", - "director": [ + "directors": [ "Billy Wilder" ], "mainActors": [ @@ -7057,7 +7055,7 @@ "Film-Noir" ], "datePublished": "1944-07-06", - "rating": "Passed", + "rating": "G", "ratingValue": 8.3, "bestRating": 10, "worstRating": 1, @@ -7069,10 +7067,10 @@ }, { "title": "Hidden Figures: It All Adds Up - The Making of Hidden Figures", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMzgxZTNhYjAtYmM1OC00NjVlLThiYTAtZmFjYjQwOTZiMjcyXkEyXkFqcGdeQXVyMjQ5NjgwMjA@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMzgxZTNhYjAtYmM1OC00NjVlLThiYTAtZmFjYjQwOTZiMjcyXkEyXkFqcGdeQXVyMjQ5NjgwMjA@._V1_.jpg", "summary": "In 1962, astronaut Col. John Hershel Glenn Jr. became the first american to orbit the Earth. He circled the globe three times. Hidden figures is a drama loosely based on the people at NASA during the period of 1961, principally th...", "duration": "PT42M", - "director": [ + "directors": [ "Gregg Temkin" ], "mainActors": [ @@ -7091,10 +7089,10 @@ }, { "title": "Star Wars", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOTA5NjhiOTAtZWM0ZC00MWNhLThiMzEtZDFkOTk2OTU1ZDJkXkEyXkFqcGdeQXVyMTA4NDI1NTQx._V1_.jpg", - "summary": "Luke Skywalker joins forces with a Jedi Knight, a cocky pilot, a Wookiee and two droids to save the galaxy from the Empire's world-destroying battle station, while also attempting to rescue Princess Leia from the mysterious Darth ...", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOTA5NjhiOTAtZWM0ZC00MWNhLThiMzEtZDFkOTk2OTU1ZDJkXkEyXkFqcGdeQXVyMTA4NDI1NTQx._V1_.jpg", + "summary": "Luke Skywalker joins forces with a Jedi Knight, a cocky pilot, a Wookiee and two droids to save the galaxy from the Empire's world-destroying battle station, while also attempting to rescue Princess Leia from the mysterious Darth ...", "duration": "PT2H1M", - "director": [ + "directors": [ "George Lucas" ], "mainActors": [ @@ -7108,7 +7106,7 @@ "Fantasy" ], "datePublished": "1977-05-25", - "rating": "PG", + "rating": "14", "ratingValue": 8.6, "bestRating": 10, "worstRating": 1, @@ -7118,10 +7116,10 @@ }, { "title": "Star Trek", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjE5NDQ5OTE4Ml5BMl5BanBnXkFtZTcwOTE3NDIzMw@@._V1_.jpg", - "summary": "The brash James T. Kirk tries to live up to his father's legacy with Mr. Spock keeping him in check as a vengeful Romulan from the future creates black holes to destroy the Federation one planet at a time.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjE5NDQ5OTE4Ml5BMl5BanBnXkFtZTcwOTE3NDIzMw@@._V1_.jpg", + "summary": "The brash James T. Kirk tries to live up to his father's legacy with Mr. Spock keeping him in check as a vengeful Romulan from the future creates black holes to destroy the Federation one planet at a time.", "duration": "PT2H7M", - "director": [ + "directors": [ "J.J. Abrams" ], "mainActors": [ @@ -7135,7 +7133,7 @@ "Sci-Fi" ], "datePublished": "2009-05-08", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, @@ -7147,10 +7145,10 @@ }, { "title": "The Godfather Part II", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMWMwMGQzZTItY2JlNC00OWZiLWIyMDctNDk2ZDQ2YjRjMWQ0XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMWMwMGQzZTItY2JlNC00OWZiLWIyMDctNDk2ZDQ2YjRjMWQ0XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", "summary": "The early life and career of Vito Corleone in 1920s New York City is portrayed, while his son, Michael, expands and tightens his grip on the family crime syndicate.", "duration": "PT3H22M", - "director": [ + "directors": [ "Francis Ford Coppola" ], "mainActors": [ @@ -7163,7 +7161,7 @@ "Drama" ], "datePublished": "1974-12-18", - "rating": "R", + "rating": "14A", "ratingValue": 9, "bestRating": 10, "worstRating": 1, @@ -7174,10 +7172,10 @@ }, { "title": "Carol", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTczNTQ4OTEyNV5BMl5BanBnXkFtZTgwNDgyMDI3NjE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTczNTQ4OTEyNV5BMl5BanBnXkFtZTgwNDgyMDI3NjE@._V1_.jpg", "summary": "An aspiring photographer develops an intimate relationship with an older woman in 1950s New York.", "duration": "PT1H58M", - "director": [ + "directors": [ "Todd Haynes" ], "mainActors": [ @@ -7189,8 +7187,8 @@ "Drama", "Romance" ], - "datePublished": "2016-01-15", - "rating": "R", + "datePublished": "2015-11-27", + "rating": "14A", "ratingValue": 7.2, "bestRating": 10, "worstRating": 1, @@ -7201,10 +7199,10 @@ }, { "title": "Nightcrawler", - "posterURL": "https://m.media-amazon.com/images/M/MV5BN2U1YzdhYWMtZWUzMi00OWI1LWFkM2ItNWVjM2YxMGQ2MmNhXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BN2U1YzdhYWMtZWUzMi00OWI1LWFkM2ItNWVjM2YxMGQ2MmNhXkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", "summary": "When Louis Bloom, a con man desperate for work, muscles into the world of L.A. crime journalism, he blurs the line between observer and participant to become the star of his own story.", "duration": "PT1H57M", - "director": [ + "directors": [ "Dan Gilroy" ], "mainActors": [ @@ -7218,7 +7216,7 @@ "Thriller" ], "datePublished": "2014-10-31", - "rating": "R", + "rating": "14A", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -7228,10 +7226,10 @@ }, { "title": "Apocalypse Now", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYmQyNTA1ZGItNjZjMi00NzFlLWEzMWEtNWMwN2Q2MjJhYzEyXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYmQyNTA1ZGItNjZjMi00NzFlLWEzMWEtNWMwN2Q2MjJhYzEyXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", "summary": "A U.S. Army officer serving in Vietnam is tasked with assassinating a renegade Special Forces Colonel who sees himself as a god.", "duration": "PT2H27M", - "director": [ + "directors": [ "Francis Ford Coppola" ], "mainActors": [ @@ -7256,11 +7254,11 @@ ] }, { - "title": "Schindler's List", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNDE4OTMxMTctNmRhYy00NWE2LTg3YzItYTk3M2UwOTU5Njg4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", + "title": "Schindler's List", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNDE4OTMxMTctNmRhYy00NWE2LTg3YzItYTk3M2UwOTU5Njg4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", "summary": "In German-occupied Poland during World War II, industrialist Oskar Schindler gradually becomes concerned for his Jewish workforce after witnessing their persecution by the Nazis.", "duration": "PT3H15M", - "director": [ + "directors": [ "Steven Spielberg" ], "mainActors": [ @@ -7273,8 +7271,8 @@ "Drama", "History" ], - "datePublished": "1994-02-04", - "rating": "R", + "datePublished": "1993-12-25", + "rating": "14A", "ratingValue": 9, "bestRating": 10, "worstRating": 1, @@ -7285,10 +7283,10 @@ }, { "title": "Au hasard Balthazar", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNTgwYjYyZDAtYzQ0Yi00MDljLWFlNjItNDlmOTE4YTdiMmVjXkEyXkFqcGdeQXVyNjc5NjEzNA@@._V1_.jpg", - "summary": "The story of a mistreated donkey and the people around him. A study on saintliness and a sister piece to Bresson's Mouchette.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNTgwYjYyZDAtYzQ0Yi00MDljLWFlNjItNDlmOTE4YTdiMmVjXkEyXkFqcGdeQXVyNjc5NjEzNA@@._V1_.jpg", + "summary": "The story of a mistreated donkey and the people around him. A study on saintliness and a sister piece to Bresson's Mouchette.", "duration": "PT1H35M", - "director": [ + "directors": [ "Robert Bresson" ], "mainActors": [ @@ -7300,7 +7298,7 @@ "Drama" ], "datePublished": "1966-05-25", - "rating": "Not Rated", + "rating": "PG", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -7310,10 +7308,10 @@ }, { "title": "Il conformista", - "posterURL": "https://m.media-amazon.com/images/M/MV5BM2JmMDZkYmEtYmVmNy00NTVmLTlkY2YtY2VkZGVjNjU1ZGI1XkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BM2JmMDZkYmEtYmVmNy00NTVmLTlkY2YtY2VkZGVjNjU1ZGI1XkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", "summary": "A weak-willed Italian man becomes a fascist flunky who goes abroad to arrange the assassination of his old teacher, now a political dissident.", "duration": "PT1H53M", - "director": [ + "directors": [ "Bernardo Bertolucci" ], "mainActors": [ @@ -7324,7 +7322,6 @@ "genres": [ "Drama" ], - "datePublished": "1971-03-21", "rating": "R", "ratingValue": 7.9, "bestRating": 10, @@ -7336,10 +7333,10 @@ }, { "title": "Get Out", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjUxMDQwNjcyNl5BMl5BanBnXkFtZTgwNzcwMzc0MTI@._V1_.jpg", - "summary": "A young African-American visits his White girlfriend's parents for the weekend, where his simmering uneasiness about their reception of him eventually reaches a boiling point.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjUxMDQwNjcyNl5BMl5BanBnXkFtZTgwNzcwMzc0MTI@._V1_.jpg", + "summary": "A young African-American visits his White girlfriend's parents for the weekend, where his simmering uneasiness about their reception of him eventually reaches a boiling point.", "duration": "PT1H44M", - "director": [ + "directors": [ "Jordan Peele" ], "mainActors": [ @@ -7353,7 +7350,7 @@ "Thriller" ], "datePublished": "2017-02-24", - "rating": "R", + "rating": "14A", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -7363,10 +7360,10 @@ }, { "title": "Aliens", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOGJkY2EyOWYtYWRmNy00ZTEzLTllMDAtYzYzYjA0ZjFhZWJjXkEyXkFqcGdeQXVyMTUzMDUzNTI3._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOGJkY2EyOWYtYWRmNy00ZTEzLTllMDAtYzYzYjA0ZjFhZWJjXkEyXkFqcGdeQXVyMTUzMDUzNTI3._V1_.jpg", "summary": "Decades after surviving the Nostromo incident, Ellen Ripley is sent out to re-establish contact with a terraforming colony but finds herself battling the Alien Queen and her offspring.", "duration": "PT2H17M", - "director": [ + "directors": [ "James Cameron" ], "mainActors": [ @@ -7392,10 +7389,10 @@ }, { "title": "At the Movies: Lamar and Darnell - It Follows", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYTljYjlmZTEtY2JiOC00MjM1LWE0M2QtZjk1MzRjM2U0NDVhXkEyXkFqcGdeQXVyNTg5OTMxNDU@._V1_.jpg", - "summary": "Being filmed and edited in character, 'At The Movies' follows Lamar and Darnell as they attempt to review movies and help you along the path towards enlightenment. About The Stars of 'At The Movies': Lamar and Darnell began review...", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYTljYjlmZTEtY2JiOC00MjM1LWE0M2QtZjk1MzRjM2U0NDVhXkEyXkFqcGdeQXVyNTg5OTMxNDU@._V1_.jpg", + "summary": "Being filmed and edited in character, 'At The Movies' follows Lamar and Darnell as they attempt to review movies and help you along the path towards enlightenment. About The Stars of 'At The Movies': Lamar and Darnell began review...", "duration": "PT3M", - "director": [ + "directors": [ "Jonathan Levy", "Casey Smith" ], @@ -7418,10 +7415,10 @@ }, { "title": "Låt den rätte komma in", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjFjYmQ5OWItYTFiNy00Nzc5LTkyZGQtYmE0MDRhMjUwY2I5XkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNjU0NGIxNDEtNzhkMC00ZmIwLWE1NDgtNmIzMmMxM2JhNWZhXkEyXkFqcGdeQXVyNzI1NzMxNzM@._V1_.jpg", "summary": "Oskar, an overlooked and bullied boy, finds love and revenge through Eli, a beautiful but peculiar girl.", "duration": "PT1H54M", - "director": [ + "directors": [ "Tomas Alfredson" ], "mainActors": [ @@ -7434,8 +7431,8 @@ "Fantasy", "Horror" ], - "datePublished": "2008-12-12", - "rating": "R", + "datePublished": "2008-10-24", + "rating": "14A", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -7445,10 +7442,10 @@ }, { "title": "Hereditary", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOTU5MDg3OGItZWQ1Ny00ZGVmLTg2YTUtMzBkYzQ1YWIwZjlhXkEyXkFqcGdeQXVyNTAzMTY4MDA@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOTU5MDg3OGItZWQ1Ny00ZGVmLTg2YTUtMzBkYzQ1YWIwZjlhXkEyXkFqcGdeQXVyNTAzMTY4MDA@._V1_.jpg", "summary": "A grieving family is haunted by tragic and disturbing occurrences.", "duration": "PT2H7M", - "director": [ + "directors": [ "Ari Aster" ], "mainActors": [ @@ -7462,7 +7459,7 @@ "Mystery" ], "datePublished": "2018-06-08", - "rating": "R", + "rating": "14A", "ratingValue": 7.3, "bestRating": 10, "worstRating": 1, @@ -7472,10 +7469,10 @@ }, { "title": "The Silence of the Lambs", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNjNhZTk0ZmEtNjJhMi00YzFlLWE1MmEtYzM1M2ZmMGMwMTU4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNjNhZTk0ZmEtNjJhMi00YzFlLWE1MmEtYzM1M2ZmMGMwMTU4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", "summary": "A young F.B.I. cadet must receive the help of an incarcerated and manipulative cannibal killer to help catch another serial killer, a madman who skins his victims.", "duration": "PT1H58M", - "director": [ + "directors": [ "Jonathan Demme" ], "mainActors": [ @@ -7489,7 +7486,7 @@ "Thriller" ], "datePublished": "1991-02-14", - "rating": "R", + "rating": "18+", "ratingValue": 8.6, "bestRating": 10, "worstRating": 1, @@ -7500,10 +7497,10 @@ }, { "title": "El laberinto del fauno", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYzFjMThiMGItOWRlMC00MDI4LThmOGUtYTNlZGZiYWI1YjMyXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYzFjMThiMGItOWRlMC00MDI4LThmOGUtYTNlZGZiYWI1YjMyXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", "summary": "In the Falangist Spain of 1944, the bookish young stepdaughter of a sadistic army officer escapes into an eerie but captivating fantasy world.", "duration": "PT1H58M", - "director": [ + "directors": [ "Guillermo del Toro" ], "mainActors": [ @@ -7517,7 +7514,7 @@ "War" ], "datePublished": "2007-01-19", - "rating": "R", + "rating": "14A", "ratingValue": 8.2, "bestRating": 10, "worstRating": 1, @@ -7527,9 +7524,9 @@ }, { "title": "The Witch", - "summary": "The short film named "The witch" starts with a key which an artist takes from a person. He takes the mirror by entering the gate that the key opens. With the mirror on his back he shows the mirror's reflections to the people while...", + "summary": "The short film named \"The witch\" starts with a key which an artist takes from a person. He takes the mirror by entering the gate that the key opens. With the mirror on his back he shows the mirror's reflections to the people while...", "duration": "PT7M", - "director": [ + "directors": [ "Batukan Ceyran" ], "mainActors": [ @@ -7547,10 +7544,10 @@ }, { "title": "Halloween", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNzk1OGU2NmMtNTdhZC00NjdlLWE5YTMtZTQ0MGExZTQzOGQyXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNzk1OGU2NmMtNTdhZC00NjdlLWE5YTMtZTQ0MGExZTQzOGQyXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", "summary": "Fifteen years after murdering his sister on Halloween night 1963, Michael Myers escapes from a mental hospital and returns to the small town of Haddonfield, Illinois to kill again.", "duration": "PT1H31M", - "director": [ + "directors": [ "John Carpenter" ], "mainActors": [ @@ -7562,7 +7559,7 @@ "Horror", "Thriller" ], - "datePublished": "1978-10-27", + "datePublished": "1978-10-25", "rating": "R", "ratingValue": 7.7, "bestRating": 10, @@ -7574,10 +7571,10 @@ }, { "title": "The Innocents", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNGQyNjBjNTUtNTM1OS00YzcyLWFhNTgtNTU0MDg3NzBlMDQzXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNGQyNjBjNTUtNTM1OS00YzcyLWFhNTgtNTU0MDg3NzBlMDQzXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", "summary": "A young governess for two children becomes convinced that the house and grounds are haunted.", "duration": "PT1H40M", - "director": [ + "directors": [ "Jack Clayton" ], "mainActors": [ @@ -7588,8 +7585,8 @@ "genres": [ "Horror" ], - "datePublished": "1961-12-15", - "rating": "Not Rated", + "datePublished": "1962-02-15", + "rating": "G", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -7600,11 +7597,11 @@ ] }, { - "title": "The Cabin In The Woods: An Army of Nightmares - Makeup & Animatronic Effects", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMDBlOWUwYmItMTBiNi00MWVlLTlhOTMtYWRlN2UzZjE2OTYxXkEyXkFqcGdeQXVyMjQ1MjYzOTQ@._V1_.jpg", + "title": "The Cabin In The Woods: An Army of Nightmares - Makeup & Animatronic Effects", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMDBlOWUwYmItMTBiNi00MWVlLTlhOTMtYWRlN2UzZjE2OTYxXkEyXkFqcGdeQXVyMjQ1MjYzOTQ@._V1_.jpg", "summary": "A documentary that explores how the monsters were brought to life in The Cabin in the Woods.", "duration": "PT12M", - "director": [ + "directors": [ "Drew Goddard" ], "mainActors": [ @@ -7624,10 +7621,10 @@ }, { "title": "Invasion of the Body Snatchers", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTkzY2Y3ZTMtYTg4Yy00OTNjLTlkNjctMGVlZDMwZWIxMzA0XkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_.jpg", - "summary": "When strange seeds drift to earth from space, mysterious pods begin to grow and invade San Francisco, replicating the city's residents one body at a time.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTkzY2Y3ZTMtYTg4Yy00OTNjLTlkNjctMGVlZDMwZWIxMzA0XkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_.jpg", + "summary": "When strange seeds drift to earth from space, mysterious pods begin to grow and invade San Francisco, replicating the city's residents one body at a time.", "duration": "PT1H55M", - "director": [ + "directors": [ "Philip Kaufman" ], "mainActors": [ @@ -7640,7 +7637,7 @@ "Sci-Fi" ], "datePublished": "1978-12-22", - "rating": "PG", + "rating": "14+", "ratingValue": 7.4, "bestRating": 10, "worstRating": 1, @@ -7651,10 +7648,10 @@ }, { "title": "Drag Me to Hell", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTQwNTMyNjc5Ml5BMl5BanBnXkFtZTcwOTI2MTQ0Mg@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTQwNTMyNjc5Ml5BMl5BanBnXkFtZTcwOTI2MTQ0Mg@@._V1_.jpg", "summary": "A loan officer who evicts an old woman from her home finds herself the recipient of a supernatural curse. Desperate, she turns to a seer to try and save her soul, while evil forces work to push her to a breaking point.", "duration": "PT1H39M", - "director": [ + "directors": [ "Sam Raimi" ], "mainActors": [ @@ -7666,7 +7663,7 @@ "Horror" ], "datePublished": "2009-05-29", - "rating": "PG-13", + "rating": "14A", "ratingValue": 6.6, "bestRating": 10, "worstRating": 1, @@ -7677,10 +7674,10 @@ }, { "title": "House of Wax", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOWRhMTg1NjYtNDA5MS00NDJhLTgzZmQtZmY3NmRjNTExYWE3XkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOWRhMTg1NjYtNDA5MS00NDJhLTgzZmQtZmY3NmRjNTExYWE3XkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_.jpg", "summary": "An associate burns down a wax museum with the owner inside, but he survives only to become vengeful and murderous.", "duration": "PT1H28M", - "director": [ + "directors": [ "André De Toth" ], "mainActors": [ @@ -7692,7 +7689,7 @@ "Horror" ], "datePublished": "1953-04-25", - "rating": "GP", + "rating": "PG", "ratingValue": 7, "bestRating": 10, "worstRating": 1, @@ -7703,10 +7700,10 @@ }, { "title": "A Girl Walks Home Alone at Night", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjMzNjMyMjU2M15BMl5BanBnXkFtZTgwMzA3NjQ0MzE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjMzNjMyMjU2M15BMl5BanBnXkFtZTgwMzA3NjQ0MzE@._V1_.jpg", "summary": "In the Iranian ghost-town Bad City, a place that reeks of death and loneliness, the townspeople are unaware they are being stalked by a lonesome vampire.", "duration": "PT1H41M", - "director": [ + "directors": [ "Ana Lily Amirpour" ], "mainActors": [ @@ -7720,7 +7717,7 @@ "Romance" ], "datePublished": "2015-04-20", - "rating": "Not Rated", + "rating": "14A", "ratingValue": 6.9, "bestRating": 10, "worstRating": 1, @@ -7730,10 +7727,10 @@ }, { "title": "It", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZDVkZmI0YzAtNzdjYi00ZjhhLWE1ODEtMWMzMWMzNDA0NmQ4XkEyXkFqcGdeQXVyNzYzODM3Mzg@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZDVkZmI0YzAtNzdjYi00ZjhhLWE1ODEtMWMzMWMzNDA0NmQ4XkEyXkFqcGdeQXVyNzYzODM3Mzg@._V1_.jpg", "summary": "In the summer of 1989, a group of bullied kids band together to destroy a shape-shifting monster, which disguises itself as a clown and preys on the children of Derry, their small Maine town.", "duration": "PT2H15M", - "director": [ + "directors": [ "Andy Muschietti" ], "mainActors": [ @@ -7745,7 +7742,7 @@ "Horror" ], "datePublished": "2017-09-08", - "rating": "R", + "rating": "14A", "ratingValue": 7.3, "bestRating": 10, "worstRating": 1, @@ -7757,10 +7754,10 @@ }, { "title": "Carrie", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTlhNmVkZGUtNjdjOC00YWY3LTljZWQtMTY1YWFhNGYwNDQwXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTlhNmVkZGUtNjdjOC00YWY3LTljZWQtMTY1YWFhNGYwNDQwXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", "summary": "Carrie White, a shy, friendless teenage girl who is sheltered by her domineering, religious mother, unleashes her telekinetic powers after being humiliated by her classmates at her senior prom.", "duration": "PT1H38M", - "director": [ + "directors": [ "Brian De Palma" ], "mainActors": [ @@ -7773,7 +7770,7 @@ "Mystery" ], "datePublished": "1976-11-16", - "rating": "R", + "rating": "14A", "ratingValue": 7.4, "bestRating": 10, "worstRating": 1, @@ -7784,10 +7781,10 @@ }, { "title": "The Evil Dead", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNjRmY2NmN2UtMmRlMS00Mjg2LTgwNjUtZjYyZjc0NDJjODFkXkEyXkFqcGdeQXVyNjc5NjEzNA@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNjRmY2NmN2UtMmRlMS00Mjg2LTgwNjUtZjYyZjc0NDJjODFkXkEyXkFqcGdeQXVyNjc5NjEzNA@@._V1_.jpg", "summary": "Five friends travel to a cabin in the woods, where they unknowingly release flesh-possessing demons.", "duration": "PT1H25M", - "director": [ + "directors": [ "Sam Raimi" ], "mainActors": [ @@ -7798,8 +7795,8 @@ "genres": [ "Horror" ], - "datePublished": "1983-04-15", - "rating": "NC-17", + "datePublished": "1983-05-26", + "rating": "R", "ratingValue": 7.4, "bestRating": 10, "worstRating": 1, @@ -7809,10 +7806,10 @@ }, { "title": "Young Frankenstein", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTEwNjg2MjM2ODFeQTJeQWpwZ15BbWU4MDQ1MDU5OTEx._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTEwNjg2MjM2ODFeQTJeQWpwZ15BbWU4MDQ1MDU5OTEx._V1_.jpg", "summary": "An American grandson of the infamous scientist, struggling to prove that his grandfather was not as insane as people believe, is invited to Transylvania, where he discovers the process that reanimates a dead body.", "duration": "PT1H46M", - "director": [ + "directors": [ "Mel Brooks" ], "mainActors": [ @@ -7836,10 +7833,10 @@ }, { "title": "Re-Animator", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjcxOTcwZDAtYjg4Ny00YzUzLWJkNDgtMzhkMDJlOTg1YTFiXkEyXkFqcGdeQXVyMzg1ODEwNQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjcxOTcwZDAtYjg4Ny00YzUzLWJkNDgtMzhkMDJlOTg1YTFiXkEyXkFqcGdeQXVyMzg1ODEwNQ@@._V1_.jpg", "summary": "After an odd new medical student arrives on campus, a dedicated local and his girlfriend become involved in bizarre experiments centering around the re-animation of dead tissue.", "duration": "PT1H24M", - "director": [ + "directors": [ "Stuart Gordon" ], "mainActors": [ @@ -7852,8 +7849,8 @@ "Horror", "Sci-Fi" ], - "datePublished": "1985-10-18", - "rating": "Unrated", + "datePublished": "2022-04-01", + "rating": "R", "ratingValue": 7.2, "bestRating": 10, "worstRating": 1, @@ -7865,10 +7862,10 @@ }, { "title": "The Love Witch", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjA5NDEyMjQwNV5BMl5BanBnXkFtZTgwNDQ1MjMwMDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjA5NDEyMjQwNV5BMl5BanBnXkFtZTgwNDQ1MjMwMDI@._V1_.jpg", "summary": "A modern-day witch uses spells and magic to get men to fall in love with her, with deadly consequences.", "duration": "PT2H", - "director": [ + "directors": [ "Anna Biller" ], "mainActors": [ @@ -7882,7 +7879,7 @@ "Romance" ], "datePublished": "2017-03-10", - "rating": "Unrated", + "rating": "14A", "ratingValue": 6.2, "bestRating": 10, "worstRating": 1, @@ -7892,10 +7889,10 @@ }, { "title": "Suspiria", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZGRjNjljOGEtZjFmMi00YzU1LWIxOWYtZTQzODMzNDQzMzY1XkEyXkFqcGdeQXVyNDE5MTU2MDE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZGRjNjljOGEtZjFmMi00YzU1LWIxOWYtZTQzODMzNDQzMzY1XkEyXkFqcGdeQXVyNDE5MTU2MDE@._V1_.jpg", "summary": "An American newcomer to a prestigious German ballet academy comes to realize that the school is a front for something sinister amid a series of grisly murders.", - "duration": "PT1H32M", - "director": [ + "duration": "PT1H39M", + "directors": [ "Dario Argento" ], "mainActors": [ @@ -7906,7 +7903,6 @@ "genres": [ "Horror" ], - "datePublished": "1977-08-12", "rating": "R", "ratingValue": 7.3, "bestRating": 10, @@ -7919,10 +7915,10 @@ }, { "title": "A Nightmare on Elm Street", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNzFjZmM1ODgtMDBkMS00NWFlLTg2YmUtZjc3ZTgxMjE1OTI2L2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNzFjZmM1ODgtMDBkMS00NWFlLTg2YmUtZjc3ZTgxMjE1OTI2L2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", "summary": "Teenager Nancy Thompson must uncover the dark truth concealed by her parents after she and her friends become targets of the spirit of a serial killer with a bladed glove in their dreams, in which if they die, it kills them in rea...", "duration": "PT1H31M", - "director": [ + "directors": [ "Wes Craven" ], "mainActors": [ @@ -7934,7 +7930,7 @@ "Horror" ], "datePublished": "1984-11-16", - "rating": "R", + "rating": "18A", "ratingValue": 7.4, "bestRating": 10, "worstRating": 1, @@ -7944,10 +7940,10 @@ }, { "title": "Zombieland", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTU5MDg0NTQ1N15BMl5BanBnXkFtZTcwMjA4Mjg3Mg@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTU5MDg0NTQ1N15BMl5BanBnXkFtZTcwMjA4Mjg3Mg@@._V1_.jpg", "summary": "A shy student trying to reach his family in Ohio, a gun-toting bruiser in search of the last Twinkie and a pair of sisters striving to get to an amusement park join forces in a trek across a zombie-filled America.", "duration": "PT1H28M", - "director": [ + "directors": [ "Ruben Fleischer" ], "mainActors": [ @@ -7961,7 +7957,7 @@ "Horror" ], "datePublished": "2009-10-02", - "rating": "R", + "rating": "18A", "ratingValue": 7.6, "bestRating": 10, "worstRating": 1, @@ -7972,10 +7968,10 @@ }, { "title": "The Endless", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOGY2NDA3N2MtNmNkMC00ZmM2LWJkMjYtMDkwYWQ2MmYyNjZmXkEyXkFqcGdeQXVyNDk5MTYyMjc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOGY2NDA3N2MtNmNkMC00ZmM2LWJkMjYtMDkwYWQ2MmYyNjZmXkEyXkFqcGdeQXVyNDk5MTYyMjc@._V1_.jpg", "summary": "A lonesome man at the threshold of death finds himself trapped in a place called the Endless.", "duration": "PT2H", - "director": [ + "directors": [ "Mason Guevara" ], "mainActors": [ @@ -7995,10 +7991,10 @@ }, { "title": "Dracula", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZDQzMmIxYTItOTJkMi00YzU1LWJkNGEtYWE1NjhiNWU5YmNkXkEyXkFqcGdeQXVyNjc5NjEzNA@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZDQzMmIxYTItOTJkMi00YzU1LWJkNGEtYWE1NjhiNWU5YmNkXkEyXkFqcGdeQXVyNjc5NjEzNA@@._V1_.jpg", "summary": "Transylvanian vampire Count Dracula bends a naive real estate agent to his will, then takes up residence at a London estate where he sleeps in his coffin by day and searches for potential victims by night.", "duration": "PT1H15M", - "director": [ + "directors": [ "Tod Browning", "Karl Freund" ], @@ -8012,8 +8008,8 @@ "Fantasy", "Horror" ], - "datePublished": "1931-02-14", - "rating": "Passed", + "datePublished": "1931-03-06", + "rating": "PG", "ratingValue": 7.4, "bestRating": 10, "worstRating": 1, @@ -8025,10 +8021,10 @@ }, { "title": "Shaun of the Dead", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTg5Mjk2NDMtZTk0Ny00YTQ0LWIzYWEtMWI5MGQ0Mjg1OTNkXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTg5Mjk2NDMtZTk0Ny00YTQ0LWIzYWEtMWI5MGQ0Mjg1OTNkXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", "summary": "The uneventful, aimless lives of a London electronics salesman and his layabout roommate are disrupted by the zombie apocalypse.", "duration": "PT1H39M", - "director": [ + "directors": [ "Edgar Wright" ], "mainActors": [ @@ -8040,8 +8036,8 @@ "Comedy", "Horror" ], - "datePublished": "2004-09-24", - "rating": "R", + "datePublished": "2004-04-09", + "rating": "18A", "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, @@ -8052,10 +8048,10 @@ }, { "title": "The Fly", - "posterURL": "https://m.media-amazon.com/images/M/MV5BODcxMGMwOGEtMDUxMi00MzE5LTg4YTYtYjk1YjA4MzQxNTNlXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BODcxMGMwOGEtMDUxMi00MzE5LTg4YTYtYjk1YjA4MzQxNTNlXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", "summary": "A brilliant but eccentric scientist begins to transform into a giant man/fly hybrid after one of his experiments goes horribly wrong.", "duration": "PT1H36M", - "director": [ + "directors": [ "David Cronenberg" ], "mainActors": [ @@ -8069,7 +8065,7 @@ "Sci-Fi" ], "datePublished": "1986-08-15", - "rating": "R", + "rating": "14A", "ratingValue": 7.6, "bestRating": 10, "worstRating": 1, @@ -8081,10 +8077,10 @@ }, { "title": "Cam", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYTgyOGIzNTAtNmNmNS00NjFmLWEwNGMtMWQ3MjUxNmRhMGQyXkEyXkFqcGdeQXVyNjc5NjEzNA@@._V1_.jpg", - "summary": "Alice, an ambitious camgirl, wakes up one day to discover she's been replaced on her show with an exact replica of herself.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYTgyOGIzNTAtNmNmNS00NjFmLWEwNGMtMWQ3MjUxNmRhMGQyXkEyXkFqcGdeQXVyNjc5NjEzNA@@._V1_.jpg", + "summary": "Alice, an ambitious camgirl, wakes up one day to discover she's been replaced on her show with an exact replica of herself.", "duration": "PT1H34M", - "director": [ + "directors": [ "Daniel Goldhaber" ], "mainActors": [ @@ -8110,10 +8106,10 @@ }, { "title": "What Ever Happened to Baby Jane?", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZmI0M2VmNTgtMWVhYS00Zjg1LTk1YTYtNmJmMjRkZmMwYTc2XkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZmI0M2VmNTgtMWVhYS00Zjg1LTk1YTYtNmJmMjRkZmMwYTc2XkEyXkFqcGdeQXVyNTA4NzY1MzY@._V1_.jpg", "summary": "A former child star torments her paraplegic sister in their decaying Hollywood mansion.", "duration": "PT2H14M", - "director": [ + "directors": [ "Robert Aldrich" ], "mainActors": [ @@ -8126,8 +8122,8 @@ "Horror", "Thriller" ], - "datePublished": "1962-10-31", - "rating": "Passed", + "datePublished": "1962-11-12", + "rating": "14+", "ratingValue": 8, "bestRating": 10, "worstRating": 1, @@ -8138,10 +8134,10 @@ }, { "title": "It Comes at Night", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjQ3MDA0ODA2N15BMl5BanBnXkFtZTgwNzg0NzgwMjI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjQ3MDA0ODA2N15BMl5BanBnXkFtZTgwNzg0NzgwMjI@._V1_.jpg", "summary": "Secure within a desolate home as an unnatural threat terrorizes the world, a man has established a tenuous domestic order with his wife and son. Then a desperate young family arrives seeking refuge.", "duration": "PT1H31M", - "director": [ + "directors": [ "Trey Edward Shults" ], "mainActors": [ @@ -8155,7 +8151,7 @@ "Mystery" ], "datePublished": "2017-06-09", - "rating": "R", + "rating": "14A", "ratingValue": 6.2, "bestRating": 10, "worstRating": 1, @@ -8165,10 +8161,10 @@ }, { "title": "Eraserhead", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMDExYzg5YjQtMzE0Yy00OWJjLThiZTctMWI5MzhjM2RmNjA4L2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMDExYzg5YjQtMzE0Yy00OWJjLThiZTctMWI5MzhjM2RmNjA4L2ltYWdlXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", "summary": "Henry Spencer tries to survive his industrial environment, his angry girlfriend, and the unbearable screams of his newly born mutant child.", "duration": "PT1H29M", - "director": [ + "directors": [ "David Lynch" ], "mainActors": [ @@ -8181,7 +8177,7 @@ "Horror" ], "datePublished": "1978-02-03", - "rating": "Not Rated", + "rating": "R", "ratingValue": 7.3, "bestRating": 10, "worstRating": 1, @@ -8190,11 +8186,11 @@ ] }, { - "title": "Don't Breathe", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZGI5ZTU2M2YtZWY4MC00ZDFhLTliYTItZTk1NjdlN2NkMzg2XkEyXkFqcGdeQXVyMjY5ODI4NDk@._V1_.jpg", - "summary": "Hoping to walk away with a massive fortune, a trio of thieves break into the house of a blind man who isn't as helpless as he seems.", + "title": "Don't Breathe", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZGI5ZTU2M2YtZWY4MC00ZDFhLTliYTItZTk1NjdlN2NkMzg2XkEyXkFqcGdeQXVyMjY5ODI4NDk@._V1_.jpg", + "summary": "Hoping to walk away with a massive fortune, a trio of thieves break into the house of a blind man who isn't as helpless as he seems.", "duration": "PT1H28M", - "director": [ + "directors": [ "Fede Alvarez" ], "mainActors": [ @@ -8208,7 +8204,7 @@ "Thriller" ], "datePublished": "2016-08-26", - "rating": "R", + "rating": "14A", "ratingValue": 7.1, "bestRating": 10, "worstRating": 1, @@ -8219,10 +8215,10 @@ }, { "title": "The Phantom of the Opera", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNDk4MDM1NTI5MV5BMl5BanBnXkFtZTgwMDkyMDc2MTE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNDk4MDM1NTI5MV5BMl5BanBnXkFtZTgwMDkyMDc2MTE@._V1_.jpg", "summary": "A mad, disfigured composer seeks love with a lovely young opera singer.", "duration": "PT1H33M", - "director": [ + "directors": [ "Rupert Julian", "Lon Chaney", "Ernst Laemmle" @@ -8235,7 +8231,6 @@ "genres": [ "Horror" ], - "datePublished": "1925-11-15", "rating": "Passed", "ratingValue": 7.5, "bestRating": 10, @@ -8248,10 +8243,10 @@ }, { "title": "We Are Still Here", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjQwMzgzMjczOV5BMl5BanBnXkFtZTgwNDk2MTUxNTE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjQwMzgzMjczOV5BMl5BanBnXkFtZTgwNDk2MTUxNTE@._V1_.jpg", "summary": "In the cold, wintery fields of New England, a lonely old house wakes up every thirty years - and demands a sacrifice.", "duration": "PT1H24M", - "director": [ + "directors": [ "Ted Geoghegan" ], "mainActors": [ @@ -8274,10 +8269,10 @@ }, { "title": "Let Me In", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNDQ4MjQ4OTMwMF5BMl5BanBnXkFtZTcwOTYzNDc4Mw@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNDQ4MjQ4OTMwMF5BMl5BanBnXkFtZTcwOTYzNDc4Mw@@._V1_.jpg", "summary": "A bullied young boy befriends a young female vampire who lives in secrecy with her guardian.", "duration": "PT1H56M", - "director": [ + "directors": [ "Matt Reeves" ], "mainActors": [ @@ -8291,7 +8286,7 @@ "Horror" ], "datePublished": "2010-10-01", - "rating": "R", + "rating": "14A", "ratingValue": 7.1, "bestRating": 10, "worstRating": 1, @@ -8302,10 +8297,10 @@ }, { "title": "Misery", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNzY0ODQ3MTMxN15BMl5BanBnXkFtZTgwMDkwNTg4NjE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNzY0ODQ3MTMxN15BMl5BanBnXkFtZTgwMDkwNTg4NjE@._V1_.jpg", "summary": "After a famous author is rescued from a car crash by a fan of his novels, he comes to realize that the care he is receiving is only the beginning of a nightmare of captivity and abuse.", "duration": "PT1H47M", - "director": [ + "directors": [ "Rob Reiner" ], "mainActors": [ @@ -8318,7 +8313,7 @@ "Thriller" ], "datePublished": "1990-11-30", - "rating": "R", + "rating": "14A", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -8329,10 +8324,10 @@ }, { "title": "Little Shop of Horrors", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYzUxZDI3MjktZmM4YS00MzdjLWE5MzctMmI4M2ViMDgxMmUzXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYzUxZDI3MjktZmM4YS00MzdjLWE5MzctMmI4M2ViMDgxMmUzXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", "summary": "A nerdy florist finds his chance for success and romance with the help of a giant man-eating plant who demands to be fed.", "duration": "PT1H34M", - "director": [ + "directors": [ "Frank Oz" ], "mainActors": [ @@ -8346,7 +8341,7 @@ "Musical" ], "datePublished": "1986-12-19", - "rating": "PG-13", + "rating": "G", "ratingValue": 7.1, "bestRating": 10, "worstRating": 1, @@ -8358,10 +8353,10 @@ }, { "title": "Halloween", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMmMzNjJhYjUtNzFkZi00MWQ4LWJiMDEtYWM0NTAzNGZjMTI3XkEyXkFqcGdeQXVyOTE2OTMwNDk@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMmMzNjJhYjUtNzFkZi00MWQ4LWJiMDEtYWM0NTAzNGZjMTI3XkEyXkFqcGdeQXVyOTE2OTMwNDk@._V1_.jpg", "summary": "Laurie Strode confronts her long-time foe, Michael Myers, the masked figure who has haunted her since she narrowly escaped his killing spree on Halloween night four decades ago.", "duration": "PT1H46M", - "director": [ + "directors": [ "David Gordon Green" ], "mainActors": [ @@ -8375,7 +8370,7 @@ "Thriller" ], "datePublished": "2018-10-19", - "rating": "R", + "rating": "18A", "ratingValue": 6.5, "bestRating": 10, "worstRating": 1, @@ -8387,10 +8382,10 @@ }, { "title": "Upgrade", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjI0NzcyMjM5Ml5BMl5BanBnXkFtZTgwMzk2NzAyNTM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjI0NzcyMjM5Ml5BMl5BanBnXkFtZTgwMzk2NzAyNTM@._V1_.jpg", "summary": "Set in the near-future, technology controls nearly all aspects of life. But when the world of Grey, a self-labeled technophobe, is turned upside down, his only hope for revenge is an experimental computer chip implant.", "duration": "PT1H40M", - "director": [ + "directors": [ "Leigh Whannell" ], "mainActors": [ @@ -8403,8 +8398,8 @@ "Sci-Fi", "Thriller" ], - "datePublished": "2018-06-01", - "rating": "R", + "datePublished": "2018-06-29", + "rating": "18A", "ratingValue": 7.5, "bestRating": 10, "worstRating": 1, @@ -8414,10 +8409,10 @@ }, { "title": "The Blair Witch Project", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNzQ1NDBlNDItMDAyYS00YTI2LTgwMmYtMzAwMzg4NDFlM2ZmXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNzQ1NDBlNDItMDAyYS00YTI2LTgwMmYtMzAwMzg4NDFlM2ZmXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", "summary": "Three film students vanish after traveling into a Maryland forest to film a documentary on the local Blair Witch legend, leaving only their footage behind.", "duration": "PT1H21M", - "director": [ + "directors": [ "Daniel Myrick", "Eduardo Sánchez" ], @@ -8431,7 +8426,7 @@ "Mystery" ], "datePublished": "1999-07-30", - "rating": "R", + "rating": "14A", "ratingValue": 6.5, "bestRating": 10, "worstRating": 1, @@ -8443,10 +8438,10 @@ }, { "title": "Bone Tomahawk", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMzQ0MzE4OTUzMF5BMl5BanBnXkFtZTgwODAyNzI3NjE@._V1_.jpg", - "summary": "In the dying days of the old west, an elderly sheriff and his posse set out to rescue their town's doctor from cannibalistic cave dwellers.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMzQ0MzE4OTUzMF5BMl5BanBnXkFtZTgwODAyNzI3NjE@._V1_.jpg", + "summary": "In the dying days of the old west, an elderly sheriff and his posse set out to rescue their town's doctor from cannibalistic cave dwellers.", "duration": "PT2H12M", - "director": [ + "directors": [ "S. Craig Zahler" ], "mainActors": [ @@ -8460,7 +8455,7 @@ "Western" ], "datePublished": "2016-02-19", - "rating": "Not Rated", + "rating": "18A", "ratingValue": 7.1, "bestRating": 10, "worstRating": 1, @@ -8470,10 +8465,10 @@ }, { "title": "The Shining", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZWFlYmY2MGEtZjVkYS00YzU4LTg0YjQtYzY1ZGE3NTA5NGQxXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZWFlYmY2MGEtZjVkYS00YzU4LTg0YjQtYzY1ZGE3NTA5NGQxXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", "summary": "A family heads to an isolated hotel for the winter where a sinister presence influences the father into violence, while his psychic son sees horrific forebodings from both past and future.", "duration": "PT2H26M", - "director": [ + "directors": [ "Stanley Kubrick" ], "mainActors": [ @@ -8498,10 +8493,10 @@ }, { "title": "The Dead Zone", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMDk2ZGVkY2UtZGE0MS00NTY1LThiZjYtYjQxMTAwMjM5M2VlXkEyXkFqcGdeQXVyNTI4MjkwNjA@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMDk2ZGVkY2UtZGE0MS00NTY1LThiZjYtYjQxMTAwMjM5M2VlXkEyXkFqcGdeQXVyNTI4MjkwNjA@._V1_.jpg", "summary": "A man awakens from a coma to discover he has a psychic ability.", "duration": "PT1H43M", - "director": [ + "directors": [ "David Cronenberg" ], "mainActors": [ @@ -8515,7 +8510,7 @@ "Sci-Fi" ], "datePublished": "1983-10-21", - "rating": "R", + "rating": "14A", "ratingValue": 7.2, "bestRating": 10, "worstRating": 1, @@ -8526,10 +8521,10 @@ }, { "title": "The Wicker Man", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMzQ2YWYzOWItYmU4OS00OTgyLWI4M2YtMmQ2ZDc5NzRhNDA5XkEyXkFqcGdeQXVyNDE0OTU3NDY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMzQ2YWYzOWItYmU4OS00OTgyLWI4M2YtMmQ2ZDc5NzRhNDA5XkEyXkFqcGdeQXVyNDE0OTU3NDY@._V1_.jpg", "summary": "A puritan Police Sergeant arrives in a Scottish island village in search of a missing girl, who the Pagan locals claim never existed.", "duration": "PT1H28M", - "director": [ + "directors": [ "Robin Hardy" ], "mainActors": [ @@ -8542,8 +8537,8 @@ "Mystery", "Thriller" ], - "datePublished": "1974-08-07", - "rating": "R", + "datePublished": "1973-12-06", + "rating": "14A", "ratingValue": 7.5, "bestRating": 10, "worstRating": 1, @@ -8554,10 +8549,10 @@ }, { "title": "The Conjuring", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTM3NjA1NDMyMV5BMl5BanBnXkFtZTcwMDQzNDMzOQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTM3NjA1NDMyMV5BMl5BanBnXkFtZTcwMDQzNDMzOQ@@._V1_.jpg", "summary": "Paranormal investigators Ed and Lorraine Warren work to help a family terrorized by a dark presence in their farmhouse.", "duration": "PT1H52M", - "director": [ + "directors": [ "James Wan" ], "mainActors": [ @@ -8571,7 +8566,7 @@ "Thriller" ], "datePublished": "2013-07-19", - "rating": "R", + "rating": "14A", "ratingValue": 7.5, "bestRating": 10, "worstRating": 1, @@ -8582,10 +8577,10 @@ }, { "title": "The Exorcist", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYWFlZGY2NDktY2ZjOS00ZWNkLTg0ZDAtZDY4MTM1ODU4ZjljXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYWFlZGY2NDktY2ZjOS00ZWNkLTg0ZDAtZDY4MTM1ODU4ZjljXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", "summary": "When a young girl is possessed by a mysterious entity, her mother seeks the help of two Catholic priests to save her life.", "duration": "PT2H2M", - "director": [ + "directors": [ "William Friedkin" ], "mainActors": [ @@ -8607,10 +8602,10 @@ }, { "title": "Henry: Portrait of a Serial Killer", - "posterURL": "https://m.media-amazon.com/images/M/MV5BM2VjMDkzMTUtMDZjZi00YzFlLWE2MzYtNjVhNTkwYzU0YmNkXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BM2VjMDkzMTUtMDZjZi00YzFlLWE2MzYtNjVhNTkwYzU0YmNkXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", "summary": "Arriving in Chicago, Henry moves in with ex-con acquaintance Otis and starts schooling him in the ways of the serial killer.", "duration": "PT1H23M", - "director": [ + "directors": [ "John McNaughton" ], "mainActors": [ @@ -8623,8 +8618,8 @@ "Crime", "Drama" ], - "datePublished": "1990-09-07", - "rating": "Unrated", + "datePublished": "2018-08-01", + "rating": "R", "ratingValue": 7, "bestRating": 10, "worstRating": 1, @@ -8635,10 +8630,10 @@ }, { "title": "El orfanato", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNTRjZjUzMDEtMjM5MC00NTMzLWJlYzItNzYzNjIwZjc0YjIzXkEyXkFqcGdeQXVyMjgyNjk3MzE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNTRjZjUzMDEtMjM5MC00NTMzLWJlYzItNzYzNjIwZjc0YjIzXkEyXkFqcGdeQXVyMjgyNjk3MzE@._V1_.jpg", "summary": "A woman brings her family back to her childhood home, which used to be an orphanage for handicapped children. Before long, her son starts to communicate with an invisible new friend.", "duration": "PT1H45M", - "director": [ + "directors": [ "J.A. Bayona" ], "mainActors": [ @@ -8651,8 +8646,8 @@ "Horror", "Mystery" ], - "datePublished": "2008-01-11", - "rating": "R", + "datePublished": "2007-10-11", + "rating": "18A", "ratingValue": 7.4, "bestRating": 10, "worstRating": 1, @@ -8661,11 +8656,11 @@ ] }, { - "title": "Gerald's Game", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMzg0NGE0N2MtYTg1My00NTBkLWI5NjEtZTgyMDA0MTU4MmIyXkEyXkFqcGdeQXVyMTU2NTcyMg@@._V1_.jpg", + "title": "Gerald's Game", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMzg0NGE0N2MtYTg1My00NTBkLWI5NjEtZTgyMDA0MTU4MmIyXkEyXkFqcGdeQXVyMTU2NTcyMg@@._V1_.jpg", "summary": "A couple tries to spice up their marriage in a remote lake house. After the husband dies unexpectedly, the wife is left handcuffed to their bed frame and must fight to survive and break free.", "duration": "PT1H43M", - "director": [ + "directors": [ "Mike Flanagan" ], "mainActors": [ @@ -8679,7 +8674,7 @@ "Thriller" ], "datePublished": "2017-09-29", - "rating": "TV-MA", + "rating": "18+", "ratingValue": 6.5, "bestRating": 10, "worstRating": 1, @@ -8691,10 +8686,10 @@ }, { "title": "An American Werewolf in London", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZGNmYWQzMGEtNDlhMS00NzEwLTkzMDItMDQ4MjkyMzRkNjFiXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZGNmYWQzMGEtNDlhMS00NzEwLTkzMDItMDQ4MjkyMzRkNjFiXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", "summary": "Two American college students on a walking tour of Britain are attacked by a werewolf that none of the locals will admit exists.", "duration": "PT1H37M", - "director": [ + "directors": [ "John Landis" ], "mainActors": [ @@ -8707,7 +8702,7 @@ "Horror" ], "datePublished": "1981-08-21", - "rating": "R", + "rating": "14A", "ratingValue": 7.5, "bestRating": 10, "worstRating": 1, @@ -8717,10 +8712,10 @@ }, { "title": "Near Dark", - "posterURL": "https://m.media-amazon.com/images/M/MV5BODdkYzVhMmQtYmJhMy00MGMxLTk2ZmEtMmE0YTEwMWNhOTI5XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", - "summary": "A small-town farmer's son reluctantly joins a traveling group of vampires after he is bitten by a beautiful drifter.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BODdkYzVhMmQtYmJhMy00MGMxLTk2ZmEtMmE0YTEwMWNhOTI5XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "summary": "A small-town farmer's son reluctantly joins a traveling group of vampires after he is bitten by a beautiful drifter.", "duration": "PT1H34M", - "director": [ + "directors": [ "Kathryn Bigelow" ], "mainActors": [ @@ -8743,15 +8738,15 @@ }, { "title": "Poltergeist", - "posterURL": "https://m.media-amazon.com/images/M/MV5BODJiZTU1ZTMtZTEzMy00NzFmLWJjNzctZTc2MDcwZjE1MDBjXkEyXkFqcGdeQXVyMTUzMDUzNTI3._V1_.jpg", - "summary": "A family's home is haunted by a host of demonic ghosts.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BODJiZTU1ZTMtZTEzMy00NzFmLWJjNzctZTc2MDcwZjE1MDBjXkEyXkFqcGdeQXVyMTUzMDUzNTI3._V1_.jpg", + "summary": "A family's home is haunted by a host of demonic ghosts.", "duration": "PT1H54M", - "director": [ + "directors": [ "Tobe Hooper" ], "mainActors": [ "JoBeth Williams", - "Heather O'Rourke", + "Heather O'Rourke", "Craig T. Nelson" ], "genres": [ @@ -8759,7 +8754,7 @@ "Thriller" ], "datePublished": "1982-06-04", - "rating": "PG", + "rating": "13+", "ratingValue": 7.3, "bestRating": 10, "worstRating": 1, @@ -8771,10 +8766,10 @@ }, { "title": "This Is the End", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTQxODE3NjM1Ml5BMl5BanBnXkFtZTcwMzkzNjc4OA@@._V1_.jpg", - "summary": "Six Los Angeles celebrities are stuck in James Franco's house after a series of devastating events just destroyed the city. Inside, the group not only have to face the apocalypse, but themselves.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTQxODE3NjM1Ml5BMl5BanBnXkFtZTcwMzkzNjc4OA@@._V1_.jpg", + "summary": "Six Los Angeles celebrities are stuck in James Franco's house after a series of devastating events just destroyed the city. Inside, the group not only have to face the apocalypse, but themselves.", "duration": "PT1H47M", - "director": [ + "directors": [ "Evan Goldberg", "Seth Rogen" ], @@ -8788,7 +8783,7 @@ "Fantasy" ], "datePublished": "2013-06-12", - "rating": "R", + "rating": "18A", "ratingValue": 6.6, "bestRating": 10, "worstRating": 1, @@ -8800,10 +8795,10 @@ }, { "title": "Chronicle", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYmRkY2RhM2QtMjQwNC00NDVjLTk4MTQtZGNiMjYxMmJmODVhXkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYmRkY2RhM2QtMjQwNC00NDVjLTk4MTQtZGNiMjYxMmJmODVhXkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_.jpg", "summary": "Three high school friends gain superpowers after making an incredible discovery underground. Soon they find their lives spinning out of control and their bond tested as they embrace their darker sides.", - "duration": "PT1H24M", - "director": [ + "duration": "PT1H29M", + "directors": [ "Josh Trank" ], "mainActors": [ @@ -8817,7 +8812,7 @@ "Sci-Fi" ], "datePublished": "2012-02-03", - "rating": "PG-13", + "rating": "14A", "ratingValue": 7, "bestRating": 10, "worstRating": 1, @@ -8830,7 +8825,7 @@ "title": "Hokkaido Backcountry Project", "summary": "Canadian expat snowboarder Clayton Kernaghan clashes with Japanese authorities as he works to establish helicopter and snowcat skiing on the beautiful and snowy island of Hokkaido, Japan.", "duration": "PT32M", - "director": [ + "directors": [ "Matthew Standal" ], "mainActors": null, @@ -8845,9 +8840,9 @@ "writers": null }, { - "title": "'The Descent': Beneath the Scenes", + "title": "'The Descent': Beneath the Scenes", "duration": "PT42M", - "director": [ + "directors": [ "Emma Farrell" ], "mainActors": [ @@ -8867,10 +8862,10 @@ }, { "title": "Slither", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZDJjNWE1MzYtZjlkYy00YmRmLWIyMWUtN2JmNDA2MDg2NzY4XkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZDJjNWE1MzYtZjlkYy00YmRmLWIyMWUtN2JmNDA2MDg2NzY4XkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", "summary": "A small town is taken over by an alien plague, turning residents into zombies and all forms of mutant monsters.", "duration": "PT1H35M", - "director": [ + "directors": [ "James Gunn" ], "mainActors": [ @@ -8884,7 +8879,7 @@ "Sci-Fi" ], "datePublished": "2006-03-31", - "rating": "R", + "rating": "18A", "ratingValue": 6.5, "bestRating": 10, "worstRating": 1, @@ -8894,10 +8889,10 @@ }, { "title": "The Thing", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNGViZWZmM2EtNGYzZi00ZDAyLTk3ODMtNzIyZTBjN2Y1NmM1XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNGViZWZmM2EtNGYzZi00ZDAyLTk3ODMtNzIyZTBjN2Y1NmM1XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", "summary": "A research team in Antarctica is hunted by a shape-shifting alien that assumes the appearance of its victims.", "duration": "PT1H49M", - "director": [ + "directors": [ "John Carpenter" ], "mainActors": [ @@ -8911,7 +8906,7 @@ "Sci-Fi" ], "datePublished": "1982-06-25", - "rating": "R", + "rating": "18A", "ratingValue": 8.2, "bestRating": 10, "worstRating": 1, @@ -8922,10 +8917,10 @@ }, { "title": "We Are What We Are", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjI3NjI3NjAyN15BMl5BanBnXkFtZTgwODE3NzMxMDE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjI3NjI3NjAyN15BMl5BanBnXkFtZTgwODE3NzMxMDE@._V1_.jpg", "summary": "The Parkers, a reclusive family who follow ancient customs, find their secret existence threatened as a torrential downpour moves into their area, forcing daughters Iris and Rose to assume responsibilities beyond those of a typica...", "duration": "PT1H45M", - "director": [ + "directors": [ "Jim Mickle" ], "mainActors": [ @@ -8939,7 +8934,7 @@ "Thriller" ], "datePublished": "2013-10-25", - "rating": "R", + "rating": "18A", "ratingValue": 5.9, "bestRating": 10, "worstRating": 1, @@ -8951,9 +8946,9 @@ }, { "title": "Better Watch Out", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNWU0NzdhNmQtYzM4MS00ZDMyLWEzMTEtZmNlYjk3ODJhYjM0XkEyXkFqcGdeQXVyMzYxNjAyMTg@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNWU0NzdhNmQtYzM4MS00ZDMyLWEzMTEtZmNlYjk3ODJhYjM0XkEyXkFqcGdeQXVyMzYxNjAyMTg@._V1_.jpg", "summary": "After four best friends Elise, Danny, Revy and Brielle have a fun and wild night of drinking, something is about to go down. They do one thing that will haunt them for the rest of their lives. One top of that Elise goes missing an...", - "director": null, + "directors": null, "mainActors": null, "genres": [ "Drama", @@ -8968,10 +8963,10 @@ }, { "title": "Altered States", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZTdkOTU5NDYtZjk4NC00NDA0LTlkMDItODY3ZWU2Y2VkNzFjXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZTdkOTU5NDYtZjk4NC00NDA0LTlkMDItODY3ZWU2Y2VkNzFjXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", "summary": "A psycho-physiologist experiments with drugs and a sensory-deprivation tank and has visions he believes are genetic memories.", "duration": "PT1H42M", - "director": [ + "directors": [ "Ken Russell" ], "mainActors": [ @@ -8995,10 +8990,10 @@ }, { "title": "They Live", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTQ3MjM3ODU1NV5BMl5BanBnXkFtZTgwMjU3NDU2MTE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTQ3MjM3ODU1NV5BMl5BanBnXkFtZTgwMjU3NDU2MTE@._V1_.jpg", "summary": "They influence our decisions without us knowing it. They numb our senses without us feeling it. They control our lives without us realizing it. They live.", "duration": "PT1H34M", - "director": [ + "directors": [ "John Carpenter" ], "mainActors": [ @@ -9012,7 +9007,7 @@ "Sci-Fi" ], "datePublished": "1988-11-04", - "rating": "R", + "rating": "13+", "ratingValue": 7.2, "bestRating": 10, "worstRating": 1, @@ -9023,10 +9018,10 @@ }, { "title": "The House of the Devil", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTAxMDAxODg5ODReQTJeQWpwZ15BbWU3MDI5ODYxODI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTAxMDAxODg5ODReQTJeQWpwZ15BbWU3MDI5ODYxODI@._V1_.jpg", "summary": "In 1983, financially struggling college student Samantha Hughes takes a strange babysitting job that coincides with a full lunar eclipse. She slowly realizes her clients harbor a terrifying secret, putting her life in mortal danger.", "duration": "PT1H35M", - "director": [ + "directors": [ "Ti West" ], "mainActors": [ @@ -9039,7 +9034,7 @@ "Mystery" ], "datePublished": "2009-04-25", - "rating": "R", + "rating": "13+", "ratingValue": 6.3, "bestRating": 10, "worstRating": 1, @@ -9049,10 +9044,10 @@ }, { "title": "The Conjuring 2", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZjU5OWVlN2EtODNlYy00MjhhLWI0MDUtMTA3MmQ5MGMwYTZmXkEyXkFqcGdeQXVyNjE5MTM4MzY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZjU5OWVlN2EtODNlYy00MjhhLWI0MDUtMTA3MmQ5MGMwYTZmXkEyXkFqcGdeQXVyNjE5MTM4MzY@._V1_.jpg", "summary": "Ed and Lorraine Warren travel to North London to help a single mother raising four children alone in a house plagued by a supernatural spirit.", "duration": "PT2H14M", - "director": [ + "directors": [ "James Wan" ], "mainActors": [ @@ -9066,7 +9061,7 @@ "Thriller" ], "datePublished": "2016-06-10", - "rating": "R", + "rating": "14A", "ratingValue": 7.3, "bestRating": 10, "worstRating": 1, @@ -9078,10 +9073,10 @@ }, { "title": "The Autopsy of Jane Doe", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjA2MTEzMzkzM15BMl5BanBnXkFtZTgwMjM2MTM5MDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjA2MTEzMzkzM15BMl5BanBnXkFtZTgwMjM2MTM5MDI@._V1_.jpg", "summary": "A father and son, both coroners, are pulled into a complex mystery while attempting to identify the body of a young woman, who was apparently harboring dark secrets.", "duration": "PT1H26M", - "director": [ + "directors": [ "André Øvredal" ], "mainActors": [ @@ -9094,8 +9089,8 @@ "Mystery", "Thriller" ], - "datePublished": "2016-12-21", - "rating": "R", + "datePublished": "2017-03-31", + "rating": "14A", "ratingValue": 6.8, "bestRating": 10, "worstRating": 1, @@ -9106,10 +9101,10 @@ }, { "title": "E.T. the Extra-Terrestrial", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTQ2ODFlMDAtNzdhOC00ZDYzLWE3YTMtNDU4ZGFmZmJmYTczXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTQ2ODFlMDAtNzdhOC00ZDYzLWE3YTMtNDU4ZGFmZmJmYTczXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", "summary": "A troubled child summons the courage to help a friendly alien escape from Earth and return to his home planet.", "duration": "PT1H55M", - "director": [ + "directors": [ "Steven Spielberg" ], "mainActors": [ @@ -9123,7 +9118,7 @@ "Sci-Fi" ], "datePublished": "1982-06-11", - "rating": "PG", + "rating": "G", "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, @@ -9133,10 +9128,10 @@ }, { "title": "The Jungle Book", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTc3NTUzNTI4MV5BMl5BanBnXkFtZTgwNjU0NjU5NzE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTc3NTUzNTI4MV5BMl5BanBnXkFtZTgwNjU0NjU5NzE@._V1_.jpg", "summary": "After a threat from the tiger Shere Khan forces him to flee the jungle, a man-cub named Mowgli embarks on a journey of self discovery with the help of panther Bagheera and free-spirited bear Baloo.", "duration": "PT1H46M", - "director": [ + "directors": [ "Jon Favreau" ], "mainActors": [ @@ -9161,10 +9156,10 @@ }, { "title": "The Princess Bride", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYzdiOTVjZmQtNjAyNy00YjA2LTk5ZTAtNmJkMGQ5N2RmNjUxXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", - "summary": "A bedridden boy's grandfather reads him the story of a farmboy-turned-pirate who encounters numerous obstacles, enemies and allies in his quest to be reunited with his true love.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYzdiOTVjZmQtNjAyNy00YjA2LTk5ZTAtNmJkMGQ5N2RmNjUxXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "summary": "A bedridden boy's grandfather reads him the story of a farmboy-turned-pirate who encounters numerous obstacles, enemies and allies in his quest to be reunited with his true love.", "duration": "PT1H38M", - "director": [ + "directors": [ "Rob Reiner" ], "mainActors": [ @@ -9188,10 +9183,10 @@ }, { "title": "Babe", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYjg4ZjUzMzMtYzlmYi00YTcwLTlkOWUtYWFmY2RhNjliODQzXkEyXkFqcGdeQXVyNTUyMzE4Mzg@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYjg4ZjUzMzMtYzlmYi00YTcwLTlkOWUtYWFmY2RhNjliODQzXkEyXkFqcGdeQXVyNTUyMzE4Mzg@._V1_.jpg", "summary": "Babe, a pig raised by sheepdogs on a rural English farm, learns to herd sheep with a little help from Farmer Hoggett.", "duration": "PT1H31M", - "director": [ + "directors": [ "Chris Noonan" ], "mainActors": [ @@ -9204,7 +9199,7 @@ "Drama", "Family" ], - "datePublished": "1995-08-04", + "datePublished": "1997-07-13", "rating": "G", "ratingValue": 6.9, "bestRating": 10, @@ -9217,10 +9212,10 @@ }, { "title": "My Fair Lady", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNGM0ZTU3NmItZmRmMy00YWNjLWEzMWItYzg3MzcwZmM5NjdiXkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNGM0ZTU3NmItZmRmMy00YWNjLWEzMWItYzg3MzcwZmM5NjdiXkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_.jpg", "summary": "In 1910s London, snobbish phonetics professor Henry Higgins agrees to a wager that he can make crude flower girl, Eliza Doolittle, presentable in high society.", "duration": "PT2H50M", - "director": [ + "directors": [ "George Cukor" ], "mainActors": [ @@ -9234,8 +9229,8 @@ "Musical" ], "datePublished": "1964-12-25", - "rating": "G", - "ratingValue": 7.8, + "rating": "PG", + "ratingValue": 7.7, "bestRating": 10, "worstRating": 1, "writers": [ @@ -9245,10 +9240,10 @@ }, { "title": "The Straight Story", - "posterURL": "https://m.media-amazon.com/images/M/MV5BM2UxYTMwMWUtOGM1OS00MDI4LWFhNTUtOTA4NWI2ZjEwNmMxXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BM2UxYTMwMWUtOGM1OS00MDI4LWFhNTUtOTA4NWI2ZjEwNmMxXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", "summary": "An old man makes a long journey by lawnmower to mend his relationship with an ill brother.", "duration": "PT1H52M", - "director": [ + "directors": [ "David Lynch" ], "mainActors": [ @@ -9260,7 +9255,7 @@ "Biography", "Drama" ], - "datePublished": "1999-11-03", + "datePublished": "1999-11-05", "rating": "G", "ratingValue": 8, "bestRating": 10, @@ -9272,10 +9267,10 @@ }, { "title": "Hugo", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjAzNzk5MzgyNF5BMl5BanBnXkFtZTcwOTE4NDU5Ng@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjAzNzk5MzgyNF5BMl5BanBnXkFtZTcwOTE4NDU5Ng@@._V1_.jpg", "summary": "In 1931 Paris, an orphan living in the walls of a train station gets wrapped up in a mystery involving his late father and an automaton.", "duration": "PT2H6M", - "director": [ + "directors": [ "Martin Scorsese" ], "mainActors": [ @@ -9300,10 +9295,10 @@ }, { "title": "Enchanted", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjE4NDQ2Mjc0OF5BMl5BanBnXkFtZTcwNzQ2NDE1MQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjE4NDQ2Mjc0OF5BMl5BanBnXkFtZTcwNzQ2NDE1MQ@@._V1_.jpg", "summary": "A young maiden in a land called Andalasia, who is prepared to be wed, is sent away to New York City by an evil Queen, where she falls in love with a lawyer.", "duration": "PT1H47M", - "director": [ + "directors": [ "Kevin Lima" ], "mainActors": [ @@ -9317,7 +9312,7 @@ "Comedy" ], "datePublished": "2007-11-21", - "rating": "PG", + "rating": "G", "ratingValue": 7.1, "bestRating": 10, "worstRating": 1, @@ -9327,10 +9322,10 @@ }, { "title": "Jason and the Argonauts", - "posterURL": "https://m.media-amazon.com/images/M/MV5BN2NiMWEwZmYtNGIzNi00NjllLTg0ZTUtODQ0MDgwMGZkZWE2XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BN2NiMWEwZmYtNGIzNi00NjllLTg0ZTUtODQ0MDgwMGZkZWE2XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", "summary": "The legendary Greek hero leads a team of intrepid adventurers in a perilous quest for the legendary Golden Fleece.", "duration": "PT1H44M", - "director": [ + "directors": [ "Don Chaffey" ], "mainActors": [ @@ -9356,10 +9351,10 @@ }, { "title": "Harry Potter and the Prisoner of Azkaban", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTY4NTIwODg0N15BMl5BanBnXkFtZTcwOTc0MjEzMw@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTY4NTIwODg0N15BMl5BanBnXkFtZTcwOTc0MjEzMw@@._V1_.jpg", "summary": "Harry Potter, Ron and Hermione return to Hogwarts School of Witchcraft and Wizardry for their third year of study, where they delve into the mystery surrounding an escaped prisoner who poses a dangerous threat to the young wizard.", "duration": "PT2H22M", - "director": [ + "directors": [ "Alfonso Cuarón" ], "mainActors": [ @@ -9384,10 +9379,10 @@ }, { "title": "Spy Kids", - "posterURL": "https://m.media-amazon.com/images/M/MV5BY2JhODU1NmQtNjllYS00ZmQwLWEwZjYtMTE5NjA1M2YyMzdjXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", - "summary": "Using high tech gadgets, two kids have to save their reactivated OSS top spy parents when they're taken by an evil, high tech enemy.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BY2JhODU1NmQtNjllYS00ZmQwLWEwZjYtMTE5NjA1M2YyMzdjXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "summary": "Using high tech gadgets, two kids have to save their reactivated OSS top spy parents when they're taken by an evil, high tech enemy.", "duration": "PT1H28M", - "director": [ + "directors": [ "Robert Rodriguez" ], "mainActors": [ @@ -9400,7 +9395,7 @@ "Adventure", "Comedy" ], - "datePublished": "2001-03-30", + "datePublished": "2001-08-10", "rating": "PG", "ratingValue": 5.6, "bestRating": 10, @@ -9411,15 +9406,15 @@ }, { "title": "How Green Was My Valley", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjE1YWRmMWEtYTQ0Yy00NGEwLWFmNzAtZDkwOWNjMzkwYzJmXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjE1YWRmMWEtYTQ0Yy00NGEwLWFmNzAtZDkwOWNjMzkwYzJmXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", "summary": "At the turn of the century in a Welsh mining village, the Morgans, he stern, she gentle, raise coal-mining sons and hope their youngest will find a better life.", "duration": "PT1H58M", - "director": [ + "directors": [ "John Ford" ], "mainActors": [ "Walter Pidgeon", - "Maureen O'Hara", + "Maureen O'Hara", "Anna Lee" ], "genres": [ @@ -9427,7 +9422,7 @@ "Family" ], "datePublished": "1942-04-09", - "rating": "Passed", + "rating": "G", "ratingValue": 7.7, "bestRating": 10, "worstRating": 1, @@ -9437,11 +9432,11 @@ ] }, { - "title": "Pete's Dragon", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNWE3MzRiMjctMzFmNy00ZmU2LWEyNTctMTcyZjUxYjVjZTE0XkEyXkFqcGdeQXVyNjcwNTE2NTY@._V1_.jpg", + "title": "Pete's Dragon", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNWE3MzRiMjctMzFmNy00ZmU2LWEyNTctMTcyZjUxYjVjZTE0XkEyXkFqcGdeQXVyNjcwNTE2NTY@._V1_.jpg", "summary": "The adventures of an orphaned boy named Pete and his best friend Elliott, who happens to be a dragon.", "duration": "PT1H42M", - "director": [ + "directors": [ "David Lowery" ], "mainActors": [ @@ -9455,7 +9450,7 @@ "Comedy" ], "datePublished": "2016-08-12", - "rating": "PG", + "rating": "G", "ratingValue": 6.7, "bestRating": 10, "worstRating": 1, @@ -9467,9 +9462,9 @@ }, { "title": "A Monster Calls: Making of the Tales", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMDQ1OTc4MWUtM2E4Mi00Y2I0LWJjMzktNDQyZGE3NjdlZjc5XkEyXkFqcGdeQXVyNDY0NDMxOTQ@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMDQ1OTc4MWUtM2E4Mi00Y2I0LWJjMzktNDQyZGE3NjdlZjc5XkEyXkFqcGdeQXVyNDY0NDMxOTQ@._V1_.jpg", "duration": "PT8M", - "director": null, + "directors": null, "mainActors": null, "genres": [ "Documentary", @@ -9483,10 +9478,10 @@ }, { "title": "Harry Potter and the Goblet of Fire", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTI1NDMyMjExOF5BMl5BanBnXkFtZTcwOTc4MjQzMQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTI1NDMyMjExOF5BMl5BanBnXkFtZTcwOTc4MjQzMQ@@._V1_.jpg", "summary": "Harry Potter finds himself competing in a hazardous tournament between rival schools of magic, but he is distracted by recurring nightmares.", "duration": "PT2H37M", - "director": [ + "directors": [ "Mike Newell" ], "mainActors": [ @@ -9500,7 +9495,7 @@ "Fantasy" ], "datePublished": "2005-11-18", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.7, "bestRating": 10, "worstRating": 1, @@ -9511,10 +9506,10 @@ }, { "title": "That Thing You Do!", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOWVmN2ZhZjgtZGEzMy00NDkxLWI5YWQtYTE2ZTk0YzIyMzc0XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOWVmN2ZhZjgtZGEzMy00NDkxLWI5YWQtYTE2ZTk0YzIyMzc0XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", "summary": "A local Pennsylvania band scores a one-hit wonder in 1964 and rides the star-making machinery as long as they can, with lots of help from their manager.", "duration": "PT1H48M", - "director": [ + "directors": [ "Tom Hanks" ], "mainActors": [ @@ -9538,10 +9533,10 @@ }, { "title": "Duma", - "posterURL": "https://m.media-amazon.com/images/M/MV5BODlhZDBkYTYtOGU5My00NTg2LTkwNTUtZWI2NDQ2NWIxN2M5XkEyXkFqcGdeQXVyNjc3MjQzNTI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTIzMTg3NzQ1NV5BMl5BanBnXkFtZTYwNzg2NDc2._V1_.jpg", "summary": "An orphaned cheetah becomes the best friend and pet of a young boy living in South Africa.", "duration": "PT1H40M", - "director": [ + "directors": [ "Carroll Ballard" ], "mainActors": [ @@ -9567,10 +9562,10 @@ }, { "title": "A Christmas Story", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOWMyNjE0MzEtMzVjNy00NjIxLTg0ZjMtMWJhNGI1YmVjYTczL2ltYWdlXkEyXkFqcGdeQXVyNzc5MjA3OA@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOWMyNjE0MzEtMzVjNy00NjIxLTg0ZjMtMWJhNGI1YmVjYTczL2ltYWdlXkEyXkFqcGdeQXVyNzc5MjA3OA@@._V1_.jpg", "summary": "In the 1940s, a young boy named Ralphie Parker attempts to convince his parents, teacher, and Santa Claus that a Red Ryder Range 200 Shot BB gun really is the perfect Christmas gift.", "duration": "PT1H33M", - "director": [ + "directors": [ "Bob Clark" ], "mainActors": [ @@ -9596,7 +9591,7 @@ { "title": "Millions of Cardinals Memories: Busch Stadium 1966-2005", "duration": "PT1H30M", - "director": null, + "directors": null, "mainActors": [ "Joe Buck", "Wayne Hagin" @@ -9612,10 +9607,10 @@ }, { "title": "Cinderella", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjMxODYyODEzN15BMl5BanBnXkFtZTgwMDk4OTU0MzE@._V1_.jpg", - "summary": "When her father unexpectedly dies, young Ella finds herself at the mercy of her cruel stepmother and her scheming stepsisters. Never one to give up hope, Ella's fortunes begin to change after meeting a dashing stranger.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjMxODYyODEzN15BMl5BanBnXkFtZTgwMDk4OTU0MzE@._V1_.jpg", + "summary": "When her father unexpectedly dies, young Ella finds herself at the mercy of her cruel stepmother and her scheming stepsisters. Never one to give up hope, Ella's fortunes begin to change after meeting a dashing stranger.", "duration": "PT1H45M", - "director": [ + "directors": [ "Kenneth Branagh" ], "mainActors": [ @@ -9629,7 +9624,7 @@ "Family" ], "datePublished": "2015-03-13", - "rating": "PG", + "rating": "G", "ratingValue": 6.9, "bestRating": 10, "worstRating": 1, @@ -9640,10 +9635,10 @@ }, { "title": "The Sound of Music", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNWFhNjg3YjctMjg2Ny00YjBkLTg5M2EtMTk2MjA1NDY3NzQ2XkEyXkFqcGdeQXVyMTA0MTM5NjI2._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNWFhNjg3YjctMjg2Ny00YjBkLTg5M2EtMTk2MjA1NDY3NzQ2XkEyXkFqcGdeQXVyMTA0MTM5NjI2._V1_.jpg", "summary": "A young novice is sent by her convent in 1930s Austria to become a governess to the seven children of a widowed naval officer.", "duration": "PT2H52M", - "director": [ + "directors": [ "Robert Wise" ], "mainActors": [ @@ -9656,7 +9651,7 @@ "Drama", "Family" ], - "datePublished": "1965-04-01", + "datePublished": "1965-04-20", "rating": "G", "ratingValue": 8.1, "bestRating": 10, @@ -9669,10 +9664,10 @@ }, { "title": "The Muppet Movie", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMGQ0OGM5YjItYzYyMi00NmVmLWI3ODMtMTY2NGRkZmI5MWU2XkEyXkFqcGdeQXVyMzI0NDc4ODY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMGQ0OGM5YjItYzYyMi00NmVmLWI3ODMtMTY2NGRkZmI5MWU2XkEyXkFqcGdeQXVyMzI0NDc4ODY@._V1_.jpg", "summary": "Kermit and his newfound friends trek across America to find success in Hollywood, but a frog legs merchant is after Kermit.", "duration": "PT1H35M", - "director": [ + "directors": [ "James Frawley" ], "mainActors": [ @@ -9685,7 +9680,7 @@ "Comedy", "Family" ], - "datePublished": "1979-06-22", + "datePublished": "1979-12-21", "rating": "G", "ratingValue": 7.6, "bestRating": 10, @@ -9697,10 +9692,10 @@ }, { "title": "Harry Potter and the Half-Blood Prince", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNzU3NDg4NTAyNV5BMl5BanBnXkFtZTcwOTg2ODg1Mg@@._V1_.jpg", - "summary": "As Harry Potter begins his sixth year at Hogwarts, he discovers an old book marked as "the property of the Half-Blood Prince" and begins to learn more about Lord Voldemort's dark past.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNzU3NDg4NTAyNV5BMl5BanBnXkFtZTcwOTg2ODg1Mg@@._V1_.jpg", + "summary": "As Harry Potter begins his sixth year at Hogwarts, he discovers an old book marked as \"the property of the Half-Blood Prince\" and begins to learn more about Lord Voldemort's dark past.", "duration": "PT2H33M", - "director": [ + "directors": [ "David Yates" ], "mainActors": [ @@ -9725,10 +9720,10 @@ }, { "title": "Skyfall", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMWZiNjE2OWItMTkwNy00ZWQzLWI0NTgtMWE0NjNiYTljN2Q1XkEyXkFqcGdeQXVyNzAwMjYxMzA@._V1_.jpg", - "summary": "James Bond's loyalty to M is tested when her past comes back to haunt her. When MI6 comes under attack, 007 must track down and destroy the threat, no matter how personal the cost.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMWZiNjE2OWItMTkwNy00ZWQzLWI0NTgtMWE0NjNiYTljN2Q1XkEyXkFqcGdeQXVyNzAwMjYxMzA@._V1_.jpg", + "summary": "James Bond's loyalty to M is tested when her past comes back to haunt her. When MI6 comes under attack, 007 must track down and destroy the threat, no matter how personal the cost.", "duration": "PT2H23M", - "director": [ + "directors": [ "Sam Mendes" ], "mainActors": [ @@ -9742,7 +9737,7 @@ "Thriller" ], "datePublished": "2012-11-09", - "rating": "PG-13", + "rating": "14A", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -9754,10 +9749,10 @@ }, { "title": "High Noon", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOWIzZGUxZmItOThkMS00Y2QxLTg0MTYtMDdhMjRlNTNlYTI3L2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", - "summary": "A town Marshal, despite the disagreements of his newlywed bride and the townspeople around him, must face a gang of deadly killers alone at "high noon" when the gang leader, an outlaw he "sent up" years ago, arrives on the noon tr...", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOWIzZGUxZmItOThkMS00Y2QxLTg0MTYtMDdhMjRlNTNlYTI3L2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "summary": "A town Marshal, despite the disagreements of his newlywed bride and the townspeople around him, must face a gang of deadly killers alone at \"high noon\" when the gang leader, an outlaw he \"sent up\" years ago, arrives on the noon tr...", "duration": "PT1H25M", - "director": [ + "directors": [ "Fred Zinnemann" ], "mainActors": [ @@ -9770,8 +9765,8 @@ "Thriller", "Western" ], - "datePublished": "1952-07-30", - "rating": "PG", + "datePublished": "1952-07-25", + "rating": "G", "ratingValue": 8, "bestRating": 10, "worstRating": 1, @@ -9782,10 +9777,10 @@ }, { "title": "Strangers on a Train", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNWJjOGM4NmEtNDE2YS00OGEyLTkwZWItMGM4YzdhZDZhMzNhXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_.jpg", - "summary": "A psychopathic man tries to forcibly persuade a tennis star to agree to his theory that two strangers can get away with murder by submitting to his plan to kill the other's most-hated person.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNWJjOGM4NmEtNDE2YS00OGEyLTkwZWItMGM4YzdhZDZhMzNhXkEyXkFqcGdeQXVyMDI2NDg0NQ@@._V1_.jpg", + "summary": "A psychopathic man tries to forcibly persuade a tennis star to agree to his theory that two strangers can get away with murder by submitting to his plan to kill the other's most-hated person.", "duration": "PT1H41M", - "director": [ + "directors": [ "Alfred Hitchcock" ], "mainActors": [ @@ -9811,9 +9806,9 @@ }, { "title": "The Post: The Style Section - Re-Creating an Era", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNjg5YTE4ODUtZDVkZi00YmRiLWIwZTMtOTRiMjQ3NDg3ZTQ4XkEyXkFqcGdeQXVyMjQ5NjgwMjA@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNjg5YTE4ODUtZDVkZi00YmRiLWIwZTMtOTRiMjQ3NDg3ZTQ4XkEyXkFqcGdeQXVyMjQ5NjgwMjA@._V1_.jpg", "duration": "PT17M", - "director": null, + "directors": null, "mainActors": [ "Rick Carter", "Steven Spielberg", @@ -9831,10 +9826,10 @@ }, { "title": "The Conversation", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNzAwZWRhZTEtOWYwMi00YzQ5LWE1MzQtM2JlZWE0Y2E4ZDg3XkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNzAwZWRhZTEtOWYwMi00YzQ5LWE1MzQtM2JlZWE0Y2E4ZDg3XkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", "summary": "A paranoid, secretive surveillance expert has a crisis of conscience when he suspects that the couple he is spying on will be murdered.", "duration": "PT1H53M", - "director": [ + "directors": [ "Francis Ford Coppola" ], "mainActors": [ @@ -9848,7 +9843,7 @@ "Thriller" ], "datePublished": "1974-04-12", - "rating": "PG", + "rating": "18A", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -9858,10 +9853,10 @@ }, { "title": "Close Encounters of the Third Kind", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjM1NjE5NjQxN15BMl5BanBnXkFtZTgwMjYzMzQxMDE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjM1NjE5NjQxN15BMl5BanBnXkFtZTgwMjYzMzQxMDE@._V1_.jpg", "summary": "Roy Neary, an Indiana electric lineman, finds his quiet and ordinary daily life turned upside down after a close encounter with a UFO, spurring him to an obsessed cross-country quest for answers as a momentous event approaches.", "duration": "PT2H18M", - "director": [ + "directors": [ "Steven Spielberg" ], "mainActors": [ @@ -9873,7 +9868,7 @@ "Drama", "Sci-Fi" ], - "datePublished": "1977-12-14", + "datePublished": "1977-11-25", "rating": "PG", "ratingValue": 7.6, "bestRating": 10, @@ -9886,10 +9881,10 @@ }, { "title": "All Is Lost", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjI0MzIyMjU1N15BMl5BanBnXkFtZTgwOTk1MjQxMDE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjI0MzIyMjU1N15BMl5BanBnXkFtZTgwOTk1MjQxMDE@._V1_.jpg", "summary": "After a collision with a shipping container at sea, a resourceful sailor finds himself, despite all efforts to the contrary, staring his mortality in the face.", "duration": "PT1H46M", - "director": [ + "directors": [ "J.C. Chandor" ], "mainActors": [ @@ -9901,7 +9896,7 @@ "Drama" ], "datePublished": "2013-10-25", - "rating": "PG-13", + "rating": "PG", "ratingValue": 6.9, "bestRating": 10, "worstRating": 1, @@ -9912,7 +9907,7 @@ { "title": "Eye in the Sky: Perspectives", "duration": "PT2M", - "director": null, + "directors": null, "mainActors": [ "Colin Firth", "Gavin Hood", @@ -9929,10 +9924,10 @@ }, { "title": "Casino Royale", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYmI3MmMzMGMtNzc4Ni00YWQ4LWFkMDYtNjVlOWU3ZGZiNjY1XkEyXkFqcGdeQXVyNDQ2MTMzODA@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYmI3MmMzMGMtNzc4Ni00YWQ4LWFkMDYtNjVlOWU3ZGZiNjY1XkEyXkFqcGdeQXVyNDQ2MTMzODA@._V1_.jpg", "summary": "After earning 00 status and a licence to kill, secret agent James Bond sets out on his first mission as 007. Bond must defeat a private banker funding terrorists in a high-stakes game of poker at Casino Royale, Montenegro.", "duration": "PT2H24M", - "director": [ + "directors": [ "Martin Campbell" ], "mainActors": [ @@ -9946,7 +9941,7 @@ "Thriller" ], "datePublished": "2006-11-17", - "rating": "PG-13", + "rating": "14A", "ratingValue": 8, "bestRating": 10, "worstRating": 1, @@ -9958,10 +9953,10 @@ }, { "title": "Le cercle rouge", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYjA4YzZiOTAtY2E4NS00Y2YwLTkxMWItZjU2NDU2NmRhMjc3XkEyXkFqcGdeQXVyNDE0OTU3NDY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYjA4YzZiOTAtY2E4NS00Y2YwLTkxMWItZjU2NDU2NmRhMjc3XkEyXkFqcGdeQXVyNDE0OTU3NDY@._V1_.jpg", "summary": "After leaving prison, master thief Corey crosses paths with a notorious escapee and an alcoholic former policeman. The trio proceed to plot an elaborate heist.", "duration": "PT2H20M", - "director": [ + "directors": [ "Jean-Pierre Melville" ], "mainActors": [ @@ -9975,7 +9970,7 @@ "Thriller" ], "datePublished": "1970-10-20", - "rating": "Not Rated", + "rating": "PG", "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, @@ -9985,10 +9980,10 @@ }, { "title": "No Country for Old Men", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjA5Njk3MjM4OV5BMl5BanBnXkFtZTcwMTc5MTE1MQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjA5Njk3MjM4OV5BMl5BanBnXkFtZTcwMTc5MTE1MQ@@._V1_.jpg", "summary": "Violence and mayhem ensue after a hunter stumbles upon a drug deal gone wrong and more than two million dollars in cash near the Rio Grande.", "duration": "PT2H2M", - "director": [ + "directors": [ "Ethan Coen", "Joel Coen" ], @@ -10003,7 +9998,7 @@ "Thriller" ], "datePublished": "2007-11-21", - "rating": "R", + "rating": "18A", "ratingValue": 8.2, "bestRating": 10, "worstRating": 1, @@ -10015,10 +10010,10 @@ }, { "title": "Looper", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTg5NTA3NTg4NF5BMl5BanBnXkFtZTcwNTA0NDYzOA@@._V1_.jpg", - "summary": "In 2074, when the mob wants to get rid of someone, the target is sent into the past, where a hired gun awaits - someone like Joe - who one day learns the mob wants to 'close the loop' by sending back Joe's future self for assassin...", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTg5NTA3NTg4NF5BMl5BanBnXkFtZTcwNTA0NDYzOA@@._V1_.jpg", + "summary": "In 2074, when the mob wants to get rid of someone, the target is sent into the past, where a hired gun awaits - someone like Joe - who one day learns the mob wants to 'close the loop' by sending back Joe's future self for assassin...", "duration": "PT1H59M", - "director": [ + "directors": [ "Rian Johnson" ], "mainActors": [ @@ -10032,7 +10027,7 @@ "Sci-Fi" ], "datePublished": "2012-09-28", - "rating": "R", + "rating": "14A", "ratingValue": 7.4, "bestRating": 10, "worstRating": 1, @@ -10042,10 +10037,10 @@ }, { "title": "Blood Simple", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZmI5YzM1MjItMzFmNy00NGFkLThlMDUtZjZmYTZkM2QxMjU3XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZmI5YzM1MjItMzFmNy00NGFkLThlMDUtZjZmYTZkM2QxMjU3XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", "summary": "The owner of a seedy small-town Texas bar discovers that one of his employees is having an affair with his wife. A chaotic chain of misunderstandings, lies, and mischief ensues after he devises a plot to have them murdered.", "duration": "PT1H39M", - "director": [ + "directors": [ "Joel Coen", "Ethan Coen" ], @@ -10060,7 +10055,7 @@ "Thriller" ], "datePublished": "1985-01-18", - "rating": "R", + "rating": "14A", "ratingValue": 7.6, "bestRating": 10, "worstRating": 1, @@ -10071,10 +10066,10 @@ }, { "title": "Assault on Precinct 13", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZTQzMTA2ZjItMDA2Mi00YTNjLWFkOTktYTk3Y2JhZTdiYzU5XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZTQzMTA2ZjItMDA2Mi00YTNjLWFkOTktYTk3Y2JhZTdiYzU5XkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", "summary": "A Highway Patrol Officer, two criminals and a station secretary defend a defunct Los Angeles precinct office against a siege by a bloodthirsty street gang.", "duration": "PT1H31M", - "director": [ + "directors": [ "John Carpenter" ], "mainActors": [ @@ -10087,8 +10082,8 @@ "Crime", "Thriller" ], - "datePublished": "1976-11-05", - "rating": "R", + "datePublished": "1976-11-12", + "rating": "PA", "ratingValue": 7.3, "bestRating": 10, "worstRating": 1, @@ -10098,10 +10093,10 @@ }, { "title": "Bridge of Spies", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjIxOTI0MjU5NV5BMl5BanBnXkFtZTgwNzM4OTk4NTE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjIxOTI0MjU5NV5BMl5BanBnXkFtZTgwNzM4OTk4NTE@._V1_.jpg", "summary": "During the Cold War, an American lawyer is recruited to defend an arrested Soviet spy in court, and then help the CIA facilitate an exchange of the spy for the Soviet captured American U2 spy plane pilot, Francis Gary Powers.", "duration": "PT2H22M", - "director": [ + "directors": [ "Steven Spielberg" ], "mainActors": [ @@ -10115,7 +10110,7 @@ "Thriller" ], "datePublished": "2015-10-16", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.6, "bestRating": 10, "worstRating": 1, @@ -10127,10 +10122,10 @@ }, { "title": "Searching", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZjk5Yjk0MzYtZTVlMC00OWJjLThjZTEtZGIyY2U3OTc2ODg4XkEyXkFqcGdeQXVyODQxMTI4MjM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZjk5Yjk0MzYtZTVlMC00OWJjLThjZTEtZGIyY2U3OTc2ODg4XkEyXkFqcGdeQXVyODQxMTI4MjM@._V1_.jpg", "summary": "After his teenage daughter goes missing, a desperate father tries to find clues on her laptop.", "duration": "PT1H42M", - "director": [ + "directors": [ "Aneesh Chaganty" ], "mainActors": [ @@ -10144,7 +10139,7 @@ "Thriller" ], "datePublished": "2018-08-31", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.6, "bestRating": 10, "worstRating": 1, @@ -10155,10 +10150,10 @@ }, { "title": "The Fugitive", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYmFmOGZjYTItYjY1ZS00OWRiLTk0NDgtMjQ5MzBkYWE2YWE0XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYmFmOGZjYTItYjY1ZS00OWRiLTk0NDgtMjQ5MzBkYWE2YWE0XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", "summary": "Dr. Richard Kimble, unjustly accused of murdering his wife, must find the real killer while being the target of a nationwide manhunt led by a seasoned U.S. Marshal.", "duration": "PT2H10M", - "director": [ + "directors": [ "Andrew Davis" ], "mainActors": [ @@ -10172,7 +10167,7 @@ "Drama" ], "datePublished": "1993-08-06", - "rating": "PG-13", + "rating": "A", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -10184,10 +10179,10 @@ }, { "title": "Sicario", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjA5NjM3NTk1M15BMl5BanBnXkFtZTgwMzg1MzU2NjE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjA5NjM3NTk1M15BMl5BanBnXkFtZTgwMzg1MzU2NjE@._V1_.jpg", "summary": "An idealistic FBI agent is enlisted by a government task force to aid in the escalating war against drugs at the border area between the U.S. and Mexico.", "duration": "PT2H1M", - "director": [ + "directors": [ "Denis Villeneuve" ], "mainActors": [ @@ -10201,7 +10196,7 @@ "Drama" ], "datePublished": "2015-10-02", - "rating": "R", + "rating": "14A", "ratingValue": 7.7, "bestRating": 10, "worstRating": 1, @@ -10211,10 +10206,10 @@ }, { "title": "Ex Machina: Behind the Scenes Vignettes", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZGZjNzc1ZTQtNjAxMi00ZGY0LWE5OTEtZTBiMjM3NDU0MzEzXkEyXkFqcGdeQXVyMDYxMTUwNg@@._V1_.jpg", - "summary": "Composed of the following pieces: Making Ava, Nathan's World, New Consciousness, Becoming Ava, Director, Cast, Meet Ava, God Complex and Music.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZGZjNzc1ZTQtNjAxMi00ZGY0LWE5OTEtZTBiMjM3NDU0MzEzXkEyXkFqcGdeQXVyMDYxMTUwNg@@._V1_.jpg", + "summary": "Composed of the following pieces: Making Ava, Nathan's World, New Consciousness, Becoming Ava, Director, Cast, Meet Ava, God Complex and Music.", "duration": "PT29M", - "director": null, + "directors": null, "mainActors": [ "Geoff Barrow", "Mark Digby", @@ -10232,10 +10227,10 @@ }, { "title": "Jurassic Park", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjM2MDgxMDg0Nl5BMl5BanBnXkFtZTgwNTM2OTM5NDE@._V1_.jpg", - "summary": "A pragmatic paleontologist touring an almost complete theme park on an island in Central America is tasked with protecting a couple of kids after a power failure causes the park's cloned dinosaurs to run loose.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjM2MDgxMDg0Nl5BMl5BanBnXkFtZTgwNTM2OTM5NDE@._V1_.jpg", + "summary": "A pragmatic paleontologist touring an almost complete theme park on an island in Central America is tasked with protecting a couple of kids after a power failure causes the park's cloned dinosaurs to run loose.", "duration": "PT2H7M", - "director": [ + "directors": [ "Steven Spielberg" ], "mainActors": [ @@ -10249,7 +10244,7 @@ "Sci-Fi" ], "datePublished": "1993-06-11", - "rating": "PG-13", + "rating": "PG", "ratingValue": 8.2, "bestRating": 10, "worstRating": 1, @@ -10260,10 +10255,10 @@ }, { "title": "10 Cloverfield Lane", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjEzMjczOTIxMV5BMl5BanBnXkFtZTgwOTUwMjI3NzE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjEzMjczOTIxMV5BMl5BanBnXkFtZTgwOTUwMjI3NzE@._V1_.jpg", "summary": "A young woman is held in an underground bunker by a man who insists that a hostile event has left the surface of the Earth uninhabitable.", "duration": "PT1H43M", - "director": [ + "directors": [ "Dan Trachtenberg" ], "mainActors": [ @@ -10277,7 +10272,7 @@ "Mystery" ], "datePublished": "2016-03-11", - "rating": "PG-13", + "rating": "14A", "ratingValue": 7.2, "bestRating": 10, "worstRating": 1, @@ -10289,10 +10284,10 @@ }, { "title": "Diva", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZjZkOWYyOWYtZmNlOS00YWMwLWFjN2UtM2IyOGQxYjc3MmM0XkEyXkFqcGdeQXVyNDE0OTU3NDY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZjZkOWYyOWYtZmNlOS00YWMwLWFjN2UtM2IyOGQxYjc3MmM0XkEyXkFqcGdeQXVyNDE0OTU3NDY@._V1_.jpg", "summary": "Two tapes, two Parisian mob killers, one corrupt policeman, an opera fan, a teenage thief, and the coolest philosopher ever filmed all twist their way through an intricate and stylish French-language thriller.", "duration": "PT1H57M", - "director": [ + "directors": [ "Jean-Jacques Beineix" ], "mainActors": [ @@ -10305,8 +10300,8 @@ "Music", "Thriller" ], - "datePublished": "1982-04-23", - "rating": "R", + "datePublished": "1981-03-11", + "rating": "G", "ratingValue": 7.2, "bestRating": 10, "worstRating": 1, @@ -10318,10 +10313,10 @@ }, { "title": "In the Heat of the Night", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZDM1MTM4NGYtZDNjYy00ZDA5LTk4NTctYzg2OTVjZGRiODY3XkEyXkFqcGdeQXVyMTUzMDUzNTI3._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZDM1MTM4NGYtZDNjYy00ZDA5LTk4NTctYzg2OTVjZGRiODY3XkEyXkFqcGdeQXVyMTUzMDUzNTI3._V1_.jpg", "summary": "A black Philadelphia police detective is mistakenly suspected of a local murder while passing through a racially hostile Mississippi town, and after being cleared is reluctantly asked by the police chief to investigate the case.", "duration": "PT1H50M", - "director": [ + "directors": [ "Norman Jewison" ], "mainActors": [ @@ -10334,8 +10329,8 @@ "Mystery", "Thriller" ], - "datePublished": "1967-08-02", - "rating": "Approved", + "datePublished": "1967-08-18", + "rating": "PG", "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, @@ -10346,10 +10341,10 @@ }, { "title": "In the Line of Fire", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjdhYjRlMTgtNTMzOS00OTZlLWIxMjAtNjM4NGY0NGQxODM3XkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_.jpg", - "summary": "Secret Service agent Frank Horrigan couldn't save Kennedy, but he's determined not to let a clever assassin take out this president.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjdhYjRlMTgtNTMzOS00OTZlLWIxMjAtNjM4NGY0NGQxODM3XkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_.jpg", + "summary": "Secret Service agent Frank Horrigan couldn't save Kennedy, but he's determined not to let a clever assassin take out this president.", "duration": "PT2H8M", - "director": [ + "directors": [ "Wolfgang Petersen" ], "mainActors": [ @@ -10363,7 +10358,7 @@ "Drama" ], "datePublished": "1993-07-09", - "rating": "R", + "rating": "14A", "ratingValue": 7.2, "bestRating": 10, "worstRating": 1, @@ -10373,10 +10368,10 @@ }, { "title": "The Bourne Ultimatum", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNGNiNmU2YTMtZmU4OS00MjM0LTlmYWUtMjVlYjAzYjE2N2RjXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNGNiNmU2YTMtZmU4OS00MjM0LTlmYWUtMjVlYjAzYjE2N2RjXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_.jpg", "summary": "Jason Bourne dodges a ruthless C.I.A. official and his Agents from a new assassination program while searching for the origins of his life as a trained killer.", "duration": "PT1H55M", - "director": [ + "directors": [ "Paul Greengrass" ], "mainActors": [ @@ -10390,7 +10385,7 @@ "Thriller" ], "datePublished": "2007-08-03", - "rating": "PG-13", + "rating": "14A", "ratingValue": 8, "bestRating": 10, "worstRating": 1, @@ -10402,10 +10397,10 @@ }, { "title": "Gone Girl", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTk0MDQ3MzAzOV5BMl5BanBnXkFtZTgwNzU1NzE3MjE@._V1_.jpg", - "summary": "With his wife's disappearance having become the focus of an intense media circus, a man sees the spotlight turned on him when it's suspected that he may not be innocent.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTk0MDQ3MzAzOV5BMl5BanBnXkFtZTgwNzU1NzE3MjE@._V1_.jpg", + "summary": "With his wife's disappearance having become the focus of an intense media circus, a man sees the spotlight turned on him when it's suspected that he may not be innocent.", "duration": "PT2H29M", - "director": [ + "directors": [ "David Fincher" ], "mainActors": [ @@ -10419,7 +10414,7 @@ "Thriller" ], "datePublished": "2014-10-03", - "rating": "R", + "rating": "18A", "ratingValue": 8.1, "bestRating": 10, "worstRating": 1, @@ -10429,10 +10424,10 @@ }, { "title": "Blue Velvet", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMzExOTczNTgtN2Q1Yy00MmI1LWE0NjgtNmIwMzdmZGNlODU1XkEyXkFqcGdeQXVyNDkzNTM2ODg@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BODMyYWE2MzEtNWU3ZS00NDRiLWI2MTItNzQ3MThkOTkwZWQ5XkEyXkFqcGdeQXVyMzY0MTE3NzU@._V1_.jpg", "summary": "The discovery of a severed human ear found in a field leads a young man on an investigation related to a beautiful, mysterious nightclub singer and a group of psychopathic criminals who have kidnapped her child.", "duration": "PT2H", - "director": [ + "directors": [ "David Lynch" ], "mainActors": [ @@ -10446,7 +10441,7 @@ "Mystery" ], "datePublished": "1986-10-23", - "rating": "R", + "rating": "(Banned)", "ratingValue": 7.7, "bestRating": 10, "worstRating": 1, @@ -10456,10 +10451,10 @@ }, { "title": "Mandy", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjk1MjhmZWQtNzU3OC00NDE4LThlODQtNTdhZGM4M2E3MWZkXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjk1MjhmZWQtNzU3OC00NDE4LThlODQtNTdhZGM4M2E3MWZkXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_.jpg", "summary": "The enchanted lives of a couple in a secluded forest are brutally shattered by a nightmarish hippie cult and their demon-biker henchmen, propelling a man into a spiraling, surreal rampage of vengeance.", "duration": "PT2H1M", - "director": [ + "directors": [ "Panos Cosmatos" ], "mainActors": [ @@ -10473,7 +10468,7 @@ "Horror" ], "datePublished": "2018-09-14", - "rating": "Not Rated", + "rating": "R", "ratingValue": 6.5, "bestRating": 10, "worstRating": 1, @@ -10485,10 +10480,10 @@ }, { "title": "Dip huet seung hung", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNjgxOGViYTYtYWRkMC00MGZmLTk0OWEtYTgwZGNiMmZjNzYzXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNjgxOGViYTYtYWRkMC00MGZmLTk0OWEtYTgwZGNiMmZjNzYzXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", "summary": "A disillusioned assassin accepts one last hit in hopes of using his earnings to restore vision to a singer he accidentally blinded.", "duration": "PT1H51M", - "director": [ + "directors": [ "John Woo" ], "mainActors": [ @@ -10501,7 +10496,8 @@ "Crime", "Drama" ], - "rating": "R", + "datePublished": "1989-07-06", + "rating": "18+", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -10510,11 +10506,11 @@ ] }, { - "title": "L'avventura", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNmJlYTVjZTYtZDg1Yy00NzFiLWJmYzYtYTJhMjliY2I2ZTlhXkEyXkFqcGdeQXVyMjgyNjk3MzE@._V1_.jpg", + "title": "L'avventura", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNmJlYTVjZTYtZDg1Yy00NzFiLWJmYzYtYTJhMjliY2I2ZTlhXkEyXkFqcGdeQXVyMjgyNjk3MzE@._V1_.jpg", "summary": "A woman disappears during a Mediterranean boating trip. During the search, her lover and her best friend become attracted to each other.", "duration": "PT2H24M", - "director": [ + "directors": [ "Michelangelo Antonioni" ], "mainActors": [ @@ -10527,7 +10523,7 @@ "Mystery", "Romance" ], - "datePublished": "1961-03-04", + "datePublished": "1960-09-14", "rating": "Not Rated", "ratingValue": 7.7, "bestRating": 10, @@ -10540,10 +10536,10 @@ }, { "title": "To Catch a Thief", - "posterURL": "https://m.media-amazon.com/images/M/MV5BODM2ODgyOGYtYzYwMC00ZTEwLTg2MmItZDI2OTdhMTdiMGFiL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BODM2ODgyOGYtYzYwMC00ZTEwLTg2MmItZDI2OTdhMTdiMGFiL2ltYWdlXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", "summary": "A retired jewel thief sets out to prove his innocence after being suspected of returning to his former occupation.", "duration": "PT1H46M", - "director": [ + "directors": [ "Alfred Hitchcock" ], "mainActors": [ @@ -10556,8 +10552,8 @@ "Romance", "Thriller" ], - "datePublished": "1955-08-05", - "rating": "PG", + "datePublished": "1955-09-03", + "rating": "G", "ratingValue": 7.4, "bestRating": 10, "worstRating": 1, @@ -10569,10 +10565,10 @@ }, { "title": "The Departed", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTI1MTY2OTIxNV5BMl5BanBnXkFtZTYwNjQ4NjY3._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTI1MTY2OTIxNV5BMl5BanBnXkFtZTYwNjQ4NjY3._V1_.jpg", "summary": "An undercover cop and a mole in the police attempt to identify each other while infiltrating an Irish gang in South Boston.", "duration": "PT2H31M", - "director": [ + "directors": [ "Martin Scorsese" ], "mainActors": [ @@ -10586,7 +10582,7 @@ "Thriller" ], "datePublished": "2006-10-06", - "rating": "R", + "rating": "18A", "ratingValue": 8.5, "bestRating": 10, "worstRating": 1, @@ -10598,10 +10594,10 @@ }, { "title": "The Dark Knight Rises", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTk4ODQzNDY3Ml5BMl5BanBnXkFtZTcwODA0NTM4Nw@@._V1_.jpg", - "summary": "Eight years after the Joker's reign of chaos, Batman is coerced out of exile with the assistance of the mysterious Selina Kyle in order to defend Gotham City from the vicious guerrilla terrorist Bane.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTk4ODQzNDY3Ml5BMl5BanBnXkFtZTcwODA0NTM4Nw@@._V1_.jpg", + "summary": "Eight years after the Joker's reign of chaos, Batman is coerced out of exile with the assistance of the mysterious Selina Kyle in order to defend Gotham City from the vicious guerrilla terrorist Bane.", "duration": "PT2H44M", - "director": [ + "directors": [ "Christopher Nolan" ], "mainActors": [ @@ -10615,7 +10611,7 @@ "Thriller" ], "datePublished": "2012-07-20", - "rating": "PG-13", + "rating": "14A", "ratingValue": 8.4, "bestRating": 10, "worstRating": 1, @@ -10627,10 +10623,10 @@ }, { "title": "Children of Men", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZjUzY2ZhZDAtZDRlNS00MzEzLTliZjItMzMyYzM2OTdkZGJjXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZjUzY2ZhZDAtZDRlNS00MzEzLTliZjItMzMyYzM2OTdkZGJjXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", "summary": "In 2027, in a chaotic world in which women have somehow become infertile, a former activist agrees to help transport a miraculously pregnant woman to a sanctuary at sea.", "duration": "PT1H49M", - "director": [ + "directors": [ "Alfonso Cuarón" ], "mainActors": [ @@ -10643,8 +10639,8 @@ "Drama", "Sci-Fi" ], - "datePublished": "2007-01-05", - "rating": "R", + "datePublished": "2006-12-25", + "rating": "14A", "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, @@ -10656,10 +10652,10 @@ }, { "title": "Il buono, il brutto, il cattivo", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNjJlYmNkZGItM2NhYy00MjlmLTk5NmQtNjg1NmM2ODU4OTMwXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNjJlYmNkZGItM2NhYy00MjlmLTk5NmQtNjg1NmM2ODU4OTMwXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", "summary": "A bounty hunting scam joins two men in an uneasy alliance against a third in a race to find a fortune in gold buried in a remote cemetery.", - "duration": "PT2H58M", - "director": [ + "duration": "PT2H41M", + "directors": [ "Sergio Leone" ], "mainActors": [ @@ -10671,8 +10667,8 @@ "Adventure", "Western" ], - "datePublished": "1967-12-29", - "rating": "Approved", + "datePublished": "1966-12-23", + "rating": "14+", "ratingValue": 8.8, "bestRating": 10, "worstRating": 1, @@ -10684,10 +10680,10 @@ }, { "title": "True Grit", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTU5MjU3MTI4OF5BMl5BanBnXkFtZTcwMTQxOTAxNA@@._V1_.jpg", - "summary": "A stubborn teenager enlists the help of a tough U.S. Marshal to track down her father's murderer.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTU5MjU3MTI4OF5BMl5BanBnXkFtZTcwMTQxOTAxNA@@._V1_.jpg", + "summary": "A stubborn teenager enlists the help of a tough U.S. Marshal to track down her father's murderer.", "duration": "PT1H50M", - "director": [ + "directors": [ "Ethan Coen", "Joel Coen" ], @@ -10701,7 +10697,7 @@ "Western" ], "datePublished": "2010-12-22", - "rating": "PG-13", + "rating": "14A", "ratingValue": 7.6, "bestRating": 10, "worstRating": 1, @@ -10712,11 +10708,11 @@ ] }, { - "title": "C'era una volta il West", - "posterURL": "https://m.media-amazon.com/images/M/MV5BODQ3NDExOGYtMzI3Mi00NWRlLTkwNjAtNjc4MDgzZGJiZTA1XkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "title": "C'era una volta il West", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BODQ3NDExOGYtMzI3Mi00NWRlLTkwNjAtNjc4MDgzZGJiZTA1XkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", "summary": "A mysterious stranger with a harmonica joins forces with a notorious desperado to protect a beautiful widow from a ruthless assassin working for the railroad.", "duration": "PT2H46M", - "director": [ + "directors": [ "Sergio Leone" ], "mainActors": [ @@ -10727,8 +10723,8 @@ "genres": [ "Western" ], - "datePublished": "1969-07-04", - "rating": "PG-13", + "datePublished": "1968-12-21", + "rating": "13+", "ratingValue": 8.5, "bestRating": 10, "worstRating": 1, @@ -10740,10 +10736,10 @@ }, { "title": "Unforgiven", - "posterURL": "https://m.media-amazon.com/images/M/MV5BODM3YWY4NmQtN2Y3Ni00OTg0LWFhZGQtZWE3ZWY4MTJlOWU4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", - "summary": "Retired Old West gunslinger William Munny reluctantly takes on one last job, with the help of his old partner Ned Logan and a young man, The "Schofield Kid."", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BODM3YWY4NmQtN2Y3Ni00OTg0LWFhZGQtZWE3ZWY4MTJlOWU4XkEyXkFqcGdeQXVyNjU0OTQ0OTY@._V1_.jpg", + "summary": "Retired Old West gunslinger William Munny reluctantly takes on one last job, with the help of his old partner Ned Logan and a young man, The \"Schofield Kid.\"", "duration": "PT2H10M", - "director": [ + "directors": [ "Clint Eastwood" ], "mainActors": [ @@ -10756,7 +10752,7 @@ "Western" ], "datePublished": "1992-08-07", - "rating": "R", + "rating": "14A", "ratingValue": 8.2, "bestRating": 10, "worstRating": 1, @@ -10766,10 +10762,10 @@ }, { "title": "The Wild Bunch", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNGUyYTZmOWItMDJhMi00N2IxLWIyNDMtNjUxM2ZiYmU5YWU1XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", - "summary": "An aging group of outlaws look for one last big score as the "traditional" American West is disappearing around them.", - "duration": "PT2H15M", - "director": [ + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNGUyYTZmOWItMDJhMi00N2IxLWIyNDMtNjUxM2ZiYmU5YWU1XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "summary": "An aging group of outlaws look for one last big score as the \"traditional\" American West is disappearing around them.", + "duration": "PT2H25M", + "directors": [ "Sam Peckinpah" ], "mainActors": [ @@ -10795,10 +10791,10 @@ }, { "title": "The Ballad of Buster Scruggs", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYjRkYTI3M2EtZWQ4Ny00OTA2LWFmMTMtY2E4MTEyZmNjOTMxXkEyXkFqcGdeQXVyNDg4NjY5OTQ@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYjRkYTI3M2EtZWQ4Ny00OTA2LWFmMTMtY2E4MTEyZmNjOTMxXkEyXkFqcGdeQXVyNDg4NjY5OTQ@._V1_.jpg", "summary": "Six tales of life and violence in the Old West, following a singing gunslinger, a bank robber, a traveling impresario, an elderly prospector, a wagon train, and a perverse pair of bounty hunters.", "duration": "PT2H13M", - "director": [ + "directors": [ "Ethan Coen", "Joel Coen" ], @@ -10812,8 +10808,8 @@ "Drama", "Musical" ], - "datePublished": "2018-11-09", - "rating": "R", + "datePublished": "2018-11-16", + "rating": "14A", "ratingValue": 7.3, "bestRating": 10, "worstRating": 1, @@ -10825,10 +10821,10 @@ }, { "title": "Giant", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMDQwOWQ0OGItNjJjYi00YzVjLTk4NmUtYzQ0NzUwZGY3NDZjXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMDQwOWQ0OGItNjJjYi00YzVjLTk4NmUtYzQ0NzUwZGY3NDZjXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", "summary": "Sprawling epic covering the life of a Texas cattle rancher and his family and associates.", "duration": "PT3H21M", - "director": [ + "directors": [ "George Stevens" ], "mainActors": [ @@ -10840,8 +10836,8 @@ "Drama", "Western" ], - "datePublished": "1956-11-24", - "rating": "G", + "datePublished": "1956-11-08", + "rating": "PG", "ratingValue": 7.6, "bestRating": 10, "worstRating": 1, @@ -10853,10 +10849,10 @@ }, { "title": "Johnny Guitar", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOGY4ZmNkMWItNmRkNi00NjBjLTg5ZjgtNzg4NTllYWRlMzY1XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOGY4ZmNkMWItNmRkNi00NjBjLTg5ZjgtNzg4NTllYWRlMzY1XkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", "summary": "After helping a wounded gang member, a strong-willed female saloon owner is wrongly suspected of murder and bank robbery by a lynch mob.", "duration": "PT1H50M", - "director": [ + "directors": [ "Nicholas Ray" ], "mainActors": [ @@ -10881,10 +10877,10 @@ }, { "title": "Sweetgrass", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTc0NDYyMDY1OF5BMl5BanBnXkFtZTcwOTI4MzExMw@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTc0NDYyMDY1OF5BMl5BanBnXkFtZTcwOTI4MzExMw@@._V1_.jpg", "summary": "In the summer of 2003, a group of shepherds took a herd of sheep one final time through the Beartooth Mountains of Montana, in the extreme north-west of the United States. It was a journey of almost three hundred kilometres throug...", "duration": "PT1H41M", - "director": [ + "directors": [ "Ilisa Barbash", "Lucien Castaing-Taylor" ], @@ -10895,7 +10891,7 @@ "Western" ], "datePublished": "2011-04-22", - "rating": "Unrated", + "rating": "14A", "ratingValue": 6.8, "bestRating": 10, "worstRating": 1, @@ -10903,10 +10899,10 @@ }, { "title": "The Man Who Shot Liberty Valance", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMGEyNzhkYzktMGMyZS00YzRiLWJlYjktZjJkOTU5ZDY0ZGI4XkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMGEyNzhkYzktMGMyZS00YzRiLWJlYjktZjJkOTU5ZDY0ZGI4XkEyXkFqcGdeQXVyNjUwNzk3NDc@._V1_.jpg", "summary": "A senator returns to a Western town for the funeral of an old friend and tells the story of his origins.", "duration": "PT2H3M", - "director": [ + "directors": [ "John Ford" ], "mainActors": [ @@ -10918,8 +10914,8 @@ "Drama", "Western" ], - "datePublished": "1962-04-22", - "rating": "Approved", + "datePublished": "1962-04-23", + "rating": "PG", "ratingValue": 8.1, "bestRating": 10, "worstRating": 1, @@ -10931,10 +10927,10 @@ }, { "title": "Blazing Saddles", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZGZmMWE1MDYtNzAyNC00MDMzLTgzZjQtNTQ5NjYzN2E4MzkzXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZGZmMWE1MDYtNzAyNC00MDMzLTgzZjQtNTQ5NjYzN2E4MzkzXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_.jpg", "summary": "In order to ruin a western town, a corrupt politician appoints a black Sheriff, who promptly becomes his most formidable adversary.", "duration": "PT1H33M", - "director": [ + "directors": [ "Mel Brooks" ], "mainActors": [ @@ -10947,7 +10943,7 @@ "Western" ], "datePublished": "1974-02-07", - "rating": "R", + "rating": "14", "ratingValue": 7.7, "bestRating": 10, "worstRating": 1, @@ -10959,10 +10955,10 @@ }, { "title": "3:10 to Yuma", - "posterURL": "https://m.media-amazon.com/images/M/MV5BODE0NTcxNTQzNF5BMl5BanBnXkFtZTcwMzczOTIzMw@@._V1_.jpg", - "summary": "A small-time rancher agrees to hold a captured outlaw who's awaiting a train to go to court in Yuma. A battle of wills ensues as the outlaw tries to psych out the rancher.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BODE0NTcxNTQzNF5BMl5BanBnXkFtZTcwMzczOTIzMw@@._V1_.jpg", + "summary": "A small-time rancher agrees to hold a captured outlaw who's awaiting a train to go to court in Yuma. A battle of wills ensues as the outlaw tries to psych out the rancher.", "duration": "PT2H2M", - "director": [ + "directors": [ "James Mangold" ], "mainActors": [ @@ -10976,7 +10972,7 @@ "Drama" ], "datePublished": "2007-09-07", - "rating": "R", + "rating": "14A", "ratingValue": 7.7, "bestRating": 10, "worstRating": 1, @@ -10988,10 +10984,10 @@ }, { "title": "Django Unchained", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjIyNTQ5NjQ1OV5BMl5BanBnXkFtZTcwODg1MDU4OA@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjIyNTQ5NjQ1OV5BMl5BanBnXkFtZTcwODg1MDU4OA@@._V1_.jpg", "summary": "With the help of a German bounty-hunter, a freed slave sets out to rescue his wife from a brutal plantation owner in Mississippi.", "duration": "PT2H45M", - "director": [ + "directors": [ "Quentin Tarantino" ], "mainActors": [ @@ -11004,7 +11000,7 @@ "Western" ], "datePublished": "2012-12-25", - "rating": "R", + "rating": "18A", "ratingValue": 8.5, "bestRating": 10, "worstRating": 1, @@ -11014,10 +11010,10 @@ }, { "title": "Lone Star", - "posterURL": "https://m.media-amazon.com/images/M/MV5BN2ViYzQ3YTAtZmQ5OS00ZWNkLWFkZWQtYTJiNTI1OWVlMzc0XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BN2ViYzQ3YTAtZmQ5OS00ZWNkLWFkZWQtYTJiNTI1OWVlMzc0XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", "summary": "When the skeleton of his murdered predecessor is found, Sheriff Sam Deeds unearths many other long-buried secrets in his Texas border town.", "duration": "PT2H15M", - "director": [ + "directors": [ "John Sayles" ], "mainActors": [ @@ -11031,7 +11027,7 @@ "Western" ], "datePublished": "1996-06-21", - "rating": "R", + "rating": "AA", "ratingValue": 7.4, "bestRating": 10, "worstRating": 1, @@ -11041,10 +11037,10 @@ }, { "title": "Butch Cassidy and the Sundance Kid", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTkyMTM2NDk5Nl5BMl5BanBnXkFtZTgwNzY1NzEyMDE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTkyMTM2NDk5Nl5BMl5BanBnXkFtZTgwNzY1NzEyMDE@._V1_.jpg", "summary": "In 1890s Wyoming, Butch Cassidy and The Sundance Kid lead a band of outlaws. When a train robbery goes wrong, they find themselves on the run with a posse hard on their heels. After considering their options, they escape to South ...", "duration": "PT1H50M", - "director": [ + "directors": [ "George Roy Hill" ], "mainActors": [ @@ -11058,7 +11054,7 @@ "Drama" ], "datePublished": "1969-09-24", - "rating": "PG", + "rating": "A", "ratingValue": 8, "bestRating": 10, "worstRating": 1, @@ -11068,10 +11064,10 @@ }, { "title": "True Grit", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjEwNzRlMzUtODIwMS00N2IwLWE1ZTgtODYzNWY0MGJhODY3XkEyXkFqcGdeQXVyMjI4MjA5MzA@._V1_.jpg", - "summary": "A drunken, hard-nosed U.S. Marshal and a Texas Ranger help a stubborn teenager track down her father's murderer in Indian Territory.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjEwNzRlMzUtODIwMS00N2IwLWE1ZTgtODYzNWY0MGJhODY3XkEyXkFqcGdeQXVyMjI4MjA5MzA@._V1_.jpg", + "summary": "A drunken, hard-nosed U.S. Marshal and a Texas Ranger help a stubborn teenager track down her father's murderer in Indian Territory.", "duration": "PT2H8M", - "director": [ + "directors": [ "Henry Hathaway" ], "mainActors": [ @@ -11085,7 +11081,7 @@ "Western" ], "datePublished": "1969-06-21", - "rating": "G", + "rating": "PG", "ratingValue": 7.4, "bestRating": 10, "worstRating": 1, @@ -11096,10 +11092,10 @@ }, { "title": "The Magnificent Seven", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMzYyNzU0MTM1OF5BMl5BanBnXkFtZTcwMzE1ODE1NA@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMzYyNzU0MTM1OF5BMl5BanBnXkFtZTcwMzE1ODE1NA@@._V1_.jpg", "summary": "Seven gunfighters are hired by Mexican peasants to liberate their village from oppressive bandits.", "duration": "PT2H8M", - "director": [ + "directors": [ "John Sturges" ], "mainActors": [ @@ -11112,8 +11108,8 @@ "Adventure", "Drama" ], - "datePublished": "1960-10-12", - "rating": "Approved", + "datePublished": "1960-10-23", + "rating": "PG", "ratingValue": 7.7, "bestRating": 10, "worstRating": 1, @@ -11124,11 +11120,11 @@ ] }, { - "title": "McCabe & Mrs. Miller", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMmMxMTk0MmMtY2I0YS00NjcwLTk2NjYtOWFlOTA0M2EzNjgxL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "title": "McCabe & Mrs. Miller", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMmMxMTk0MmMtY2I0YS00NjcwLTk2NjYtOWFlOTA0M2EzNjgxL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", "summary": "A gambler and a prostitute become business partners in a remote Old West mining town, and their enterprise thrives until a large corporation arrives on the scene.", "duration": "PT2H", - "director": [ + "directors": [ "Robert Altman" ], "mainActors": [ @@ -11141,7 +11137,7 @@ "Western" ], "datePublished": "1971-07-08", - "rating": "R", + "rating": "18A", "ratingValue": 7.6, "bestRating": 10, "worstRating": 1, @@ -11153,10 +11149,10 @@ }, { "title": "The Proposition", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNzEzNGQ0ZjEtNzI0MC00ZWE5LTk3YWYtOGExY2ZjZjY5YTgyXkEyXkFqcGdeQXVyNjc5NjEzNA@@._V1_.jpg", - "summary": "A lawman apprehends a notorious outlaw and gives him nine days to kill his older brother, or else they'll execute his younger brother.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNzEzNGQ0ZjEtNzI0MC00ZWE5LTk3YWYtOGExY2ZjZjY5YTgyXkEyXkFqcGdeQXVyNjc5NjEzNA@@._V1_.jpg", + "summary": "A lawman apprehends a notorious outlaw and gives him nine days to kill his older brother, or else they'll execute his younger brother.", "duration": "PT1H44M", - "director": [ + "directors": [ "John Hillcoat" ], "mainActors": [ @@ -11169,8 +11165,8 @@ "Drama", "Western" ], - "datePublished": "2006-06-09", - "rating": "R", + "datePublished": "2005-10-06", + "rating": "13+", "ratingValue": 7.3, "bestRating": 10, "worstRating": 1, @@ -11179,8 +11175,8 @@ ] }, { - "title": "The Making of Meek's Cutoff", - "director": null, + "title": "The Making of Meek's Cutoff", + "directors": null, "mainActors": null, "genres": [ "Short" @@ -11193,10 +11189,10 @@ }, { "title": "Dances with Wolves", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTY3OTI5NDczN15BMl5BanBnXkFtZTcwNDA0NDY3Mw@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZjI0NGNhYWUtMDUwMi00ZDE2LWJmMjItYjI5NDFiYjQ2OWNiXkEyXkFqcGdeQXVyNzA3ODUyNzY@._V1_.jpg", "summary": "Lieutenant John Dunbar, assigned to a remote western Civil War outpost, finds himself engaging with a neighbouring Sioux settlement, causing him to question his own purpose.", "duration": "PT3H1M", - "director": [ + "directors": [ "Kevin Costner" ], "mainActors": [ @@ -11210,7 +11206,7 @@ "Western" ], "datePublished": "1990-11-21", - "rating": "PG-13", + "rating": "PA", "ratingValue": 8, "bestRating": 10, "worstRating": 1, @@ -11220,10 +11216,10 @@ }, { "title": "The Homesman", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTQ4NTkxOTEyMl5BMl5BanBnXkFtZTgwOTI1NzcwMzE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTQ4NTkxOTEyMl5BMl5BanBnXkFtZTgwOTI1NzcwMzE@._V1_.jpg", "summary": "Three women who have been driven mad by pioneer life are to be transported across the country by covered wagon by the pious, independent-minded Mary Bee Cuddy, who in turn employs low-life drifter George Briggs to assist her.", "duration": "PT2H2M", - "director": [ + "directors": [ "Tommy Lee Jones" ], "mainActors": [ @@ -11236,7 +11232,7 @@ "Western" ], "datePublished": "2014-05-18", - "rating": "R", + "rating": "14A", "ratingValue": 6.6, "bestRating": 10, "worstRating": 1, @@ -11248,10 +11244,10 @@ }, { "title": "The Hateful Eight", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjA1MTc1NTg5NV5BMl5BanBnXkFtZTgwOTM2MDEzNzE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjA1MTc1NTg5NV5BMl5BanBnXkFtZTgwOTM2MDEzNzE@._V1_.jpg", "summary": "In the dead of a Wyoming winter, a bounty hunter and his prisoner find shelter in a cabin currently inhabited by a collection of nefarious characters.", "duration": "PT2H48M", - "director": [ + "directors": [ "Quentin Tarantino" ], "mainActors": [ @@ -11264,8 +11260,8 @@ "Drama", "Mystery" ], - "datePublished": "2015-12-30", - "rating": "R", + "datePublished": "2015-12-31", + "rating": "18A", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -11275,10 +11271,10 @@ }, { "title": "Open Range", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTYyNjA4NTY3N15BMl5BanBnXkFtZTYwNjc0MDM3._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTYyNjA4NTY3N15BMl5BanBnXkFtZTYwNjc0MDM3._V1_.jpg", "summary": "A former gunslinger is forced to take up arms again when he and his cattle crew are threatened by a corrupt lawman.", "duration": "PT2H19M", - "director": [ + "directors": [ "Kevin Costner" ], "mainActors": [ @@ -11292,7 +11288,7 @@ "Romance" ], "datePublished": "2003-08-15", - "rating": "R", + "rating": "14A", "ratingValue": 7.4, "bestRating": 10, "worstRating": 1, @@ -11303,10 +11299,10 @@ }, { "title": "Shanghai Noon", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTI0MjE2MzUwOV5BMl5BanBnXkFtZTYwMTk5NjU3._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTI0MjE2MzUwOV5BMl5BanBnXkFtZTYwMTk5NjU3._V1_.jpg", "summary": "A Chinese man travels to the Wild West to rescue a kidnapped Princess. After teaming up with a train robber, the unlikely duo takes on a Chinese traitor and his corrupt boss.", "duration": "PT1H50M", - "director": [ + "directors": [ "Tom Dey" ], "mainActors": [ @@ -11320,7 +11316,7 @@ "Comedy" ], "datePublished": "2000-05-26", - "rating": "PG-13", + "rating": "PG", "ratingValue": 6.6, "bestRating": 10, "worstRating": 1, @@ -11331,10 +11327,10 @@ }, { "title": "Appaloosa", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTMxMDE5NDIxM15BMl5BanBnXkFtZTcwNjI0MjQ4MQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTMxMDE5NDIxM15BMl5BanBnXkFtZTcwNjI0MjQ4MQ@@._V1_.jpg", "summary": "Two friends hired to police a small town that is suffering under the rule of a rancher find their job complicated by the arrival of a young widow.", "duration": "PT1H55M", - "director": [ + "directors": [ "Ed Harris" ], "mainActors": [ @@ -11348,7 +11344,7 @@ "Drama" ], "datePublished": "2008-10-03", - "rating": "R", + "rating": "14A", "ratingValue": 6.7, "bestRating": 10, "worstRating": 1, @@ -11360,10 +11356,10 @@ }, { "title": "The Assassination of Jesse James by the Coward Robert Ford", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTY2NDI2MTc2NV5BMl5BanBnXkFtZTcwNjA2NTQzMw@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTY2NDI2MTc2NV5BMl5BanBnXkFtZTcwNjA2NTQzMw@@._V1_.jpg", "summary": "Robert Ford, who has idolized Jesse James since childhood, tries hard to join the resurgent gang of the Missouri outlaw, but gradually becomes resentful of the bandit leader.", "duration": "PT2H40M", - "director": [ + "directors": [ "Andrew Dominik" ], "mainActors": [ @@ -11377,7 +11373,7 @@ "Drama" ], "datePublished": "2007-10-19", - "rating": "R", + "rating": "14A", "ratingValue": 7.5, "bestRating": 10, "worstRating": 1, @@ -11388,10 +11384,10 @@ }, { "title": "Red Hill", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjQyNjA0MjEzNl5BMl5BanBnXkFtZTcwNjkyNDU5Mw@@._V1_.jpg", - "summary": "A young police officer must survive his first day's duty in a small country town.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjQyNjA0MjEzNl5BMl5BanBnXkFtZTcwNjkyNDU5Mw@@._V1_.jpg", + "summary": "A young police officer must survive his first day's duty in a small country town.", "duration": "PT1H35M", - "director": [ + "directors": [ "Patrick Hughes" ], "mainActors": [ @@ -11404,7 +11400,7 @@ "Thriller", "Western" ], - "datePublished": "2010-11-05", + "datePublished": "2010-11-25", "rating": "R", "ratingValue": 6.3, "bestRating": 10, @@ -11414,10 +11410,10 @@ ] }, { - "title": "A Journey of the Soul: The Making of 'Hostiles'", + "title": "A Journey of the Soul: The Making of 'Hostiles'", "summary": "A multi part in-depth series of segments that offer some excellent (and decidedly scenic in some cases) interviews as well as a glut of production data.", "duration": "PT1H6M", - "director": null, + "directors": null, "mainActors": [ "Christian Bale", "Timothée Chalamet", @@ -11434,10 +11430,10 @@ }, { "title": "In a Valley of Violence", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTUxMjExOTA2OF5BMl5BanBnXkFtZTgwMzI3NTgxMDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYjljMmNmMDAtNzEzYS00MzI5LWJjZmMtNWI3NDk3NjA5MTMwXkEyXkFqcGdeQXVyMTA4NjE0NjEy._V1_.jpg", "summary": "A mysterious stranger and a random act of violence drag a town of misfits and nitwits into the bloody crosshairs of revenge.", "duration": "PT1H44M", - "director": [ + "directors": [ "Ti West" ], "mainActors": [ @@ -11460,10 +11456,10 @@ }, { "title": "The Horse Whisperer", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZTA5NzU4YzItMjhjYy00YjNjLTljM2MtZDk3ZDE5OGVjNTBhXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", - "summary": "The mother of a severely traumatized daughter enlists the aid of a unique horse trainer to help the girl's equally injured horse.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZTA5NzU4YzItMjhjYy00YjNjLTljM2MtZDk3ZDE5OGVjNTBhXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "summary": "The mother of a severely traumatized daughter enlists the aid of a unique horse trainer to help the girl's equally injured horse.", "duration": "PT2H49M", - "director": [ + "directors": [ "Robert Redford" ], "mainActors": [ @@ -11477,7 +11473,7 @@ "Western" ], "datePublished": "1998-05-15", - "rating": "PG-13", + "rating": "PG", "ratingValue": 6.7, "bestRating": 10, "worstRating": 1, @@ -11489,10 +11485,10 @@ }, { "title": "Tombstone", - "posterURL": "https://m.media-amazon.com/images/M/MV5BODRkYzA4MGItODE2MC00ZjkwLWI2NDEtYzU1NzFiZGU1YzA0XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", - "summary": "A successful lawman's plans to retire anonymously in Tombstone, Arizona are disrupted by the kind of outlaws he was famous for eliminating.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BODRkYzA4MGItODE2MC00ZjkwLWI2NDEtYzU1NzFiZGU1YzA0XkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", + "summary": "A successful lawman's plans to retire anonymously in Tombstone, Arizona are disrupted by the kind of outlaws he was famous for eliminating.", "duration": "PT2H10M", - "director": [ + "directors": [ "George P. Cosmatos", "Kevin Jarre" ], @@ -11507,7 +11503,7 @@ "History" ], "datePublished": "1993-12-25", - "rating": "R", + "rating": "14A", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -11517,10 +11513,10 @@ }, { "title": "The Magnificent Seven", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTUzNTc0NTAyM15BMl5BanBnXkFtZTgwMTk1ODA5OTE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTUzNTc0NTAyM15BMl5BanBnXkFtZTgwMTk1ODA5OTE@._V1_.jpg", "summary": "Seven gunmen from a variety of backgrounds are brought together by a vengeful young widow to protect her town from the private army of a destructive industrialist.", "duration": "PT2H12M", - "director": [ + "directors": [ "Antoine Fuqua" ], "mainActors": [ @@ -11534,7 +11530,7 @@ "Drama" ], "datePublished": "2016-09-23", - "rating": "PG-13", + "rating": "14A", "ratingValue": 6.9, "bestRating": 10, "worstRating": 1, @@ -11546,10 +11542,10 @@ }, { "title": "Blackthorn", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjA1MDA1MDczMV5BMl5BanBnXkFtZTcwMzE0MjU0Ng@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjA1MDA1MDczMV5BMl5BanBnXkFtZTcwMzE0MjU0Ng@@._V1_.jpg", "summary": "In Bolivia, Butch Cassidy (now calling himself James Blackthorn) pines for one last sight of home, an adventure that aligns him with a young robber and makes the duo a target for gangs and lawmen alike.", "duration": "PT1H42M", - "director": [ + "directors": [ "Mateo Gil" ], "mainActors": [ @@ -11573,9 +11569,9 @@ }, { "title": "The Salvation of Todd Bentley", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMDI5MzA1NDctODMyNS00ODcyLWFhMTgtZjU4MDBmMTU5ZmUwXkEyXkFqcGdeQXVyNzk1MzU0MzQ@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMDI5MzA1NDctODMyNS00ODcyLWFhMTgtZjU4MDBmMTU5ZmUwXkEyXkFqcGdeQXVyNzk1MzU0MzQ@._V1_.jpg", "duration": "PT1H42M", - "director": [ + "directors": [ "James Buddy Day" ], "mainActors": [ @@ -11594,10 +11590,10 @@ }, { "title": "Dead Man", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNjZiMDUyYmEtNzAwYy00YjNiLWEyODItNTJmMjZjOWQ3MThlXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNjZiMDUyYmEtNzAwYy00YjNiLWEyODItNTJmMjZjOWQ3MThlXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", "summary": "On the run after murdering a man, accountant William Blake encounters a strange aboriginal American man named Nobody who prepares him for his journey into the spiritual world.", "duration": "PT2H1M", - "director": [ + "directors": [ "Jim Jarmusch" ], "mainActors": [ @@ -11610,8 +11606,8 @@ "Drama", "Fantasy" ], - "datePublished": "1996-05-10", - "rating": "R", + "datePublished": "1996-05-24", + "rating": "14A", "ratingValue": 7.5, "bestRating": 10, "worstRating": 1, @@ -11621,10 +11617,10 @@ }, { "title": "The Rover", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjE4MTc1MzMxN15BMl5BanBnXkFtZTgwMzc4NDA4MTE@._V1_.jpg", - "summary": "10 years after a global economic collapse, a hardened loner pursues the men who stole his only possession, his car. Along the way, he captures one of the thieves' brother, and the duo form an uneasy bond during the dangerous journey.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjE4MTc1MzMxN15BMl5BanBnXkFtZTgwMzc4NDA4MTE@._V1_.jpg", + "summary": "10 years after a global economic collapse, a hardened loner pursues the men who stole his only possession, his car. Along the way, he captures one of the thieves' brother, and the duo form an uneasy bond during the dangerous journey.", "duration": "PT1H43M", - "director": [ + "directors": [ "David Michôd" ], "mainActors": [ @@ -11638,7 +11634,7 @@ "Drama" ], "datePublished": "2014-06-20", - "rating": "R", + "rating": "14A", "ratingValue": 6.4, "bestRating": 10, "worstRating": 1, @@ -11649,10 +11645,10 @@ }, { "title": "Maverick", - "posterURL": "https://m.media-amazon.com/images/M/MV5BY2I1OTY2NmUtMGVlZi00NjNmLThkNTgtMjExMzRhOTM2MDJiXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BY2I1OTY2NmUtMGVlZi00NjNmLThkNTgtMjExMzRhOTM2MDJiXkEyXkFqcGdeQXVyNDk3NzU2MTQ@._V1_.jpg", "summary": "Bret Maverick, needing money for a poker tournament, faces various comic mishaps and challenges, including a charming woman thief.", "duration": "PT2H7M", - "director": [ + "directors": [ "Richard Donner" ], "mainActors": [ @@ -11677,10 +11673,10 @@ }, { "title": "The Claim", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYmVjMzVhNWQtZDkyYS00N2YzLTk3M2QtMTY2ZDgxZDRjOTAxXkEyXkFqcGdeQXVyMjI4MjA5MzA@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYmVjMzVhNWQtZDkyYS00N2YzLTk3M2QtMTY2ZDgxZDRjOTAxXkEyXkFqcGdeQXVyMjI4MjA5MzA@._V1_.jpg", "summary": "A prospector who sold his wife and infant daughter in exchange for a mining claim, tries desperately to win them back as he helps to build the Pacific Railroad with a group of pioneer friends.", "duration": "PT2H", - "director": [ + "directors": [ "Michael Winterbottom" ], "mainActors": [ @@ -11705,10 +11701,10 @@ }, { "title": "The Missing", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYWM1ZmU5NWItZDM0ZC00MTk5LThiMTktZGUxOThjNzI5NTcyL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYWM1ZmU5NWItZDM0ZC00MTk5LThiMTktZGUxOThjNzI5NTcyL2ltYWdlL2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", "summary": "In 1885 New Mexico, a frontier medicine woman forms an uneasy alliance with her estranged father when her daughter is kidnapped by an Apache brujo.", "duration": "PT2H17M", - "director": [ + "directors": [ "Ron Howard" ], "mainActors": [ @@ -11722,7 +11718,7 @@ "Thriller" ], "datePublished": "2003-11-26", - "rating": "R", + "rating": "14A", "ratingValue": 6.5, "bestRating": 10, "worstRating": 1, @@ -11732,11 +11728,11 @@ ] }, { - "title": "Heaven's Gate", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZmZhNGZmY2EtNjZjOC00NGM4LWE1MTUtOWZmNGI0NzliMzNhXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", + "title": "Heaven's Gate", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZmZhNGZmY2EtNjZjOC00NGM4LWE1MTUtOWZmNGI0NzliMzNhXkEyXkFqcGdeQXVyMjUzOTY1NTc@._V1_.jpg", "summary": "During the Johnson County War in 1890 Wyoming, a sheriff born into wealth does his best to protect immigrant farmers from rich cattle interests.", "duration": "PT3H39M", - "director": [ + "directors": [ "Michael Cimino" ], "mainActors": [ @@ -11750,7 +11746,7 @@ "Western" ], "datePublished": "1981-04-24", - "rating": "R", + "rating": "14A", "ratingValue": 6.7, "bestRating": 10, "worstRating": 1, @@ -11760,10 +11756,10 @@ }, { "title": "Legends of the Fall", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNzUwMzhkY2EtYzg4NC00NzZmLWEzNmItMDU4MmNlZTRjYzIxXkEyXkFqcGdeQXVyMTUzMDUzNTI3._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNzUwMzhkY2EtYzg4NC00NzZmLWEzNmItMDU4MmNlZTRjYzIxXkEyXkFqcGdeQXVyMTUzMDUzNTI3._V1_.jpg", "summary": "In the early 1900s, three brothers and their father living in the remote wilderness of Montana are affected by betrayal, history, love, nature, and war.", "duration": "PT2H13M", - "director": [ + "directors": [ "Edward Zwick" ], "mainActors": [ @@ -11777,7 +11773,7 @@ "War" ], "datePublished": "1995-01-13", - "rating": "R", + "rating": "14A", "ratingValue": 7.5, "bestRating": 10, "worstRating": 1, @@ -11789,10 +11785,10 @@ }, { "title": "The Quick and the Dead", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOTI2ZTZmMmItMmM3YS00ZjUwLWJiODMtMmRjMWM4NDE0OWFhXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", - "summary": "A female gunfighter returns to a frontier town where a dueling tournament is being held, which she enters in an effort to avenge her father's death.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOTI2ZTZmMmItMmM3YS00ZjUwLWJiODMtMmRjMWM4NDE0OWFhXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "summary": "A female gunfighter returns to a frontier town where a dueling tournament is being held, which she enters in an effort to avenge her father's death.", "duration": "PT1H48M", - "director": [ + "directors": [ "Sam Raimi" ], "mainActors": [ @@ -11806,7 +11802,7 @@ "Romance" ], "datePublished": "1995-02-10", - "rating": "R", + "rating": "14", "ratingValue": 6.5, "bestRating": 10, "worstRating": 1, @@ -11816,10 +11812,10 @@ }, { "title": "The Killer Inside Me", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTUyOTIwMTU5MV5BMl5BanBnXkFtZTcwNDY5NjA1Mw@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTUyOTIwMTU5MV5BMl5BanBnXkFtZTcwNDY5NjA1Mw@@._V1_.jpg", "summary": "A West Texas Deputy Sheriff is slowly unmasked as a psychotic killer.", "duration": "PT1H49M", - "director": [ + "directors": [ "Michael Winterbottom" ], "mainActors": [ @@ -11832,8 +11828,8 @@ "Drama", "Mystery" ], - "datePublished": "2010-06-08", - "rating": "R", + "datePublished": "2023-01-05", + "rating": "16+", "ratingValue": 6.1, "bestRating": 10, "worstRating": 1, @@ -11843,11 +11839,11 @@ ] }, { - "title": "Behind the Scenes of 'Seraphim Falls'", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZDZmZjc0MGQtZmU2Yy00MTliLThiMTgtNWRmODI0NTBlZmQ0XkEyXkFqcGdeQXVyMTEwNjk1NzI1._V1_.jpg", + "title": "Behind the Scenes of 'Seraphim Falls'", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZDZmZjc0MGQtZmU2Yy00MTliLThiMTgtNWRmODI0NTBlZmQ0XkEyXkFqcGdeQXVyMTEwNjk1NzI1._V1_.jpg", "summary": "A behind-the-scenes look at the making of the film Seraphim Falls (2006).", "duration": "PT19M", - "director": null, + "directors": null, "mainActors": [ "Robert Baker", "Bill Bartis", @@ -11865,10 +11861,10 @@ }, { "title": "Ned Kelly", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYmVjYzRkYjItODlmZS00OTEzLTliZjItYjMwOGRmMzhmY2RmXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYmVjYzRkYjItODlmZS00OTEzLTliZjItYjMwOGRmMzhmY2RmXkEyXkFqcGdeQXVyNTAyODkwOQ@@._V1_.jpg", "summary": "An innocent man becomes one of the most wanted criminals the world has ever known.", "duration": "PT1H50M", - "director": [ + "directors": [ "Gregor Jordan" ], "mainActors": [ @@ -11881,8 +11877,8 @@ "Adventure", "Biography" ], - "datePublished": "2004-03-26", - "rating": "R", + "datePublished": "2003-03-27", + "rating": "14A", "ratingValue": 6.4, "bestRating": 10, "worstRating": 1, @@ -11892,11 +11888,11 @@ ] }, { - "title": "Cowboys & Aliens", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTM1MzkyNzQ3OV5BMl5BanBnXkFtZTcwMDk1NTg2NQ@@._V1_.jpg", + "title": "Cowboys & Aliens", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTM1MzkyNzQ3OV5BMl5BanBnXkFtZTcwMDk1NTg2NQ@@._V1_.jpg", "summary": "A spaceship arrives in Arizona, 1873, to take over the Earth, starting with the Wild West region. A posse of cowboys and natives are all that stand in their way.", "duration": "PT1H59M", - "director": [ + "directors": [ "Jon Favreau" ], "mainActors": [ @@ -11910,7 +11906,7 @@ "Sci-Fi" ], "datePublished": "2011-07-29", - "rating": "PG-13", + "rating": "14A", "ratingValue": 6, "bestRating": 10, "worstRating": 1, @@ -11922,10 +11918,10 @@ }, { "title": "Forsaken", - "posterURL": "https://m.media-amazon.com/images/M/MV5BODE0NTUwNzA3Ml5BMl5BanBnXkFtZTgwOTQ3OTI3NzE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BODE0NTUwNzA3Ml5BMl5BanBnXkFtZTgwOTQ3OTI3NzE@._V1_.jpg", "summary": "When a Priest discovers his wife is deathly ill, he decides to go against his faith and use his knowledge of exorcisms to possess her in order to save her life.", "duration": "PT1H29M", - "director": [ + "directors": [ "Tristan Price" ], "mainActors": [ @@ -11946,11 +11942,11 @@ ] }, { - "title": "Brimstone & Glory", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTU5MzE0NDk0MF5BMl5BanBnXkFtZTgwOTgzMzQwNDI@._V1_.jpg", + "title": "Brimstone & Glory", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMDM5MzMzYjgtOGUxMC00YjZkLWI3MjktZDMxN2MzZmI2ZjQ0XkEyXkFqcGdeQXVyMTA4NjE0NjEy._V1_.jpg", "summary": "Ecstatic ritual, danger and the absolute beauty of fireworks.", "duration": "PT1H7M", - "director": [ + "directors": [ "Viktor Jakovleski" ], "mainActors": null, @@ -11958,6 +11954,7 @@ "Documentary" ], "datePublished": "2020-09-03", + "rating": "PG", "ratingValue": 7.3, "bestRating": 10, "worstRating": 1, @@ -11965,10 +11962,10 @@ }, { "title": "A Million Ways to Die in the West", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTQ0NDcyNjg0MV5BMl5BanBnXkFtZTgwMzk4NTA4MTE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTQ0NDcyNjg0MV5BMl5BanBnXkFtZTgwMzk4NTA4MTE@._V1_.jpg", "summary": "As a cowardly farmer begins to fall for the mysterious new woman in town, he must put his newly found courage to the test when her husband, a notorious gun-slinger, announces his arrival.", "duration": "PT1H56M", - "director": [ + "directors": [ "Seth MacFarlane" ], "mainActors": [ @@ -11981,7 +11978,7 @@ "Western" ], "datePublished": "2014-05-30", - "rating": "R", + "rating": "14A", "ratingValue": 6.1, "bestRating": 10, "worstRating": 1, @@ -11993,10 +11990,10 @@ }, { "title": "The Lone Ranger", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZjFiMTc2MTAtZDA0My00OGRmLTk5M2ItNTlmYTUwZmU2YmRiXkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZjFiMTc2MTAtZDA0My00OGRmLTk5M2ItNTlmYTUwZmU2YmRiXkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_.jpg", "summary": "Native American warrior Tonto recounts the untold tales that transformed John Reid, a man of the law, into a legend of justice.", "duration": "PT2H30M", - "director": [ + "directors": [ "Gore Verbinski" ], "mainActors": [ @@ -12010,7 +12007,7 @@ "Western" ], "datePublished": "2013-07-03", - "rating": "PG-13", + "rating": "PG", "ratingValue": 6.4, "bestRating": 10, "worstRating": 1, @@ -12022,10 +12019,10 @@ }, { "title": "The Alamo", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTAzOTQ5Nzg4MzheQTJeQWpwZ15BbWU2MDQwODAxNw@@._V1_.jpg", - "summary": "Based on the 1836 standoff between a group of Texan and Tejano men, led by Davy Crockett and Jim Bowie, and Mexican dictator Santa Anna's forces at the Alamo in San Antonio Texas.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTAzOTQ5Nzg4MzheQTJeQWpwZ15BbWU2MDQwODAxNw@@._V1_.jpg", + "summary": "Based on the 1836 standoff between a group of Texan and Tejano men, led by Davy Crockett and Jim Bowie, and Mexican dictator Santa Anna's forces at the Alamo in San Antonio Texas.", "duration": "PT2H17M", - "director": [ + "directors": [ "John Lee Hancock" ], "mainActors": [ @@ -12038,8 +12035,8 @@ "History", "War" ], - "datePublished": "2004-04-09", - "rating": "PG-13", + "datePublished": "2021-02-22", + "rating": "14A", "ratingValue": 6, "bestRating": 10, "worstRating": 1, @@ -12050,11 +12047,11 @@ ] }, { - "title": "The Warrior's Way", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjE3MGNlNjctOWExMC00MGVlLTk2ODAtOTE3ZTcwMWYzNzdhXkEyXkFqcGdeQXVyMTE2NzA0Ng@@._V1_.jpg", + "title": "The Warrior's Way", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BY2NjNDdhMDktNDcxYy00MjM4LWIzMzQtODY2MzAyZTk5N2VhXkEyXkFqcGdeQXVyMTEyOTQ1OTk4._V1_.jpg", "summary": "A warrior-assassin is forced to hide in a small town in the American Badlands after refusing a mission.", "duration": "PT1H40M", - "director": [ + "directors": [ "Sngmoo Lee" ], "mainActors": [ @@ -12067,8 +12064,8 @@ "Drama", "Fantasy" ], - "datePublished": "2010-12-03", - "rating": "R", + "datePublished": "2010-12-02", + "rating": "14A", "ratingValue": 6.2, "bestRating": 10, "worstRating": 1, @@ -12079,10 +12076,10 @@ }, { "title": "The Dark Tower", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTU3MjUwMzQ3MF5BMl5BanBnXkFtZTgwMjcwNjkxMjI@._V1_.jpg", - "summary": "A boy haunted by visions of a dark tower from a parallel reality teams up with the tower's disillusioned guardian to stop an evil warlock known as the Man in Black who plans to use the boy to destroy the tower and open the gates o...", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTU3MjUwMzQ3MF5BMl5BanBnXkFtZTgwMjcwNjkxMjI@._V1_.jpg", + "summary": "A boy haunted by visions of a dark tower from a parallel reality teams up with the tower's disillusioned guardian to stop an evil warlock known as the Man in Black who plans to use the boy to destroy the tower and open the gates o...", "duration": "PT1H35M", - "director": [ + "directors": [ "Nikolaj Arcel" ], "mainActors": [ @@ -12096,7 +12093,7 @@ "Fantasy" ], "datePublished": "2017-08-04", - "rating": "PG-13", + "rating": "14A", "ratingValue": 5.6, "bestRating": 10, "worstRating": 1, @@ -12108,10 +12105,10 @@ }, { "title": "Wild Wild West", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYmYyMTc4YjItMGNhNC00OWQwLWJhMWUtNTdjZDgxMDI5MjE2L2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYmYyMTc4YjItMGNhNC00OWQwLWJhMWUtNTdjZDgxMDI5MjE2L2ltYWdlXkEyXkFqcGdeQXVyMTQxNzMzNDI@._V1_.jpg", "summary": "The two best special agents in the Wild West must save President Grant from the clutches of a diabolical, wheelchair-bound, steampunk-savvy, Confederate scientist bent on revenge for losing the Civil War.", "duration": "PT1H46M", - "director": [ + "directors": [ "Barry Sonnenfeld" ], "mainActors": [ @@ -12125,7 +12122,7 @@ "Sci-Fi" ], "datePublished": "1999-06-30", - "rating": "PG-13", + "rating": "PG", "ratingValue": 4.9, "bestRating": 10, "worstRating": 1, @@ -12137,10 +12134,10 @@ }, { "title": "Priest", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTQ1MTAwODc3OV5BMl5BanBnXkFtZTcwNzI0MDQ3NA@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTQ1MTAwODc3OV5BMl5BanBnXkFtZTcwNzI0MDQ3NA@@._V1_.jpg", "summary": "A priest disobeys church law to track down the vampires who kidnapped his niece.", "duration": "PT1H27M", - "director": [ + "directors": [ "Scott Stewart" ], "mainActors": [ @@ -12154,7 +12151,7 @@ "Horror" ], "datePublished": "2011-05-13", - "rating": "PG-13", + "rating": "14A", "ratingValue": 5.7, "bestRating": 10, "worstRating": 1, @@ -12165,10 +12162,10 @@ }, { "title": "American Outlaws", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTIwMTYxODAzMV5BMl5BanBnXkFtZTYwNTM3Nzc5._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTIwMTYxODAzMV5BMl5BanBnXkFtZTYwNTM3Nzc5._V1_.jpg", "summary": "5 Southern friends return home when the war ends 1865. But Yankee soldiers and Pinkerton are busy helping a railroad baron grab land from farmers along the planned railroad west. The 5 friends fight back.", "duration": "PT1H34M", - "director": [ + "directors": [ "Les Mayfield" ], "mainActors": [ @@ -12181,7 +12178,7 @@ "Western" ], "datePublished": "2001-08-17", - "rating": "PG-13", + "rating": "PG", "ratingValue": 5.9, "bestRating": 10, "worstRating": 1, @@ -12192,10 +12189,10 @@ }, { "title": "September Dawn", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTk5MzE0NzM5MV5BMl5BanBnXkFtZTcwODM0NDM0MQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTk5MzE0NzM5MV5BMl5BanBnXkFtZTcwODM0NDM0MQ@@._V1_.jpg", "summary": "A love story set during a tense encounter between a wagon train of settlers and a renegade Mormon group.", "duration": "PT1H51M", - "director": [ + "directors": [ "Christopher Cain" ], "mainActors": [ @@ -12220,10 +12217,10 @@ }, { "title": "Jonah Hex", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTQ2NzYxNjQyMF5BMl5BanBnXkFtZTcwOTQ0OTI0Mw@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTQ2NzYxNjQyMF5BMl5BanBnXkFtZTcwOTQ0OTI0Mw@@._V1_.jpg", "summary": "The U.S. military makes a scarred bounty hunter with warrants on his own head an offer he cannot refuse: in exchange for his freedom, he must stop a terrorist who is ready to unleash Hell on Earth.", "duration": "PT1H21M", - "director": [ + "directors": [ "Jimmy Hayward" ], "mainActors": [ @@ -12237,7 +12234,7 @@ "Fantasy" ], "datePublished": "2010-06-18", - "rating": "PG-13", + "rating": "14A", "ratingValue": 4.7, "bestRating": 10, "worstRating": 1, @@ -12249,10 +12246,10 @@ }, { "title": "Texas Rangers", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjNlYTExNTgtMzEzMS00NjhmLThjZjMtMjY2MGMxZGVlZWZlXkEyXkFqcGdeQXVyMTQ3Njg3MQ@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjNlYTExNTgtMzEzMS00NjhmLThjZjMtMjY2MGMxZGVlZWZlXkEyXkFqcGdeQXVyMTQ3Njg3MQ@@._V1_.jpg", "summary": "A ragtag group of youngsters band together after the American Civil War to form the Texas Rangers, a group charged with the dangerous, ruthless duty of cleaning up the West.", "duration": "PT1H30M", - "director": [ + "directors": [ "Steve Miner" ], "mainActors": [ @@ -12278,10 +12275,10 @@ }, { "title": "Mad Max: Fury Road", - "posterURL": "https://m.media-amazon.com/images/M/MV5BN2EwM2I5OWMtMGQyMi00Zjg1LWJkNTctZTdjYTA4OGUwZjMyXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BN2EwM2I5OWMtMGQyMi00Zjg1LWJkNTctZTdjYTA4OGUwZjMyXkEyXkFqcGdeQXVyMTMxODk2OTU@._V1_.jpg", "summary": "In a post-apocalyptic wasteland, a woman rebels against a tyrannical ruler in search for her homeland with the aid of a group of female prisoners, a psychotic worshiper and a drifter named Max.", "duration": "PT2H", - "director": [ + "directors": [ "George Miller" ], "mainActors": [ @@ -12295,7 +12292,7 @@ "Sci-Fi" ], "datePublished": "2015-05-15", - "rating": "R", + "rating": "14A", "ratingValue": 8.1, "bestRating": 10, "worstRating": 1, @@ -12307,10 +12304,10 @@ }, { "title": "Star Wars: Episode VII - The Force Awakens", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOTAzODEzNDAzMl5BMl5BanBnXkFtZTgwMDU1MTgzNzE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOTAzODEzNDAzMl5BMl5BanBnXkFtZTgwMDU1MTgzNzE@._V1_.jpg", "summary": "As a new threat to the galaxy rises, Rey, a desert scavenger, and Finn, an ex-stormtrooper, must join Han Solo and Chewbacca to search for the one hope of restoring peace.", "duration": "PT2H18M", - "director": [ + "directors": [ "J.J. Abrams" ], "mainActors": [ @@ -12324,7 +12321,7 @@ "Sci-Fi" ], "datePublished": "2015-12-18", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -12336,10 +12333,10 @@ }, { "title": "Captain America: Civil War", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjQ0MTgyNjAxMV5BMl5BanBnXkFtZTgwNjUzMDkyODE@._V1_.jpg", - "summary": "Political involvement in the Avengers' affairs causes a rift between Captain America and Iron Man.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjQ0MTgyNjAxMV5BMl5BanBnXkFtZTgwNjUzMDkyODE@._V1_.jpg", + "summary": "Political involvement in the Avengers' affairs causes a rift between Captain America and Iron Man.", "duration": "PT2H27M", - "director": [ + "directors": [ "Anthony Russo", "Joe Russo" ], @@ -12353,7 +12350,7 @@ "Sci-Fi" ], "datePublished": "2016-05-06", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -12365,10 +12362,10 @@ }, { "title": "Mission: Impossible - Rogue Nation", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOTFmNDA3ZjMtN2Y0MC00NDYyLWFlY2UtNTQ4OTQxMmY1NmVjXkEyXkFqcGdeQXVyNTg4NDQ4NDY@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOTFmNDA3ZjMtN2Y0MC00NDYyLWFlY2UtNTQ4OTQxMmY1NmVjXkEyXkFqcGdeQXVyNTg4NDQ4NDY@._V1_.jpg", "summary": "Ethan and his team take on their most impossible mission yet when they have to eradicate an international rogue organization as highly skilled as they are and committed to destroying the IMF.", "duration": "PT2H11M", - "director": [ + "directors": [ "Christopher McQuarrie" ], "mainActors": [ @@ -12382,7 +12379,7 @@ "Thriller" ], "datePublished": "2015-07-31", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.4, "bestRating": 10, "worstRating": 1, @@ -12394,10 +12391,10 @@ }, { "title": "Avengers: Infinity War", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMjMxNjY2MDU1OV5BMl5BanBnXkFtZTgwNzY1MTUwNTM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMjMxNjY2MDU1OV5BMl5BanBnXkFtZTgwNzY1MTUwNTM@._V1_.jpg", "summary": "The Avengers and their allies must be willing to sacrifice all in an attempt to defeat the powerful Thanos before his blitz of devastation and ruin puts an end to the universe.", "duration": "PT2H29M", - "director": [ + "directors": [ "Anthony Russo", "Joe Russo" ], @@ -12412,7 +12409,7 @@ "Sci-Fi" ], "datePublished": "2018-04-27", - "rating": "PG-13", + "rating": "PG", "ratingValue": 8.4, "bestRating": 10, "worstRating": 1, @@ -12424,10 +12421,10 @@ }, { "title": "The Terminator", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYTViNzMxZjEtZGEwNy00MDNiLWIzNGQtZDY2MjQ1OWViZjFmXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", - "summary": "A human soldier is sent from 2029 to 1984 to stop an almost indestructible cyborg killing machine, sent from the same year, which has been programmed to execute a young woman whose unborn son is the key to humanity's future salvat...", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYTViNzMxZjEtZGEwNy00MDNiLWIzNGQtZDY2MjQ1OWViZjFmXkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", + "summary": "A human soldier is sent from 2029 to 1984 to stop an almost indestructible cyborg killing machine, sent from the same year, which has been programmed to execute a young woman whose unborn son is the key to humanity's future salvat...", "duration": "PT1H47M", - "director": [ + "directors": [ "James Cameron" ], "mainActors": [ @@ -12440,7 +12437,7 @@ "Sci-Fi" ], "datePublished": "1984-10-26", - "rating": "R", + "rating": "14A", "ratingValue": 8.1, "bestRating": 10, "worstRating": 1, @@ -12452,10 +12449,10 @@ }, { "title": "Star Wars: Episode V - The Empire Strikes Back", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYmU1NDRjNDgtMzhiMi00NjZmLTg5NGItZDNiZjU5NTU4OTE0XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYmU1NDRjNDgtMzhiMi00NjZmLTg5NGItZDNiZjU5NTU4OTE0XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", "summary": "After the Rebels are overpowered by the Empire, Luke Skywalker begins his Jedi training with Yoda, while his friends are pursued across the galaxy by Darth Vader and bounty hunter Boba Fett.", "duration": "PT2H4M", - "director": [ + "directors": [ "Irvin Kershner" ], "mainActors": [ @@ -12468,8 +12465,8 @@ "Adventure", "Fantasy" ], - "datePublished": "1980-06-18", - "rating": "PG", + "datePublished": "1980-05-21", + "rating": "G", "ratingValue": 8.7, "bestRating": 10, "worstRating": 1, @@ -12481,10 +12478,10 @@ }, { "title": "Iron Man", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMTczNTI2ODUwOF5BMl5BanBnXkFtZTcwMTU0NTIzMw@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMTczNTI2ODUwOF5BMl5BanBnXkFtZTcwMTU0NTIzMw@@._V1_.jpg", "summary": "After being held captive in an Afghan cave, billionaire engineer Tony Stark creates a unique weaponized suit of armor to fight evil.", "duration": "PT2H6M", - "director": [ + "directors": [ "Jon Favreau" ], "mainActors": [ @@ -12498,7 +12495,7 @@ "Sci-Fi" ], "datePublished": "2008-05-02", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, @@ -12510,10 +12507,10 @@ }, { "title": "Guardians of the Galaxy", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNDIzMTk4NDYtMjg5OS00ZGI0LWJhZDYtMzdmZGY1YWU5ZGNkXkEyXkFqcGdeQXVyMTI5NzUyMTIz._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNDIzMTk4NDYtMjg5OS00ZGI0LWJhZDYtMzdmZGY1YWU5ZGNkXkEyXkFqcGdeQXVyMTI5NzUyMTIz._V1_.jpg", "summary": "A group of intergalactic criminals must pull together to stop a fanatical warrior with plans to purge the universe.", "duration": "PT2H1M", - "director": [ + "directors": [ "James Gunn" ], "mainActors": [ @@ -12527,7 +12524,7 @@ "Comedy" ], "datePublished": "2014-08-01", - "rating": "PG-13", + "rating": "PG", "ratingValue": 8, "bestRating": 10, "worstRating": 1, @@ -12539,10 +12536,10 @@ }, { "title": "Doctor Strange", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNjgwNzAzNjk1Nl5BMl5BanBnXkFtZTgwMzQ2NjI1OTE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNjgwNzAzNjk1Nl5BMl5BanBnXkFtZTgwMzQ2NjI1OTE@._V1_.jpg", "summary": "While on a journey of physical and spiritual healing, a brilliant neurosurgeon is drawn into the world of the mystic arts.", "duration": "PT1H55M", - "director": [ + "directors": [ "Scott Derrickson" ], "mainActors": [ @@ -12556,7 +12553,7 @@ "Fantasy" ], "datePublished": "2016-11-04", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.5, "bestRating": 10, "worstRating": 1, @@ -12568,10 +12565,10 @@ }, { "title": "X-Men: Days of Future Past", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNjk3MGZhMjEtOTM4NC00NzE2LTk2NzctZDc4YTUwN2E3NDhhXkEyXkFqcGdeQXVyNDc2NjEyMw@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMWRkMjRmMTUtN2Q1Yy00NDY4LTljZWUtNjU3YzJlZWU3MmNkXkEyXkFqcGdeQXVyNTIzOTk5ODM@._V1_.jpg", "summary": "The X-Men send Wolverine to the past in a desperate effort to change history and prevent an event that results in doom for both humans and mutants.", "duration": "PT2H12M", - "director": [ + "directors": [ "Bryan Singer" ], "mainActors": [ @@ -12585,7 +12582,7 @@ "Sci-Fi" ], "datePublished": "2014-05-23", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.9, "bestRating": 10, "worstRating": 1, @@ -12597,10 +12594,10 @@ }, { "title": "The Right Stuff", - "posterURL": "https://m.media-amazon.com/images/M/MV5BOTUwMDA3MTYtZjhjMi00ODFmLTg5ZTAtYzgwN2NlODgzMmUwXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", - "summary": "The U.S. space program's development from the breaking of the sound barrier to selection of the Mercury 7 astronauts, from a group of test pilots with a more seat-of-the-pants approach than the program's more cautious engineers pr...", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BOTUwMDA3MTYtZjhjMi00ODFmLTg5ZTAtYzgwN2NlODgzMmUwXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "summary": "The U.S. space program's development from the breaking of the sound barrier to selection of the Mercury 7 astronauts, from a group of test pilots with a more seat-of-the-pants approach than the program's more cautious engineers pr...", "duration": "PT3H13M", - "director": [ + "directors": [ "Philip Kaufman" ], "mainActors": [ @@ -12613,7 +12610,7 @@ "Biography", "Drama" ], - "datePublished": "1984-02-17", + "datePublished": "1983-10-21", "rating": "PG", "ratingValue": 7.8, "bestRating": 10, @@ -12625,10 +12622,10 @@ }, { "title": "Dawn of the Planet of the Apes", - "posterURL": "https://m.media-amazon.com/images/M/MV5BYWE2MzU2ZGUtYTY1Yi00ZTI5LWE4NzMtNWM1NzRhMDQ3ZjM3XkEyXkFqcGdeQXVyNjc5NjEzNA@@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BYWE2MzU2ZGUtYTY1Yi00ZTI5LWE4NzMtNWM1NzRhMDQ3ZjM3XkEyXkFqcGdeQXVyNjc5NjEzNA@@._V1_.jpg", "summary": "The fragile peace between apes and humans is threatened as mistrust and betrayal threaten to plunge both tribes into a war for dominance over the Earth.", "duration": "PT2H10M", - "director": [ + "directors": [ "Matt Reeves" ], "mainActors": [ @@ -12642,7 +12639,7 @@ "Drama" ], "datePublished": "2014-07-11", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.6, "bestRating": 10, "worstRating": 1, @@ -12654,9 +12651,9 @@ }, { "title": "New Crouching Tiger, Hidden Dragon", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNmUyN2E3NjMtYTM3Ni00Nzc0LWJhNmUtODdlYjljMDNhZWIwXkEyXkFqcGdeQXVyMjg0MTI5NzQ@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNmUyN2E3NjMtYTM3Ni00Nzc0LWJhNmUtODdlYjljMDNhZWIwXkEyXkFqcGdeQXVyMjg0MTI5NzQ@._V1_.jpg", "summary": "Yu Jiao-Long takes up kung fu with the former rebel master Jade Fox as a way to escape an undesirable arranged marriage, while simultaneously, sword master Li Mu-Bai falls in love with Yu Xiu-Lian when she arrives to avenge the mu...", - "director": null, + "directors": null, "mainActors": [ "XinZhi Qiu", "Yi Huang", @@ -12674,10 +12671,10 @@ }, { "title": "Captain America: The Winter Soldier", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMzA2NDkwODAwM15BMl5BanBnXkFtZTgwODk5MTgzMTE@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMzA2NDkwODAwM15BMl5BanBnXkFtZTgwODk5MTgzMTE@._V1_.jpg", "summary": "As Steve Rogers struggles to embrace his role in the modern world, he teams up with a fellow Avenger and S.H.I.E.L.D agent, Black Widow, to battle a new threat from history: an assassin known as the Winter Soldier.", "duration": "PT2H16M", - "director": [ + "directors": [ "Anthony Russo", "Joe Russo" ], @@ -12692,7 +12689,7 @@ "Sci-Fi" ], "datePublished": "2014-04-04", - "rating": "PG-13", + "rating": "PG", "ratingValue": 7.8, "bestRating": 10, "worstRating": 1, @@ -12702,40 +12699,12 @@ "Joe Simon" ] }, - { - "title": "Raiders of the Lost Ark", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNTU2ODkyY2MtMjU1NC00NjE1LWEzYjgtMWQ3MzRhMTE0NDc0XkEyXkFqcGdeQXVyMjM4MzQ4OTQ@._V1_.jpg", - "summary": "In 1936, archaeologist and adventurer Indiana Jones is hired by the U.S. government to find the Ark of the Covenant before the Nazis can obtain its awesome powers.", - "duration": "PT1H55M", - "director": [ - "Steven Spielberg" - ], - "mainActors": [ - "Harrison Ford", - "Karen Allen", - "Paul Freeman" - ], - "genres": [ - "Action", - "Adventure" - ], - "datePublished": "1981-06-12", - "rating": "PG", - "ratingValue": 8.4, - "bestRating": 10, - "worstRating": 1, - "writers": [ - "Lawrence Kasdan", - "George Lucas", - "Philip Kaufman" - ] - }, { "title": "The Lord of the Rings: The Return of the King", - "posterURL": "https://m.media-amazon.com/images/M/MV5BNzA5ZDNlZWMtM2NhNS00NDJjLTk4NDItYTRmY2EwMWZlMTY3XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", - "summary": "Gandalf and Aragorn lead the World of Men against Sauron's army to draw his gaze from Frodo and Sam as they approach Mount Doom with the One Ring.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BNzA5ZDNlZWMtM2NhNS00NDJjLTk4NDItYTRmY2EwMWZlMTY3XkEyXkFqcGdeQXVyNzkwMjQ5NzM@._V1_.jpg", + "summary": "Gandalf and Aragorn lead the World of Men against Sauron's army to draw his gaze from Frodo and Sam as they approach Mount Doom with the One Ring.", "duration": "PT3H21M", - "director": [ + "directors": [ "Peter Jackson" ], "mainActors": [ @@ -12749,7 +12718,7 @@ "Drama" ], "datePublished": "2003-12-17", - "rating": "PG-13", + "rating": "14A", "ratingValue": 9, "bestRating": 10, "worstRating": 1, @@ -12761,10 +12730,10 @@ }, { "title": "Saving Private Ryan", - "posterURL": "https://m.media-amazon.com/images/M/MV5BZjhkMDM4MWItZTVjOC00ZDRhLThmYTAtM2I5NzBmNmNlMzI1XkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_.jpg", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BZjhkMDM4MWItZTVjOC00ZDRhLThmYTAtM2I5NzBmNmNlMzI1XkEyXkFqcGdeQXVyNDYyMDk5MTU@._V1_.jpg", "summary": "Following the Normandy Landings, a group of U.S. soldiers go behind enemy lines to retrieve a paratrooper whose brothers have been killed in action.", "duration": "PT2H49M", - "director": [ + "directors": [ "Steven Spielberg" ], "mainActors": [ @@ -12777,7 +12746,7 @@ "War" ], "datePublished": "1998-07-24", - "rating": "R", + "rating": "14A", "ratingValue": 8.6, "bestRating": 10, "worstRating": 1, @@ -12787,10 +12756,10 @@ }, { "title": "Superman", - "posterURL": "https://m.media-amazon.com/images/M/MV5BMzA0YWMwMTUtMTVhNC00NjRkLWE2ZTgtOWEzNjJhYzNiMTlkXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", - "summary": "An alien orphan is sent from his dying planet to Earth, where he grows up to become his adoptive home's first and greatest superhero.", + "posterUrl": "https://m.media-amazon.com/images/M/MV5BMzA0YWMwMTUtMTVhNC00NjRkLWE2ZTgtOWEzNjJhYzNiMTlkXkEyXkFqcGdeQXVyNjc1NTYyMjg@._V1_.jpg", + "summary": "An alien orphan is sent from his dying planet to Earth, where he grows up to become his adoptive home's first and greatest superhero.", "duration": "PT2H23M", - "director": [ + "directors": [ "Richard Donner" ], "mainActors": [ diff --git a/scripts/seedData.ts b/scripts/seedData.ts index 6802c7e..3673448 100644 --- a/scripts/seedData.ts +++ b/scripts/seedData.ts @@ -1,120 +1,66 @@ -import contentfulManagement, { Environment } from 'contentful-management'; -import fs from 'fs'; -import { join, dirname } from 'path'; -import { fileURLToPath } from 'url'; -import * as dotenv from 'dotenv'; -import { Movie } from '@customTypes/movie'; - -type GenreMap = { +import seedData from './seedData.json'; +import createGenre from '@models/Genre/create'; +import updateGenre from '@models/Genre/update'; +import { GenreLink, MovieLink } from '@customTypes/contentful'; +import createMovie from '@models/Movie/create'; + +type GenreIdMap = { [genre: string]: string; }; -type Sys = { - id: string; - linkType: string; - type: string; +type SeedMovie = { + title: string; + posterUrl?: string; + summary?: string; + duration?: string; + directors?: string[] | null; + mainActors?: string[] | null; + genres?: string[] | null; + datePublished?: string | null; + rating?: string | null; + ratingValue?: number | null; + bestRating?: number | null; + worstRating?: number | null; + writers?: string[] | null; }; -type MovieGenres = Record; - -// load dotenv config -dotenv.config(); - -const __filename = fileURLToPath(import.meta.url); -const __dirname = dirname(__filename); - -const { CONTENTFUL_CONTENT_MANAGEMENT_API_TOKEN, CONTENTFUL_SPACE_ID, CONTENTFUL_ENVIRONMENT } = - process.env; - -const seedData = JSON.parse(fs.readFileSync(join(__dirname, 'seedData.json'), 'utf8')); - -const client = contentfulManagement.createClient({ - accessToken: `${CONTENTFUL_CONTENT_MANAGEMENT_API_TOKEN}`, -}); - -const spaceId = `${CONTENTFUL_SPACE_ID}`; -const environmentId = `${CONTENTFUL_ENVIRONMENT}`; +type MoviesInGenres = Record; -const createGenreEntries = async (environment: Environment, genres: string[]) => { +const createGenreEntries = async (genres: string[]) => { console.log('Creating genre entries...'); - const genreEntries: GenreMap = {}; + const genreEntries: GenreIdMap = {}; for (const genre of genres) { if (!genreEntries[genre]) { - const entry = await environment.createEntry('genre', { - fields: { - title: { - 'en-US': genre, - }, - }, - }); + const entry = await createGenre({ title: genre, movies: [] }); + genreEntries[genre] = entry.sys.id; } } return genreEntries; }; -const createMovieEntries = async ( - environment: Environment, - movie: Movie, - genreEntries: GenreMap -) => { +const createMovieEntries = async (movie: SeedMovie, genreEntries: GenreIdMap) => { console.log(`Creating movie entry for ${movie.title}...`); - const genreLinks = movie.genres.map((genre) => ({ - sys: { - type: 'Link', - linkType: 'Entry', - id: genreEntries[genre], - }, - })); - - const movieEntry = await environment.createEntry('movie', { - fields: { - title: { - 'en-US': movie.title, - }, - posterUrl: { - 'en-US': movie.posterURL, - }, - summary: { - 'en-US': movie.summary, - }, - duration: { - 'en-US': movie.duration, - }, - directors: { - 'en-US': movie.director, - }, - mainActors: { - 'en-US': movie.mainActors, - }, - genres: { - 'en-US': genreLinks, - }, - datePublished: { - 'en-US': movie.datePublished, - }, - rating: { - 'en-US': movie.rating, - }, - ratingValue: { - 'en-US': movie.ratingValue, - }, - bestRating: { - 'en-US': movie.bestRating, - }, - worstRating: { - 'en-US': movie.worstRating, - }, - writers: { - 'en-US': movie.writers, + const genreLinks: GenreLink[] = + movie.genres?.map((genre) => ({ + sys: { + type: 'Link', + linkType: 'Entry', + id: genreEntries[genre], }, - }, - }); + })) ?? []; // Fallback to an empty array if movie.genres is undefined; + + const movieCopy = { + ...movie, + genres: genreLinks, + }; + + const movieEntry = await createMovie(movieCopy); // Return a mapping of genre names to the created movie entry ID - return movie.genres.reduce((acc, genre) => { + return movie.genres?.reduce((acc, genre) => { if (!acc[genre]) { acc[genre] = []; } @@ -126,29 +72,14 @@ const createMovieEntries = async ( }, }); return acc; - }, {} as MovieGenres); + }, {} as MoviesInGenres); }; -const updateGenreEntries = async ( - environment: Environment, - movieGenres: MovieGenres, - genreEntries: GenreMap -) => { +const updateGenreEntries = async (movieGenres: MoviesInGenres, genreEntries: GenreIdMap) => { console.log('Updating genre entries...'); for (const [genre, movieLinks] of Object.entries(movieGenres)) { - // Fetch the current entry to get the version number - const genreEntry = await environment.getEntry(genreEntries[genre]); - - // Append the new movie links to the existing ones - const existingMovieLinks = - (genreEntry.fields.movies && genreEntry.fields.movies['en-US']) || []; - genreEntry.fields.movies = { - 'en-US': [...existingMovieLinks, ...movieLinks], - }; - - // Set the version header to the current version of the entry - await genreEntry.update(); + await updateGenre({ movies: movieLinks }, genreEntries[genre]); } }; @@ -156,20 +87,17 @@ const importDataToContentful = async () => { try { console.log('Importing data to Contentful...'); - const space = await client.getSpace(spaceId); - const environment = await space.getEnvironment(environmentId); - const allGenres = new Set(); - seedData.forEach((movie: Movie) => movie.genres.forEach((genre) => allGenres.add(genre))); - const genreEntries: GenreMap = await createGenreEntries(environment, Array.from(allGenres)); + seedData.forEach((movie: SeedMovie) => movie.genres?.forEach((genre) => allGenres.add(genre))); + const genreEntries: GenreIdMap = await createGenreEntries(Array.from(allGenres)); // After creating all movies, update genres with the new movies - const movieGenres: MovieGenres = {}; + const movieGenres: MoviesInGenres = {}; for (const movie of seedData) { - const movieEntryGenres = await createMovieEntries(environment, movie, genreEntries); + const movieEntryGenres = await createMovieEntries(movie, genreEntries); - for (const [genre, movieLinks] of Object.entries(movieEntryGenres)) { + for (const [genre, movieLinks] of Object.entries(movieEntryGenres || {})) { if (!movieGenres[genre]) { movieGenres[genre] = []; } @@ -181,7 +109,7 @@ const importDataToContentful = async () => { } // Update the genre entries with the linked movie entries - await updateGenreEntries(environment, movieGenres, genreEntries); + await updateGenreEntries(movieGenres, genreEntries); console.log('Data imported successfully!'); } catch (error) { console.log('Error importing data to Contentful'); diff --git a/src/handlers/movies/getMovies.ts b/src/handlers/movies/getMovies.ts index bedc3d6..0112a11 100644 --- a/src/handlers/movies/getMovies.ts +++ b/src/handlers/movies/getMovies.ts @@ -4,7 +4,7 @@ import getAllMovies from '@models/Movie/getAll'; import getAllGenres from '@models/Genre/getAll'; import { Movie } from '@customTypes/movie'; import { DEFAULT_CONTENTFUL_LIMIT } from '@utils/contentful'; -import { CONTENTFUL_INCLUDE, ContentfulIncludeOptions } from '../../types/contentful'; +import { CONTENTFUL_INCLUDE, ContentfulIncludeOptions } from '@customTypes/contentful'; import { notFoundResponse, serverErrorResponse } from '@utils/api/apiResponses'; type SearchFilters = { diff --git a/src/models/Genre/create.ts b/src/models/Genre/create.ts new file mode 100644 index 0000000..f0393f2 --- /dev/null +++ b/src/models/Genre/create.ts @@ -0,0 +1,22 @@ +import { getCMAEnvironment } from '@utils/contentful'; +import { Genre } from '@customTypes/genre'; + +type WithRequired = T & { [P in K]-?: T[P] }; + +export default async function create(data: WithRequired, 'movies'>) { + const environment = await getCMAEnvironment(); + + const entry = await environment.createEntry('genre', { + fields: { + title: { + 'en-US': data.title, + }, + movies: { + 'en-US': data.movies || [], + }, + }, + }); + await entry.publish(); + + return entry; +} diff --git a/src/models/Genre/update.ts b/src/models/Genre/update.ts new file mode 100644 index 0000000..d8b5c83 --- /dev/null +++ b/src/models/Genre/update.ts @@ -0,0 +1,32 @@ +import { getCMAEnvironment } from '@utils/contentful'; +import { ContentfulGenreEntryFields } from '@customTypes/contentful'; + +export default async function update(data: Partial, genre: string) { + const environment = await getCMAEnvironment(); + + // Fetch the current entry using the genre + const entry = await environment.getEntry(genre); + + // Prepare updated fields + const updatedFields = { ...entry.fields }; + + // Update the genre fields in the entry + if (data.title) { + updatedFields.title = { 'en-US': data.title }; + } + + if (data.movies) { + updatedFields.movies = { 'en-US': data.movies }; + } + + // Set the fields + entry.fields = updatedFields; + + // Save the changes + const updatedEntry = await entry.update(); + + // Publish the changes + await updatedEntry.publish(); + + return entry; +} diff --git a/src/models/Movie/create.ts b/src/models/Movie/create.ts new file mode 100644 index 0000000..d63e67f --- /dev/null +++ b/src/models/Movie/create.ts @@ -0,0 +1,53 @@ +import { getCMAEnvironment } from '@utils/contentful'; +import { ContentfulMovieEntryFields } from '@customTypes/contentful'; + +export default async function create(movie: ContentfulMovieEntryFields) { + const environment = await getCMAEnvironment(); + + const entry = await environment.createEntry('movie', { + fields: { + title: { + 'en-US': movie.title, + }, + posterUrl: { + 'en-US': movie.posterUrl, + }, + summary: { + 'en-US': movie.summary, + }, + duration: { + 'en-US': movie.duration, + }, + directors: { + 'en-US': movie.directors, + }, + mainActors: { + 'en-US': movie.mainActors, + }, + genres: { + 'en-US': movie.genres, + }, + datePublished: { + 'en-US': movie.datePublished, + }, + rating: { + 'en-US': movie.rating, + }, + ratingValue: { + 'en-US': movie.ratingValue, + }, + bestRating: { + 'en-US': movie.bestRating, + }, + worstRating: { + 'en-US': movie.worstRating, + }, + writers: { + 'en-US': movie.writers, + }, + }, + }); + await entry.publish(); + + return entry; +} diff --git a/src/types/contentful.ts b/src/types/contentful.ts index 3811486..31c585e 100644 --- a/src/types/contentful.ts +++ b/src/types/contentful.ts @@ -1,4 +1,5 @@ import { EntryCollection, EntryFieldTypes, Entry } from 'contentful'; +import { Link } from 'contentful-management'; export const CONTENTFUL_INCLUDE = { noInclude: 0, // this adds at least the linked IDs @@ -23,6 +24,7 @@ export type CustomContentfulError = Error & { }; }; +export type GenreLink = Link<'Entry'>; export type GenreEntrySkeleton = { contentTypeId: 'genre'; fields: { @@ -33,6 +35,12 @@ export type GenreEntrySkeleton = { export type GenreContentfulEntryCollection = EntryCollection; export type GenreContentfulEntry = Entry; +export type ContentfulGenreEntryFields = { + title: string; + movies: MovieLink[]; +}; + +export type MovieLink = Link<'Entry'>; export type MovieEntrySkeleton = { contentTypeId: 'movie'; fields: { @@ -53,3 +61,19 @@ export type MovieEntrySkeleton = { }; export type MovieContentfulEntryCollection = EntryCollection; export type MovieContentfulEntry = Entry; + +export type ContentfulMovieEntryFields = { + title: string; + posterUrl?: string | null; + summary?: string | null; + duration?: string | null; + directors?: string[] | null; + mainActors?: string[] | null; + genres?: GenreLink[] | null; + datePublished?: string | null; + rating?: string | null; + ratingValue?: number | null; + bestRating?: number | null; + worstRating?: number | null; + writers?: string[] | null; +};